From f57d4c5b9f96141836681396dcc91d2b95b0dc78 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Fri, 22 Jul 2022 22:21:47 +0200 Subject: [PATCH] board/orangepi/orangepi-r1/genimage.cfg: use correct partition type The boot partition is not an EFI System Partition, it is a normal FAT formatted partition, so using type F instead of U makes more sense. Signed-off-by: Thomas Petazzoni Signed-off-by: Yann E. MORIN --- board/orangepi/orangepi-r1/genimage.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/orangepi/orangepi-r1/genimage.cfg b/board/orangepi/orangepi-r1/genimage.cfg index 61d13fe7fc..78b69269b7 100644 --- a/board/orangepi/orangepi-r1/genimage.cfg +++ b/board/orangepi/orangepi-r1/genimage.cfg @@ -28,7 +28,7 @@ image sdcard.img { } partition boot { - partition-type-uuid = U + partition-type-uuid = F bootable = "true" image = "boot.vfat" }