From c03a8988b8824278605afe385516653307bfd4c0 Mon Sep 17 00:00:00 2001 From: Marius Kriegerowski Date: Mon, 17 May 2021 13:10:45 +0200 Subject: [PATCH] default to 'boot' as boot partition label Defaulting to the $MACHINE may lead to failure if the name was longer than the limit of allowed volume label of fat (11 chars). Signed-off-by: Marius Kriegerowski --- classes/sdcard_image-sunxi.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/sdcard_image-sunxi.bbclass b/classes/sdcard_image-sunxi.bbclass index a0f63a8..4675716 100644 --- a/classes/sdcard_image-sunxi.bbclass +++ b/classes/sdcard_image-sunxi.bbclass @@ -17,7 +17,7 @@ inherit image_types IMAGE_TYPEDEP_sunxi-sdimg = "${SDIMG_ROOTFS_TYPE}" # Boot partition volume id -BOOTDD_VOLUME_ID ?= "${MACHINE}" +BOOTDD_VOLUME_ID ?= "boot" # Boot partition size [in KiB] BOOT_SPACE ?= "40960"