mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-25 22:46:15 +00:00
464dfac049
Now that JFFS2 cleanmarkers are supported on the standard nand_do_upgrade function we can start using it on bmips. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
22 lines
318 B
Bash
22 lines
318 B
Bash
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
PART_NAME=firmware
|
|
REQUIRE_IMAGE_METADATA=1
|
|
|
|
platform_check_image() {
|
|
return 0
|
|
}
|
|
|
|
platform_do_upgrade() {
|
|
case "$(board_name)" in
|
|
huawei,hg253s-v2 |\
|
|
netgear,dgnd3700-v2)
|
|
CI_JFFS2_CLEAN_MARKERS=1
|
|
nand_do_upgrade "$1"
|
|
;;
|
|
*)
|
|
default_do_upgrade "$1"
|
|
;;
|
|
esac
|
|
}
|