From e6951c83091e2f8104a695b08d0385fd32a80c9d Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Fri, 22 Jul 2022 22:21:46 +0200 Subject: [PATCH] board/orangepi/orangepi-r1/genimage.cfg: remove double quotes around partition-type-uuid values This allows to comply with the recently specified genimage.cfg writing rules. Signed-off-by: Thomas Petazzoni Signed-off-by: Yann E. MORIN --- board/orangepi/orangepi-r1/genimage.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/orangepi/orangepi-r1/genimage.cfg b/board/orangepi/orangepi-r1/genimage.cfg index e93e802bd9..61d13fe7fc 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 = U bootable = "true" image = "boot.vfat" } @@ -36,7 +36,7 @@ image sdcard.img { # 'rootfs' will be used as the partition label, used # with root=PARTLABEL=rootfs kernel command line partition rootfs { - partition-type-uuid = "L" + partition-type-uuid = L image = "rootfs.ext4" size = 512M }