u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
* [PATCH] xilinx: Enable CMD_GREPENV/SETEXPR by default
@ 2022-08-24 11:28 Michal Simek
  2022-08-31  8:10 ` Michal Simek
  0 siblings, 1 reply; 2+ messages in thread
From: Michal Simek @ 2022-08-24 11:28 UTC (permalink / raw)
  To: u-boot, git

Enable both of these commands in Xilinx SoCs to be able to use them in boot
scripts.

Signed-off-by: Michal Simek <michal.simek@amd.com>
---

 configs/microblaze-generic_defconfig | 2 +-
 configs/xilinx_versal_virt_defconfig | 1 +
 configs/xilinx_zynq_virt_defconfig   | 2 +-
 configs/xilinx_zynqmp_virt_defconfig | 1 +
 4 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/configs/microblaze-generic_defconfig b/configs/microblaze-generic_defconfig
index b5c5efe59665..01c93d5c4ee9 100644
--- a/configs/microblaze-generic_defconfig
+++ b/configs/microblaze-generic_defconfig
@@ -43,9 +43,9 @@ CONFIG_SYS_BOOTM_LEN=0x4000000
 CONFIG_CMD_IMLS=y
 CONFIG_CMD_SPL=y
 CONFIG_CMD_ASKENV=y
+CONFIG_CMD_GREPENV=y
 CONFIG_CMD_GPIO=y
 CONFIG_CMD_SAVES=y
-# CONFIG_CMD_SETEXPR is not set
 CONFIG_BOOTP_BOOTFILESIZE=y
 CONFIG_CMD_TFTPPUT=y
 CONFIG_CMD_CACHE=y
diff --git a/configs/xilinx_versal_virt_defconfig b/configs/xilinx_versal_virt_defconfig
index 7b96c4fbd999..c3fa913b20dc 100644
--- a/configs/xilinx_versal_virt_defconfig
+++ b/configs/xilinx_versal_virt_defconfig
@@ -26,6 +26,7 @@ CONFIG_SYS_MAXARGS=64
 CONFIG_SYS_PBSIZE=2073
 CONFIG_SYS_BOOTM_LEN=0x6400000
 CONFIG_CMD_BOOTMENU=y
+CONFIG_CMD_GREPENV=y
 CONFIG_CMD_NVEDIT_EFI=y
 CONFIG_CMD_MEMTEST=y
 CONFIG_SYS_ALT_MEMTEST=y
diff --git a/configs/xilinx_zynq_virt_defconfig b/configs/xilinx_zynq_virt_defconfig
index b8e16cab6e8b..c12a1cbbc8a3 100644
--- a/configs/xilinx_zynq_virt_defconfig
+++ b/configs/xilinx_zynq_virt_defconfig
@@ -51,6 +51,7 @@ CONFIG_SYS_PBSIZE=2071
 CONFIG_SYS_BOOTM_LEN=0x3c00000
 CONFIG_CMD_IMLS=y
 CONFIG_CMD_THOR_DOWNLOAD=y
+CONFIG_CMD_GREPENV=y
 CONFIG_CMD_MEMTEST=y
 CONFIG_SYS_ALT_MEMTEST=y
 CONFIG_CMD_DFU=y
@@ -65,7 +66,6 @@ CONFIG_CMD_MTD=y
 CONFIG_CMD_NAND_LOCK_UNLOCK=y
 CONFIG_CMD_SF_TEST=y
 CONFIG_CMD_USB=y
-# CONFIG_CMD_SETEXPR is not set
 CONFIG_BOOTP_MAY_FAIL=y
 CONFIG_CMD_TFTPPUT=y
 CONFIG_CMD_CACHE=y
diff --git a/configs/xilinx_zynqmp_virt_defconfig b/configs/xilinx_zynqmp_virt_defconfig
index e242884d3f6f..1591f221b5a5 100644
--- a/configs/xilinx_zynqmp_virt_defconfig
+++ b/configs/xilinx_zynqmp_virt_defconfig
@@ -57,6 +57,7 @@ CONFIG_SYS_PBSIZE=2073
 CONFIG_SYS_BOOTM_LEN=0x6400000
 CONFIG_CMD_BOOTMENU=y
 CONFIG_CMD_THOR_DOWNLOAD=y
+CONFIG_CMD_GREPENV=y
 CONFIG_CMD_NVEDIT_EFI=y
 CONFIG_CMD_MEMTEST=y
 CONFIG_SYS_ALT_MEMTEST=y
-- 
2.36.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] xilinx: Enable CMD_GREPENV/SETEXPR by default
  2022-08-24 11:28 [PATCH] xilinx: Enable CMD_GREPENV/SETEXPR by default Michal Simek
@ 2022-08-31  8:10 ` Michal Simek
  0 siblings, 0 replies; 2+ messages in thread
