mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 14:21:33 +02:00
2e7490c8ca
Reported-by: Nuno Gonçalves <nunojpg@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24897 3c298f89-4303-0410-b956-a3cf2f4a3e73
17 lines
202 B
Bash
Executable File
17 lines
202 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
#
|
|
|
|
. /lib/ar71xx.sh
|
|
|
|
board=$(ar71xx_board_name)
|
|
|
|
wrt160nl_fixtrx() {
|
|
mtd -o 32 fixtrx firmware
|
|
}
|
|
|
|
if [ "${board}" == "wrt160nl" ]; then
|
|
wrt160nl_fixtrx
|
|
fi
|