mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-08 03:50:48 +00:00
21 lines
217 B
Bash
Executable File
21 lines
217 B
Bash
Executable File
#!/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)
|
|
fix_seama_header kernel
|
|
;;
|
|
esac
|