Kconfig 509 B

12345678910111213141516171819
  1. menu "Helios4 configuration"
  2. depends on TARGET_HELIOS4
  3. config ENV_SIZE
  4. hex "Environment Size"
  5. default 0x10000
  6. config ENV_OFFSET
  7. hex "Environment offset"
  8. default 0xF0000
  9. config ENV_SECT_SIZE
  10. hex "Environment Sector-Size"
  11. # Use SPI or SATA flash erase block size of 4 KiB
  12. default 0x1000 if MVEBU_SPL_BOOT_DEVICE_SPI || MVEBU_SPL_BOOT_DEVICE_SATA
  13. # Use optimistic 64 KiB erase block, will vary between actual media
  14. default 0x10000 if MVEBU_SPL_BOOT_DEVICE_MMC || MVEBU_SPL_BOOT_DEVICE_UART
  15. endmenu