diff options
author | Marek Szyprowski <m.szyprowski@samsung.com> | 2024-08-13 15:18:59 +0200 |
---|---|---|
committer | Marek Szyprowski <m.szyprowski@samsung.com> | 2024-08-13 16:02:45 +0200 |
commit | 97eab3ee710a2e659a4ad3d032311e9e87ce0e44 (patch) | |
tree | 408f620784f0be76fc0e55138a5cc27014e8b1e2 | |
parent | 1da4d42bbca338ff9634f5a7f3f6c72dc6a8acda (diff) | |
download | u-boot-97eab3ee710a2e659a4ad3d032311e9e87ce0e44.tar.gz u-boot-97eab3ee710a2e659a4ad3d032311e9e87ce0e44.tar.bz2 u-boot-97eab3ee710a2e659a4ad3d032311e9e87ce0e44.zip |
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 <m.szyprowski@samsung.com>
Change-Id: I9cea997bcc76c628497e7d6ba4725a894cee5811
-rwxr-xr-x | scripts/tizen/sd_fusing.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/tizen/sd_fusing.py b/scripts/tizen/sd_fusing.py index f4d77d11b7..f83f621a61 100755 --- a/scripts/tizen/sd_fusing.py +++ b/scripts/tizen/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", |