mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
include: rk3328: Add default env for compressed kernel images
Add default memory addresses for kernel_comp_addr_r and kernel_comp_size to enable booting from a compressed kernel image. This area is temporarily used to decompress the kernel image on-the-fly. Signed-off-by: Christopher Obbard <chris.obbard@collabora.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
parent
6cd6ed9da5
commit
13d819c04a
1 changed files with 3 additions and 1 deletions
|
@ -19,7 +19,9 @@
|
||||||
"pxefile_addr_r=0x00600000\0" \
|
"pxefile_addr_r=0x00600000\0" \
|
||||||
"fdt_addr_r=0x01f00000\0" \
|
"fdt_addr_r=0x01f00000\0" \
|
||||||
"kernel_addr_r=0x02080000\0" \
|
"kernel_addr_r=0x02080000\0" \
|
||||||
"ramdisk_addr_r=0x06000000\0"
|
"ramdisk_addr_r=0x06000000\0" \
|
||||||
|
"kernel_comp_addr_r=0x08000000\0" \
|
||||||
|
"kernel_comp_size=0x2000000\0"
|
||||||
|
|
||||||
#include <config_distro_bootcmd.h>
|
#include <config_distro_bootcmd.h>
|
||||||
#define CFG_EXTRA_ENV_SETTINGS \
|
#define CFG_EXTRA_ENV_SETTINGS \
|
||||||
|
|
Loading…
Reference in a new issue