Config.in 728 B

123456789101112131415161718192021222324252627
  1. config BR2_TARGET_AFBOOT_STM32
  2. bool "afboot-stm32"
  3. depends on BR2_arm
  4. help
  5. afboot-stm32 is a very small bootloader for STM32 platforms
  6. https://github.com/mcoquelin-stm32/afboot-stm32
  7. if BR2_TARGET_AFBOOT_STM32
  8. config BR2_TARGET_AFBOOT_STM32_KERNEL_ADDR
  9. hex "Kernel load address"
  10. default "0x08008000"
  11. help
  12. This is the physical address in your flash memory the kernel
  13. will be linked for and stored to. This address is dependent on
  14. your own flash usage.
  15. config BR2_TARGET_AFBOOT_STM32_DTB_ADDR
  16. hex "Device-tree load address"
  17. default "0x08004000"
  18. help
  19. This is the physical address in your flash memory the
  20. device-tree will be stored to. This address is dependent on
  21. your own flash usage.
  22. endif