aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/bmips/bcm6328/base-files/lib/upgrade/platform.sh
blob: d820b20718801d811a92075a73eb64d30ef1dc1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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
	sercomm,ad1018)
		nand_do_upgrade "$1"
		;;
	*)
		default_do_upgrade "$1"
		;;
	esac
}