tizen: bootscript: remove usb boot related workaround 68/308368/1 accepted/tizen/unified/20240327.064201 accepted/tizen/unified/x/20240401.142404
authorMarek Szyprowski <m.szyprowski@samsung.com>
Fri, 22 Mar 2024 08:53:51 +0000 (09:53 +0100)
committerMarek Szyprowski <m.szyprowski@samsung.com>
Fri, 22 Mar 2024 08:54:40 +0000 (09:54 +0100)
Once rootfs block device retry loop has been added to init script, this
workaround is no longer needed.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Change-Id: I81ae139d07595e40316dbd4ebbee6ed58c7725ee

tizen/bootscript/tizen-boot-rpi3.scr
tizen/bootscript/tizen-boot-rpi4.scr
tizen/bootscript/tizen-boot-vf2.scr

index 2ad4ae0..0cbe8a8 100644 (file)
@@ -5,7 +5,6 @@ if test "${target}" = "mmc0"; then;
 fi
 if test "${target}" = "usb0"; then;
        setenv bootdev usb
-       setenv opts "${opts} rootdelay=2"
 fi
 
 if test -e $bootdev $mmcbootdev:$mmcinformpart $rebootparamfile; then;
index 6d0f6a4..fd4b62f 100644 (file)
@@ -8,7 +8,6 @@ if test "${target}" = "mmc0"; then;
 fi
 if test "${target}" = "usb0"; then;
        setenv bootdev usb
-       setenv opts "${opts} rootdelay=2"
 fi
 
 # find 'inform' partition or use ${mmcinformpart} fallback
index 6cbe0f7..7afbe23 100644 (file)
@@ -15,9 +15,6 @@ if test -z "${devtype}"; then
                setenv devtype nvme
        fi
 fi
-if test "${devtype}" = "usb"; then;
-       setenv opts "${opts} rootdelay=2"
-fi
 
 if test -e $devtype $devnum:$informpart $slotfile; then;
        ext4load $devtype $devnum:$informpart $slot_addr $slotfile;