mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-12 09:54:53 +00:00
f97ce066a8
Drop unused variable and fix identation. Signed-off-by: David Bauer <mail@david-bauer.net>
15 lines
352 B
Plaintext
15 lines
352 B
Plaintext
apply_bootconfig() {
|
|
. /lib/functions.sh
|
|
|
|
case $(board_name) in
|
|
zyxel,nwa50ax|\
|
|
zyxel,nwa55axe)
|
|
mtd_idx=$(find_mtd_index "bootconfig")
|
|
zyxel-bootconfig "/dev/mtd$mtd_idx" set-image-status 0 valid
|
|
zyxel-bootconfig "/dev/mtd$mtd_idx" set-active-image 0
|
|
;;
|
|
esac
|
|
}
|
|
|
|
[ "$INITRAMFS" = "1" ] || boot_hook_add preinit_main apply_bootconfig
|