diff options
author | John Crispin <blogic@openwrt.org> | 2013-05-30 16:00:50 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2013-05-30 16:00:50 +0000 |
commit | 2e43b9adfe516d0690d10be4e46818b497d3e1c2 (patch) | |
tree | 1b463315b12092de7795a3ef654b0036054e979e /target/linux/lantiq/base-files/lib/preinit | |
parent | 355ed7111e1cbd6ef0783b84f02477739bc43048 (diff) | |
download | master-187ad058-2e43b9adfe516d0690d10be4e46818b497d3e1c2.tar.gz master-187ad058-2e43b9adfe516d0690d10be4e46818b497d3e1c2.tar.bz2 master-187ad058-2e43b9adfe516d0690d10be4e46818b497d3e1c2.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>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36781 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/lantiq/base-files/lib/preinit')
-rw-r--r-- | target/linux/lantiq/base-files/lib/preinit/42_athfix | 19 |
1 files changed, 0 insertions, 19 deletions
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 - |