diff options
author | Tim Harvey <tharvey@gateworks.com> | 2025-05-23 10:20:06 -0700 |
---|---|---|
committer | Fabio Estevam <festevam@gmail.com> | 2025-05-30 19:10:55 -0300 |
commit | ea26f2ac4c4a88f6b634e26886207fc07618ebe9 (patch) | |
tree | c3ec547004301cd56afaddde14dd778eb44bced3 | |
parent | 5eb1b7843811e3e87b0e677212a9145f07552a60 (diff) |
configs: imx8m*_venice: enable several commands useful for scripting
enable cat, xxd, and the ability for setexpr to return values in
variables which are all useful for scripting.
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
-rw-r--r-- | configs/imx8mm_venice_defconfig | 3 | ||||
-rw-r--r-- | configs/imx8mn_venice_defconfig | 3 | ||||
-rw-r--r-- | configs/imx8mp_venice_defconfig | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/configs/imx8mm_venice_defconfig b/configs/imx8mm_venice_defconfig index 051cd7efa81..25fc1aa0ce6 100644 --- a/configs/imx8mm_venice_defconfig +++ b/configs/imx8mm_venice_defconfig @@ -66,6 +66,9 @@ CONFIG_CMD_MMC=y CONFIG_CMD_PCI=y CONFIG_CMD_USB=y CONFIG_CMD_USB_MASS_STORAGE=y +CONFIG_CMD_CAT=y +CONFIG_CMD_SETEXPR_FMT=y +CONFIG_CMD_XXD=y CONFIG_CMD_DHCP6=y CONFIG_CMD_TFTPPUT=y CONFIG_SYS_DISABLE_AUTOLOAD=y diff --git a/configs/imx8mn_venice_defconfig b/configs/imx8mn_venice_defconfig index fd8701e11a4..7a22535e5c9 100644 --- a/configs/imx8mn_venice_defconfig +++ b/configs/imx8mn_venice_defconfig @@ -66,6 +66,9 @@ CONFIG_CMD_I2C=y CONFIG_CMD_MMC=y CONFIG_CMD_USB=y CONFIG_CMD_USB_MASS_STORAGE=y +CONFIG_CMD_CAT=y +CONFIG_CMD_SETEXPR_FMT=y +CONFIG_CMD_XXD=y CONFIG_CMD_DHCP6=y CONFIG_CMD_TFTPPUT=y CONFIG_SYS_DISABLE_AUTOLOAD=y diff --git a/configs/imx8mp_venice_defconfig b/configs/imx8mp_venice_defconfig index b91e69a25e2..8aa9232cc8d 100644 --- a/configs/imx8mp_venice_defconfig +++ b/configs/imx8mp_venice_defconfig @@ -68,6 +68,9 @@ CONFIG_CMD_I2C=y CONFIG_CMD_MMC=y CONFIG_CMD_PCI=y CONFIG_CMD_USB=y +CONFIG_CMD_CAT=y +CONFIG_CMD_SETEXPR_FMT=y +CONFIG_CMD_XXD=y CONFIG_CMD_DHCP6=y CONFIG_CMD_TFTPPUT=y CONFIG_SYS_DISABLE_AUTOLOAD=y |