b235a2cffc
Newer versions of the kernel generate device trees that are not storable in a single 16kB sector. In these cases the kernel load address must be changed. The commit 2e499dcff3ef ("Add possibility to use custom kernel load address") adds the possibility to override the default (0x08008000) kernel load address. This also required changes to the stm32f429_disco_defconfig and stm32f469_disco_xip_defconfig configurations. Patching is no longer needed. Also update whitespaces in hash file (2 spaces). Signed-off-by: Dario Binacchi <dariobin@libero.it> Acked-by: Christophe Priouzeau <christophe.priouzeau@foss.st.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
28 lines
728 B
Plaintext
28 lines
728 B
Plaintext
config BR2_TARGET_AFBOOT_STM32
|
|
bool "afboot-stm32"
|
|
depends on BR2_arm
|
|
help
|
|
afboot-stm32 is a very small bootloader for STM32 platforms
|
|
|
|
https://github.com/mcoquelin-stm32/afboot-stm32
|
|
|
|
if BR2_TARGET_AFBOOT_STM32
|
|
|
|
config BR2_TARGET_AFBOOT_STM32_KERNEL_ADDR
|
|
hex "Kernel load address"
|
|
default "0x08008000"
|
|
help
|
|
This is the physical address in your flash memory the kernel
|
|
will be linked for and stored to. This address is dependent on
|
|
your own flash usage.
|
|
|
|
config BR2_TARGET_AFBOOT_STM32_DTB_ADDR
|
|
hex "Device-tree load address"
|
|
default "0x08004000"
|
|
help
|
|
This is the physical address in your flash memory the
|
|
device-tree will be stored to. This address is dependent on
|
|
your own flash usage.
|
|
|
|
endif
|