Remove "scsi scan" from the preboot command sequence in the default Qualcomm board environment. The SCSI scan command fails on eMMC-based boot configurations, causing unnecessary boot delays and potential error messages during the preboot phase.
This change improves boot reliability on platforms using eMMC storage as the primary boot device. Signed-off-by: Balaji Selvanathan <[email protected]> --- board/qualcomm/default.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/qualcomm/default.env b/board/qualcomm/default.env index dbf6f4e7260..7cfa8e0ce2a 100644 --- a/board/qualcomm/default.env +++ b/board/qualcomm/default.env @@ -1,7 +1,7 @@ stdin=serial,button-kbd stdout=serial,vidconsole stderr=serial,vidconsole -preboot=scsi scan; usb start +preboot=usb start fastboot=fastboot -l $fastboot_addr_r usb 0 do_boot=bootefi bootmgr bootmenu_0=Boot first available device=run do_boot -- 2.34.1

