diff options
author | Karsten Merker <merker@debian.org> | 2019-05-05 23:36:29 +0200 |
---|---|---|
committer | Andes <uboot@andestech.com> | 2019-06-05 13:19:08 +0800 |
commit | eacf07e631dc97cef0ae903cea7a3655355d9941 (patch) | |
tree | 44b6c288d7e05c30787f770f8edd9c7dfabace25 /include/configs/qemu-riscv.h | |
parent | 38c2a8a00132b4dcc6a0bb5baf5146b9eb9eb2d2 (diff) | |
download | u-boot-eacf07e631dc97cef0ae903cea7a3655355d9941.tar.gz |
riscv: increase the environment size for the qemu-riscv platform to 128kB
The existing default size of 4kB is too small as the default environment
has already nearly that size and defining a single additional environment
variable can exceed the available space.
Signed-off-by: Karsten Merker <merker@debian.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include/configs/qemu-riscv.h')
-rw-r--r-- | include/configs/qemu-riscv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/qemu-riscv.h b/include/configs/qemu-riscv.h index b7110edebc..df22f780b0 100644 --- a/include/configs/qemu-riscv.h +++ b/include/configs/qemu-riscv.h @@ -20,7 +20,7 @@ #define CONFIG_STANDALONE_LOAD_ADDR 0x80200000 /* Environment options */ -#define CONFIG_ENV_SIZE SZ_4K +#define CONFIG_ENV_SIZE SZ_128K #define BOOT_TARGET_DEVICES(func) \ func(QEMU, qemu, na) \ |