Przeglądaj źródła

board/orangepi/orangepi-rk3399/genimage: fix partition types for gpt

Fixes the following error during image generation:
  ERROR: hdimage(sdcard.img): part boot: 'partition-type' is only valid
  for mbr and hybrid partition-table-type

Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/2103784375

Signed-off-by: Marcus Hoffmann <marcus.hoffmann@othermo.de>
Reviewed-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Marcus Hoffmann 3 lat temu
rodzic
commit
b677a7bedb
1 zmienionych plików z 1 dodań i 2 usunięć
  1. 1 2
      board/orangepi/orangepi-rk3399/genimage.cfg

+ 1 - 2
board/orangepi/orangepi-rk3399/genimage.cfg

@@ -26,14 +26,13 @@ image sdcard.img {
 	}
 	}
 
 
 	partition boot {
 	partition boot {
-		partition-type = 0xC
+		partition-type-uuid = F
 		bootable = "true"
 		bootable = "true"
 		image = "boot.vfat"
 		image = "boot.vfat"
 		offset = 16M
 		offset = 16M
 	}
 	}
 
 
 	partition rootfs {
 	partition rootfs {
-		partition-type = 0x83
 		image = "rootfs.ext4"
 		image = "rootfs.ext4"
 	}
 	}
 }
 }