f12a32630f
Use the generic function instead ot the target specific ones. Signed-off-by: Mathias Kresin <dev@kresin.me>
17 lines
282 B
Bash
17 lines
282 B
Bash
#!/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
|
|
dir-869-a1)
|
|
fix_seama_header
|
|
;;
|
|
esac
|