From: SangYoun Kwak Date: Tue, 9 Jul 2024 07:37:01 +0000 (+0900) Subject: scripts: Add new param file upgrade-type.info X-Git-Tag: accepted/tizen/unified/20240806.010530~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9590e99394ef474418c30b0c1a36e146045dccfc;p=platform%2Fkernel%2Fu-boot.git scripts: Add new param file upgrade-type.info File for the new parameter 'upgrade-type' is added. The boot partition is selected by this parameter. Available values(and boot partition for this value): * "offline" (ramdisk-recovery) * "online" (ramdisk) The default value is "offline". Change-Id: I929a5236c7f506708dda9a454af53648eef7e393 Signed-off-by: SangYoun Kwak --- diff --git a/scripts/tizen/sd_fusing.py b/scripts/tizen/sd_fusing.py index 72184b9f0b..c86bf4067f 100755 --- a/scripts/tizen/sd_fusing.py +++ b/scripts/tizen/sd_fusing.py @@ -15,7 +15,7 @@ import sys import tarfile import tempfile -__version__ = "1.1.5" +__version__ = "1.1.6" Format = False Device = "" @@ -116,7 +116,8 @@ class SdFusingTarget: params = (('reboot-param.bin', 'norm'), ('reboot-param.info', 'norm'), ('upgrade-progress-status.info', '0'), - ('upgrade-state.info', 'standby')) + ('upgrade-state.info', 'standby'), + ('upgrade-type.info', 'offline')) def __init__(self, device, ltype): # TODO: make a copy of a sublcass part_table