You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
214 B
21 lines
214 B
12 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2012 OpenWrt.org
|
||
|
#
|
||
|
|
||
|
. /lib/ramips.sh
|
||
|
|
||
|
fix_seama_header() {
|
||
|
local part=$1
|
||
|
|
||
|
mtd fixseama $part
|
||
|
}
|
||
|
|
||
|
board=$(ramips_board_name)
|
||
|
|
||
|
case "$board" in
|
||
|
dir-645)
|
||
|
fix_seama_header kernel
|
||
|
;;
|
||
|
esac
|