diff options
author | John Crispin <john@openwrt.org> | 2013-05-30 16:00:50 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-05-30 16:00:50 +0000 |
commit | 090a75447ba7c4f45047c5d3628bfc70514570a4 (patch) | |
tree | 26a8aba048af039b91d4005cb91f7fe33bfca74d /target/linux/lantiq/base-files | |
parent | a9968d9cb8cb10030491fa05e24b00bd42f6d3a9 (diff) | |
download | upstream-090a75447ba7c4f45047c5d3628bfc70514570a4.tar.gz upstream-090a75447ba7c4f45047c5d3628bfc70514570a4.tar.bz2 upstream-090a75447ba7c4f45047c5d3628bfc70514570a4.zip |
lantiq: DGN3500 support
This requires all the preceding patches and finishes support for the
DGN3500, also removing an obsolete file.
Signed-off-by: Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us>
SVN-Revision: 36781
Diffstat (limited to 'target/linux/lantiq/base-files')
-rwxr-xr-x | target/linux/lantiq/base-files/etc/uci-defaults/02_network | 5 | ||||
-rw-r--r-- | target/linux/lantiq/base-files/lib/preinit/42_athfix | 19 |
2 files changed, 5 insertions, 19 deletions
diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/02_network b/target/linux/lantiq/base-files/etc/uci-defaults/02_network index 06390a73d9..a48fc684db 100755 --- a/target/linux/lantiq/base-files/etc/uci-defaults/02_network +++ b/target/linux/lantiq/base-files/etc/uci-defaults/02_network @@ -72,6 +72,11 @@ WBMR) VG3503J) ucidef_set_interface_lan 'eth0 eth1' ;; +DGN3500*) + ucidef_set_interface_lan "eth0.1" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "3 2 1 0 5t" + ;; esac [ -z "$(ls /lib/modules/`uname -r`/ltq_atm*)" ] || set_atm_wan "$vpi" "$vci" "$encaps" "$payload" diff --git a/target/linux/lantiq/base-files/lib/preinit/42_athfix b/target/linux/lantiq/base-files/lib/preinit/42_athfix deleted file mode 100644 index d182fbf340..0000000000 --- a/target/linux/lantiq/base-files/lib/preinit/42_athfix +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -. /lib/functions/lantiq.sh - -init_atheeprom() { - local board=$(lantiq_board_name) - case $board in - "Netgear DGN3500B") - echo "- loading eeprom -" - dd if=/dev/mtd2 of=/sys/firmware/ath_eeprom bs=1k skip=60 count=4 - echo 0 > /sys/bus/pci/slots/0000\:00\:0e.0/power - sleep 1 - echo 1 > /sys/bus/pci/rescan - ;; - esac -} - -boot_hook_add preinit_essential init_atheeprom - |