From: Marek Szyprowski Date: Tue, 13 Aug 2024 13:18:59 +0000 (+0200) Subject: scripts: sd_fusing: bpif3: change partition type for bootloader partitions X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a0f91620eed44c7376027fd8903d56108d3ea364;p=platform%2Fkernel%2Ftizen-fusing-scripts.git scripts: sd_fusing: bpif3: change partition type for bootloader partitions Use the semi-standard types of 'HiFive Unleashed FSBL/BBL' for bootloader related partitions instead of the 'EFI System'. This helps other systems to avoid trying to mount those partitions as FAT volumes. Signed-off-by: Marek Szyprowski Change-Id: I9cea997bcc76c628497e7d6ba4725a894cee5811 --- diff --git a/sd_fusing.py b/sd_fusing.py index f4d77d1..f83f621 100755 --- a/sd_fusing.py +++ b/sd_fusing.py @@ -710,15 +710,15 @@ class BpiF3(InitParams, SdFusingTargetAB): part_table = [ {"size": None, "name": "fsbl", "start_sector": 256, "size_sectors": 512, - "ptype": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "ptype": "5B193300-FC78-40CD-8002-E86C45580B47", "binaries": ["FSBL.bin"],}, {"size": None, "name": "opensbi", "start_sector": 2048, "size_sectors": 2048, - "ptype": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "ptype": "2E54B353-1271-4842-806F-E436D6AF6985", "binaries": ["fw_dynamic.itb"],}, {"size": None, "name": "uboot", "start_sector": 4096, "size_sectors": 4096, - "ptype": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "ptype": "2E54B353-1271-4842-806F-E436D6AF6985", "binaries": ["u-boot.itb"],}, {"size": 256, "name": "boot_a", "ptype": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B",