diff options
author | Oleksandr Suvorov <oleksandr.suvorov@toradex.com> | 2023-01-16 20:05:02 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2023-01-30 20:59:09 +0100 |
commit | 73b8c05221aae5c0fac978909bf263d77673754e (patch) | |
tree | e4afc29759667612d8e20b3f7a79395dee09f6e7 | |
parent | a8f197dfd33cb01efe8bc2f3ab91e52f399bb056 (diff) |
apalis/colibri-imx8/8x: remove global variable script
The distroboot script system scans boot_scripts variable and
try to find and use to boot each script name mentioned there.
Setting global variable "script" breaks this general mechanism
of searching and running a distro boot script.
Remove global variables "script" to fix working the general
distro boot script mechanism.
Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
Reviewed-by: Fabio Estevam <festevam@denx.de>
-rw-r--r-- | include/configs/apalis-imx8.h | 1 | ||||
-rw-r--r-- | include/configs/colibri-imx8x.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/include/configs/apalis-imx8.h b/include/configs/apalis-imx8.h index a8b2b0774fe..df431261306 100644 --- a/include/configs/apalis-imx8.h +++ b/include/configs/apalis-imx8.h @@ -47,7 +47,6 @@ "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \ "mmcpart=1\0" \ "panel=NULL\0" \ - "script=boot.scr\0" \ "update_uboot=askenv confirm Did you load u-boot-dtb.imx (y/N)?; " \ "if test \"$confirm\" = \"y\"; then " \ "setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt " \ diff --git a/include/configs/colibri-imx8x.h b/include/configs/colibri-imx8x.h index 2de116c59da..3ec36aa773e 100644 --- a/include/configs/colibri-imx8x.h +++ b/include/configs/colibri-imx8x.h @@ -77,7 +77,6 @@ "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \ "mmcpart=1\0" \ "panel=NULL\0" \ - "script=boot.scr\0" \ "update_uboot=askenv confirm Did you load u-boot-dtb.imx (y/N)?; " \ "if test \"$confirm\" = \"y\"; then " \ "setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt " \ |