Kconfig 543 B

12345678910111213141516171819
  1. menu "Memory management"
  2. config RT_USING_MEMBLOCK
  3. bool "Using memblock"
  4. default n
  5. help
  6. Using memblock to record memory infomation in init time
  7. config RT_INIT_MEMORY_REGIONS
  8. int "The max number of memory block regions in init time"
  9. depends on RT_USING_MEMBLOCK
  10. range 1 1024
  11. default 128
  12. help
  13. During the system initialization phase, the kernel divides
  14. memory into different types of regions. This variable specifies
  15. the maximum number of regions supported by the system.
  16. endmenu