diff mbox series

[v2,07/16] board/orangepi/orangepi-zero-plus2/genimage: keep partition-type-uuid without "" for consistency

Message ID 20220213225350.3466696-8-giulio.benetti@benettiengineering.com
State Superseded
Headers show
Series Use single letter notation in genimage.cfg files for partition-type-uuid | expand

Commit Message

Giulio Benetti Feb. 13, 2022, 10:53 p.m. UTC
Note that rootfs doesn't need partition-type-uuid = L since L(rootfs) is
the default value. So let's remove it.

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
---
 board/orangepi/orangepi-zero-plus2/genimage.cfg | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/board/orangepi/orangepi-zero-plus2/genimage.cfg b/board/orangepi/orangepi-zero-plus2/genimage.cfg
index 5a7ee7707a..0a03384f30 100644
--- a/board/orangepi/orangepi-zero-plus2/genimage.cfg
+++ b/board/orangepi/orangepi-zero-plus2/genimage.cfg
@@ -26,7 +26,7 @@  image sdcard.img {
 	}
 
 	partition boot {
-		partition-type-uuid = "F"
+		partition-type-uuid = F
 		bootable = "true"
 		image = "boot.vfat"
 	}
@@ -34,7 +34,6 @@  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"
 		image = "rootfs.ext4"
 		size = 256M
 	}