Skip to content
Snippets Groups Projects
Commit b48c07aa authored by Guillaume Tucker's avatar Guillaume Tucker
Browse files

nyan-big: fix kernel load address and size


The ramdisk needs to be loaded after address 0x82000000 otherwise it
fails to boot (as tested with Linux v4.14).  To solve this issue with
FIT image where the ramdisk is placed right after the kernel image,
load the whole FIT image at this address.  Also increase the kernel
size to allow bigger kernels and ramdisks.

Change-Id: I32edbc280906c0bbac4dd23c0a317880cde80fc7
Signed-off-by: default avatarGuillaume Tucker <guillaume.tucker@gmail.com>
parent 39b51be4
No related branches found
No related tags found
No related merge requests found
......@@ -5,9 +5,10 @@ CONFIG_ARCH_ARM=y
CONFIG_BOARD="nyan_big"
# Image
CONFIG_BASE_ADDRESS=0x83000000
CONFIG_BASE_ADDRESS=0x85000000
CONFIG_HEAP_SIZE=0x00800000
CONFIG_KERNEL_START=0x81000000
CONFIG_KERNEL_START=0x82000000
CONFIG_KERNEL_SIZE=0x3000000
# Vboot
CONFIG_EC_SOFTWARE_SYNC=y
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment