Initial commit
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
This commit is contained in:
24
target/linux/ramips/rt3883/base-files/etc/board.d/01_leds
Normal file
24
target/linux/ramips/rt3883/base-files/etc/board.d/01_leds
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
. /lib/functions/leds.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
board=$(board_name)
|
||||
|
||||
board_config_update
|
||||
|
||||
case $board in
|
||||
belkin,f9k1109v1)
|
||||
ucidef_set_led_netdev "lan" "lan" "blue:wps" "eth0"
|
||||
;;
|
||||
edimax,br-6475nd)
|
||||
ucidef_set_led_netdev "wifi_led" "wifi" "amber:wlan" "wlan0"
|
||||
;;
|
||||
omnima,hpm)
|
||||
ucidef_set_led_netdev "eth" "ETH" "green:eth" "eth0"
|
||||
ucidef_set_led_netdev "wifi_led" "wifi" "green:wifi" "wlan0"
|
||||
;;
|
||||
esac
|
||||
|
||||
board_config_flush
|
||||
|
||||
exit 0
|
||||
101
target/linux/ramips/rt3883/base-files/etc/board.d/02_network
Normal file
101
target/linux/ramips/rt3883/base-files/etc/board.d/02_network
Normal file
@@ -0,0 +1,101 @@
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
. /lib/functions/system.sh
|
||||
|
||||
ramips_setup_interfaces()
|
||||
{
|
||||
local board="$1"
|
||||
|
||||
case $board in
|
||||
asus,rt-n56u)
|
||||
ucidef_add_switch "switch0" \
|
||||
"0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "8@eth0"
|
||||
;;
|
||||
belkin,f9k1109v1)
|
||||
ucidef_add_switch "switch0" \
|
||||
"0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "5@eth0"
|
||||
;;
|
||||
dlink,dir-645)
|
||||
ucidef_add_switch "switch0" \
|
||||
"1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "6@eth0"
|
||||
;;
|
||||
edimax,br-6475nd)
|
||||
ucidef_add_switch "switch0" \
|
||||
"1:lan" "2:lan" "3:lan" "4:lan" "0:wan" "9@eth0"
|
||||
;;
|
||||
engenius,esr600h|\
|
||||
sitecom,wlr-6000|\
|
||||
trendnet,tew-691gr|\
|
||||
trendnet,tew-692gr)
|
||||
ucidef_add_switch "switch0" \
|
||||
"1:lan" "2:lan" "3:lan" "4:lan" "5:wan" "0@eth0"
|
||||
;;
|
||||
loewe,wmdr-143n|\
|
||||
omnima,hpm)
|
||||
ucidef_set_interface_lan "eth0"
|
||||
;;
|
||||
samsung,cy-swr1100)
|
||||
ucidef_add_switch "switch0" \
|
||||
"0:lan" "1:lan" "2:lan" "3:lan" "4:wan" "9@eth0"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
ramips_setup_macs()
|
||||
{
|
||||
local board="$1"
|
||||
local lan_mac=""
|
||||
local wan_mac=""
|
||||
local label_mac=""
|
||||
|
||||
case $board in
|
||||
asus,rt-n56u)
|
||||
lan_mac=$(macaddr_setbit_la "$(cat /sys/class/net/eth0/address)")
|
||||
wan_mac=$(mtd_get_mac_binary factory 0x8004)
|
||||
;;
|
||||
belkin,f9k1109v1)
|
||||
wan_mac=$(mtd_get_mac_ascii uboot-env HW_WAN_MAC)
|
||||
lan_mac=$(mtd_get_mac_ascii uboot-env HW_LAN_MAC)
|
||||
label_mac=$wan_mac
|
||||
;;
|
||||
dlink,dir-645)
|
||||
lan_mac=$(mtd_get_mac_ascii nvram lanmac)
|
||||
wan_mac=$(mtd_get_mac_ascii nvram wanmac)
|
||||
;;
|
||||
edimax,br-6475nd)
|
||||
wan_mac=$(mtd_get_mac_binary devdata 0x7)
|
||||
;;
|
||||
engenius,esr600h)
|
||||
wan_mac=$(mtd_get_mac_ascii u-boot-env wanaddr)
|
||||
lan_mac=$(macaddr_add "$wan_mac" 1)
|
||||
label_mac=$wan_mac
|
||||
;;
|
||||
samsung,cy-swr1100)
|
||||
lan_mac=$(mtd_get_mac_ascii nvram lanmac)
|
||||
wan_mac=$(mtd_get_mac_ascii nvram wanmac)
|
||||
label_mac=$wan_mac
|
||||
;;
|
||||
sitecom,wlr-6000)
|
||||
wan_mac=$(macaddr_add "$(mtd_get_mac_binary factory 0x8004)" 2)
|
||||
;;
|
||||
trendnet,tew-691gr)
|
||||
wan_mac=$(macaddr_add "$(mtd_get_mac_binary factory 0x4)" 3)
|
||||
;;
|
||||
trendnet,tew-692gr)
|
||||
wan_mac=$(macaddr_add "$(mtd_get_mac_binary factory 0x4)" 1)
|
||||
;;
|
||||
esac
|
||||
|
||||
[ -n "$lan_mac" ] && ucidef_set_interface_macaddr "lan" $lan_mac
|
||||
[ -n "$wan_mac" ] && ucidef_set_interface_macaddr "wan" $wan_mac
|
||||
[ -n "$label_mac" ] && ucidef_set_label_macaddr $label_mac
|
||||
}
|
||||
|
||||
board_config_update
|
||||
board=$(board_name)
|
||||
ramips_setup_interfaces $board
|
||||
ramips_setup_macs $board
|
||||
board_config_flush
|
||||
|
||||
exit 0
|
||||
@@ -0,0 +1,30 @@
|
||||
# Netgear WNCE2001 has does a checksum check on boot and goes into recovery
|
||||
# tftp mode when the check fails. Initializing the JFFS2 partition triggers
|
||||
# this, so we make sure to zero checksum and size to be checksummed before
|
||||
# that happens, so this needs to run very early during boot.
|
||||
|
||||
do_checksumming_disable() {
|
||||
. /lib/functions.sh
|
||||
|
||||
local board=$(board_name)
|
||||
|
||||
case "$board" in
|
||||
asus,rt-n56u)
|
||||
echo "Board is ASUS RT-N56U, replacing uImage header..."
|
||||
local firmware_mtd=$(find_mtd_part firmware)
|
||||
local rootfs_mtd=$(find_mtd_part rootfs)
|
||||
local rootfs_data_mtd=$(find_mtd_part rootfs_data)
|
||||
local rootfs_len=$(grep \"rootfs\" /proc/mtd | awk -F' ' '{print "0x"$2}')
|
||||
local rootfs_data_len=$(grep \"rootfs_data\" /proc/mtd | awk -F' ' '{print "0x"$2}')
|
||||
local offset=$(echo "$rootfs_len $rootfs_data_len 0x40" | awk -F' ' '{printf "%i",$1-$2-$3}')
|
||||
local signature=$(dd if=$rootfs_mtd skip=$offset bs=1 count=4 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"')
|
||||
if [ "$signature" = "27051956" ]; then
|
||||
dd conv=notrunc if=$rootfs_mtd skip=$offset of=$firmware_mtd bs=1 count=64 2>/dev/null
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
boot_hook_add preinit_main do_checksumming_disable
|
||||
20
target/linux/ramips/rt3883/base-files/lib/upgrade/platform.sh
Executable file
20
target/linux/ramips/rt3883/base-files/lib/upgrade/platform.sh
Executable file
@@ -0,0 +1,20 @@
|
||||
#
|
||||
# Copyright (C) 2010 OpenWrt.org
|
||||
#
|
||||
|
||||
PART_NAME=firmware
|
||||
REQUIRE_IMAGE_METADATA=1
|
||||
|
||||
platform_check_image() {
|
||||
return 0
|
||||
}
|
||||
|
||||
platform_do_upgrade() {
|
||||
local board=$(board_name)
|
||||
|
||||
case "$board" in
|
||||
*)
|
||||
default_do_upgrade "$1"
|
||||
;;
|
||||
esac
|
||||
}
|
||||
Reference in New Issue
Block a user