summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/images/vfat_partitions.config1
-rw-r--r--rules/image-hdimg.make1
2 files changed, 2 insertions, 0 deletions
diff --git a/config/images/vfat_partitions.config b/config/images/vfat_partitions.config
index 799c19d57..0aac561de 100644
--- a/config/images/vfat_partitions.config
+++ b/config/images/vfat_partitions.config
@@ -1,5 +1,6 @@
partition boot-vfat {
image = "boot.vfat"
partition-type = @VFAT_PARTITION_TYPE@
+ partition-type-uuid = @VFAT_PARTITION_TYPE_UUID@
bootable = true
}
diff --git a/rules/image-hdimg.make b/rules/image-hdimg.make
index e8fd01f1a..b0f6af77f 100644
--- a/rules/image-hdimg.make
+++ b/rules/image-hdimg.make
@@ -42,6 +42,7 @@ endif
ifdef PTXCONF_IMAGE_HDIMG_VFAT
IMAGE_HDIMG_BOOTLOADER_ENV := \
VFAT_PARTITION_TYPE=$(call ptx/ifdef, PTXCONF_IMAGE_BOOT_VFAT_EFI_BAREBOX,0xef,0x0c) \
+ VFAT_PARTITION_TYPE_UUID=$(call ptx/ifdef, PTXCONF_IMAGE_BOOT_VFAT_EFI_BAREBOX,U,L) \
BOOTLOADER_IMAGES='' \
BOOTLOADER_PARTITIONS='include("vfat_partitions.config")'
endif