mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 04:18:25 +02:00
0f535ad261
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28704 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
|