mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 16:54:59 +02:00
2ab0fbc9de
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33844 3c298f89-4303-0410-b956-a3cf2f4a3e73
21 lines
214 B
Bash
Executable File
21 lines
214 B
Bash
Executable File
#!/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
|