Kconfig.image 1002 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # SPDX-License-Identifier: GPL-2.0
  2. menu "SD/flash Image build configuration"
  3. config VISIONFIVE_V1_UENV_PATH
  4. string "Pre-build uEnv.txt file path"
  5. default "../../prebuild/image_visionfive_v1/uEnv.txt"
  6. config VISIONFIVE_V1_ROOTFS_IMAGE_PATH
  7. string "Pre-build rootfs image(ext) path"
  8. default "../../prebuild/image_visionfive_v1/test.ext4"
  9. config VISIONFIVE_V1_BOOT_START
  10. int "boot partition(vfat) start sector( 512 B/sector ) number."
  11. default 4096
  12. config VISIONFIVE_V1_BOOT_SECTORS
  13. int "boot partition(vfat) size(in sectors)."
  14. default 466943
  15. config VISIONFIVE_V1_BOOTLOADER_START
  16. int "bootloader partition(raw) start sector( 512 B/sector ) number."
  17. default 471040
  18. config VISIONFIVE_V1_BOOTLOADER_SECTORS
  19. int "bootloader partition(raw) size(in sectors)."
  20. default 2047
  21. config VISIONFIVE_V1_ROOTFS_START
  22. int "rootfs partition(ext4) start sector( 512 B/sector ) number."
  23. default 475136
  24. config VISIONFIVE_V1_SD_DEV
  25. string "SD card device node in /dev/, like sdg."
  26. default sdg
  27. endmenu