From: Michal Simek @ 2022-08-31  8:10 UTC (permalink / raw)
  To: u-boot, git



On 8/24/22 13:28, Michal Simek wrote:
> Enable both of these commands in Xilinx SoCs to be able to use them in boot
> scripts.
> 
> Signed-off-by: Michal Simek <michal.simek@amd.com>
> ---
> 
>   configs/microblaze-generic_defconfig | 2 +-
>   configs/xilinx_versal_virt_defconfig | 1 +
>   configs/xilinx_zynq_virt_defconfig   | 2 +-
>   configs/xilinx_zynqmp_virt_defconfig | 1 +
>   4 files changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/configs/microblaze-generic_defconfig b/configs/microblaze-generic_defconfig
> index b5c5efe59665..01c93d5c4ee9 100644
> --- a/configs/microblaze-generic_defconfig
> +++ b/configs/microblaze-generic_defconfig
> @@ -43,9 +43,9 @@ CONFIG_SYS_BOOTM_LEN=0x4000000
>   CONFIG_CMD_IMLS=y
>   CONFIG_CMD_SPL=y
>   CONFIG_CMD_ASKENV=y
> +CONFIG_CMD_GREPENV=y
>   CONFIG_CMD_GPIO=y
>   CONFIG_CMD_SAVES=y
> -# CONFIG_CMD_SETEXPR is not set
>   CONFIG_BOOTP_BOOTFILESIZE=y
>   CONFIG_CMD_TFTPPUT=y
>   CONFIG_CMD_CACHE=y
> diff --git a/configs/xilinx_versal_virt_defconfig b/configs/xilinx_versal_virt_defconfig
> index 7b96c4fbd999..c3fa913b20dc 100644
> --- a/configs/xilinx_versal_virt_defconfig
> +++ b/configs/xilinx_versal_virt_defconfig
> @@ -26,6 +26,7 @@ CONFIG_SYS_MAXARGS=64
>   CONFIG_SYS_PBSIZE=2073
>   CONFIG_SYS_BOOTM_LEN=0x6400000
>   CONFIG_CMD_BOOTMENU=y
> +CONFIG_CMD_GREPENV=y
>   CONFIG_CMD_NVEDIT_EFI=y
>   CONFIG_CMD_MEMTEST=y
>   CONFIG_SYS_ALT_MEMTEST=y
> diff --git a/configs/xilinx_zynq_virt_defconfig b/configs/xilinx_zynq_virt_defconfig
> index b8e16cab6e8b..c12a1cbbc8a3 100644
> --- a/configs/xilinx_zynq_virt_defconfig
> +++ b/configs/xilinx_zynq_virt_defconfig
> @@ -51,6 +51,7 @@ CONFIG_SYS_PBSIZE=2071
>   CONFIG_SYS_BOOTM_LEN=0x3c00000
>   CONFIG_CMD_IMLS=y
>   CONFIG_CMD_THOR_DOWNLOAD=y
> +CONFIG_CMD_GREPENV=y
>   CONFIG_CMD_MEMTEST=y
>   CONFIG_SYS_ALT_MEMTEST=y
>   CONFIG_CMD_DFU=y
> @@ -65,7 +66,6 @@ CONFIG_CMD_MTD=y
>   CONFIG_CMD_NAND_LOCK_UNLOCK=y
>   CONFIG_CMD_SF_TEST=y
>   CONFIG_CMD_USB=y
> -# CONFIG_CMD_SETEXPR is not set
>   CONFIG_BOOTP_MAY_FAIL=y
>   CONFIG_CMD_TFTPPUT=y
>   CONFIG_CMD_CACHE=y
> diff --git a/configs/xilinx_zynqmp_virt_defconfig b/configs/xilinx_zynqmp_virt_defconfig
> index e242884d3f6f..1591f221b5a5 100644
> --- a/configs/xilinx_zynqmp_virt_defconfig
> +++ b/configs/xilinx_zynqmp_virt_defconfig
> @@ -57,6 +57,7 @@ CONFIG_SYS_PBSIZE=2073
>   CONFIG_SYS_BOOTM_LEN=0x6400000
>   CONFIG_CMD_BOOTMENU=y
>   CONFIG_CMD_THOR_DOWNLOAD=y
> +CONFIG_CMD_GREPENV=y
>   CONFIG_CMD_NVEDIT_EFI=y
>   CONFIG_CMD_MEMTEST=y
>   CONFIG_SYS_ALT_MEMTEST=y

Applied.
M

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Xilinx Microblaze
Maintainer of Linux kernel - Xilinx Zynq ARM and ZynqMP ARM64 SoCs
U-Boot custodian - Xilinx Microblaze/Zynq/ZynqMP/Versal SoCs


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-08-31  8:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-24 11:28 [PATCH] xilinx: Enable CMD_GREPENV/SETEXPR by default Michal Simek
2022-08-31  8:10 ` Michal Simek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).