Kconfig.u-boot 762 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. menu "U-boot build configuration"
  2. choice UBOOT_GIT_REPO
  3. bool "Build choice"
  4. config UBOOT_GIT_REPO_R
  5. bool "Build from Remote REPO"
  6. config UBOOT_GIT_REPO_L
  7. bool "Build from local branch or commit"
  8. endchoice
  9. if UBOOT_GIT_REPO_R
  10. config UBOOT_GIT_REMOTE
  11. string "U-Boot Remote REPO name"
  12. default "origin"
  13. config UBOOT_GIT_RBRANCH
  14. string "The branch we will use in U-Boot Remote REPO"
  15. default "JH7100_upstream"
  16. endif
  17. if UBOOT_GIT_REPO_L
  18. config UBOOT_GIT_LBRANCH
  19. string "The branch/commit we will use in local REPO"
  20. default "JH7100_upstream"
  21. endif
  22. config UBOOT_BUILD_IN_TMPFS
  23. bool "Build U-Boot in tmpfs(in RAM)"
  24. default n
  25. config UBOOT_BUILD_TARGET
  26. string "The target board we will build for"
  27. default "starfive_jh7100_visionfive_smode"
  28. endmenu