aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/rb532/base-files/lib/upgrade/platform.sh
blob: 2beccc5985e78e599b4fc4c8eae723b8f0267189 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
REQUIRE_IMAGE_METADATA=1
RAMFS_COPY_BIN='nandwrite'
CI_KERNPART=none

platform_check_image() {
	[ -e /dev/ubi0 ] || {
		ubiattach -m 1
		sleep 1
	}
	return 0;
}

platform_pre_upgrade() {
	nand_do_upgrade "$1"
}

platform_nand_pre_upgrade() {
	mtd erase kernel
	tar xf "$1" "sysupgrade-$(board_name)/kernel" -O | nandwrite -o /dev/mtd0 -
}

platform_do_upgrade() {
	default_do_upgrade "$ARGV"
}