You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
232 B
Plaintext
22 lines
232 B
Plaintext
4 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2013 OpenWrt.org
|
||
|
#
|
||
|
|
||
|
. /lib/ar71xx.sh
|
||
|
|
||
|
fix_seama_header() {
|
||
|
local part=$1
|
||
|
|
||
|
mtd fixseama $part
|
||
|
}
|
||
|
|
||
|
board=$(ar71xx_board_name)
|
||
|
|
||
|
case "$board" in
|
||
|
mynet-n600 | \
|
||
|
mynet-n750)
|
||
|
fix_seama_header kernel
|
||
|
;;
|
||
|
esac
|