You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
338 B
20 lines
338 B
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_nand_pre_upgrade() {
|
|
mtd erase kernel
|
|
tar xf "$1" "sysupgrade-$(board_name)/kernel" -O | nandwrite -o /dev/mtd0 -
|
|
}
|
|
|
|
platform_do_upgrade() {
|
|
nand_do_upgrade "$1"
|
|
}
|
|
|