From 344572a350e52eec78c1a0943abb60eb7443071b Mon Sep 17 00:00:00 2001 From: Marek Szyprowski Date: Wed, 10 Apr 2024 12:00:33 +0200 Subject: [PATCH] tizen: sd_fusing.py: change bogus 'param' name to 'reserved0' The original sd_fusing_rpi4.sh had following content: [...] size=${PARAM_SZ}MiB, name=reserved0 size=${RESERVED1_SZ}MiB, name=reserved1 size=${RESERVED2_SZ}MiB, name=reserved2 It looks that while rewriting the above to python, the size and name has been mixed resulting in creating 'param' partition. Then this bogus name was copied to the Rpi4AoT and LicheePi4A variants. Restore proper 'reserved0' name for all variants. Signed-off-by: Marek Szyprowski Change-Id: I931a6a3b3bbaa0aaa7d2ae934b62133b9de89568 --- scripts/tizen/sd_fusing.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/tizen/sd_fusing.py b/scripts/tizen/sd_fusing.py index a158f75811..a7fedd9be1 100755 --- a/scripts/tizen/sd_fusing.py +++ b/scripts/tizen/sd_fusing.py @@ -332,7 +332,7 @@ class Rpi4(InitParams, SdFusingTargetAB): "binaries_b": "ramdisk-recovery.img"}, {"size": 256, "fstype": "ext4", "name": "hal_b", "binaries_b": "hal.img"}, - {"size": 4, "fstype": "ext4", "name": "param"}, + {"size": 4, "fstype": "ext4", "name": "reserved0"}, {"size": 64, "fstype": "ext4", "name": "reserved1"}, {"size": 125, "fstype": "ext4", "name": "reserved2"}, ] @@ -393,7 +393,7 @@ class Rpi4AoT(InitParams, SdFusingTargetAB): "binaries": "vendor.img"}, {"size": 256, "fstype": "ext4", "name": "aot-vendor_b", "binaries_b": "vendor.img"}, - {"size": 4, "fstype": "ext4", "name": "param"}, + {"size": 4, "fstype": "ext4", "name": "reserved0"}, {"size": 64, "fstype": "ext4", "name": "reserved1"}, {"size": 125, "fstype": "ext4", "name": "reserved2"}, ] @@ -531,7 +531,7 @@ class LicheePi4A(InitParams, SdFusingTargetAB): "binaries_b": "ramdisk-recovery.img"}, {"size": 256, "fstype": "ext4", "name": "hal_b", "binaries_b": "hal.img"}, - {"size": 4, "fstype": "raw", "name": "param"}, + {"size": 4, "fstype": "raw", "name": "reserved0"}, {"size": 64, "fstype": "raw", "name": "reserved1"}, {"size": 125, "fstype": "raw", "name": "reserved2"}, ] -- 2.34.1