mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-27 01:11:14 +00:00
19 lines
243 B
Bash
19 lines
243 B
Bash
|
#
|
||
|
# Copyright (C) 2014 OpenWrt.org
|
||
|
#
|
||
|
|
||
|
REQUIRE_IMAGE_METADATA=1
|
||
|
|
||
|
platform_check_image() {
|
||
|
local board=$(board_name)
|
||
|
|
||
|
[ "$ARGC" -gt 1 ] && return 1
|
||
|
|
||
|
nand_do_platform_check $board $1
|
||
|
return $?
|
||
|
}
|
||
|
|
||
|
platform_do_upgrade() {
|
||
|
nand_do_upgrade $1
|
||
|
}
|