mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-11 15:33:03 +00:00
12 lines
179 B
Plaintext
12 lines
179 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
START=99
|
||
|
|
||
|
boot() {
|
||
|
case $(board_name) in
|
||
|
qihoo,c301)
|
||
|
local n=$(fw_printenv activeregion | cut -d = -f 2)
|
||
|
fw_setenv "image${n}trynum" 0
|
||
|
;;
|
||
|
esac
|
||
|
}
|