1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-29 18:30:24 +03:00
openwrt-xburst/target/linux/lantiq/base-files/lib/preinit/42_athfix
blogic 5d8e0585ac [lantiq] cleanup basefiles
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34698 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-12-15 02:01:00 +00:00

20 lines
379 B
Bash

#!/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