mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 15:32:33 +00:00
16 lines
280 B
Plaintext
16 lines
280 B
Plaintext
|
#!/bin/sh
|
||
|
. /lib/functions.sh
|
||
|
|
||
|
fix_seama_header() {
|
||
|
local kernel_size=$(sed -n 's/mtd[0-9]*: \([0-9a-f]*\).*"kernel".*/\1/p' /proc/mtd)
|
||
|
[ "$kernel_size" ] && mtd -c 0x$kernel_size fixseama firmware
|
||
|
}
|
||
|
|
||
|
board=$(board_name)
|
||
|
|
||
|
case "$board" in
|
||
|
qihoo,c301)
|
||
|
fix_seama_header
|
||
|
;;
|
||
|
esac
|