diff options
author | T Karthik Reddy <t.karthik.reddy@xilinx.com> | 2019-08-20 09:30:57 +0530 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2019-10-08 09:11:14 +0200 |
commit | a69814c815b9a1a027f461ef26dbe7b2b8e258e4 (patch) | |
tree | 077b29ff26b005322d0dbc7da211c0cd6db626fe /arch/arm/Kconfig | |
parent | 085201c246ee37ac6cc8f7dd3ec2ad602537601e (diff) | |
download | u-boot-a69814c815b9a1a027f461ef26dbe7b2b8e258e4.tar.gz |
arm64: zynqmp: Set initrd_high to as high as possible
This patch is setting up the initrd_high to as high as possible by leaving
max stack size for u-boot so that bigger rootfs can also be loaded by
u-boot for booting kernel.
Signed-off-by: T Karthik Reddy <t.karthik.reddy@xilinx.com>
Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 33cb3e0658..257a98d795 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -464,7 +464,7 @@ config TPL_USE_ARCH_MEMSET config SET_STACK_SIZE bool "Enable an option to set max stack size that can be used" - default y if ARCH_VERSAL + default y if ARCH_VERSAL || ARCH_ZYNQMP help This will enable an option to set max stack size that can be used by u-boot. @@ -472,7 +472,7 @@ config SET_STACK_SIZE config STACK_SIZE hex "Define max stack size that can be used by u-boot" depends on SET_STACK_SIZE - default 0x4000000 if ARCH_VERSAL + default 0x4000000 if ARCH_VERSAL || ARCH_ZYNQMP help Defines Max stack size that can be used by u-boot so that the initrd_high will be calculated as base stack pointer minus this |