From: Marek Szyprowski Date: Tue, 13 Aug 2024 13:13:59 +0000 (+0200) Subject: scripts: sd_fusing: bpif3: remove unused 'env' partition X-Git-Tag: accepted/tizen/unified/20241126.175211~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2cfa0ec0b7f4b90bee39659d1ac6e360c7cb4c55;p=platform%2Fkernel%2Fu-boot.git scripts: sd_fusing: bpif3: remove unused 'env' partition Tizen u-boot for BPif3 has been patched to store its environment on the first 'boot' partition (FAT filesystem) in uboot.env file, like on other Tizen boards. The 'env' partition is unused then, so remove it. Signed-off-by: Marek Szyprowski Change-Id: Ie6b648f817e55f795e77358b8ce23846953cefa3 --- diff --git a/scripts/tizen/sd_fusing.py b/scripts/tizen/sd_fusing.py index 72a090e1fd..1fb061c4e9 100755 --- a/scripts/tizen/sd_fusing.py +++ b/scripts/tizen/sd_fusing.py @@ -712,10 +712,6 @@ class BpiF3(InitParams, SdFusingTargetAB): "start_sector": 256, "size_sectors": 512, "ptype": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", "binaries": ["FSBL.bin"],}, - {"size": None, "name": "env", - "start_sector": 768, "size_sectors": 128, - "ptype": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", - "binaries": ["u-boot-env-default.bin"],}, {"size": None, "name": "opensbi", "start_sector": 2048, "size_sectors": 2048, "ptype": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", @@ -766,7 +762,7 @@ class BpiF3(InitParams, SdFusingTargetAB): ] def __init__(self, device, args): - self.user_partition = 7 + self.user_partition = 6 self.reserved_space = 5 self.update = args.update self.apply_partition_sizes(args.partition_sizes)