ddcce63c78
Patchwork: http://patchwork.openwrt.org/patch/4281/ Signed-off-by: Christian Lamparter <chunkeey@googlemail.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 38687
20 lines
193 B
Bash
20 lines
193 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
#
|
|
|
|
. /lib/ar71xx.sh
|
|
|
|
board=$(ar71xx_board_name)
|
|
|
|
fixtrx() {
|
|
mtd -o 32 fixtrx firmware
|
|
}
|
|
|
|
case "$board" in
|
|
mynet-rext |\
|
|
wrt160nl)
|
|
fixtrx
|
|
;;
|
|
esac
|