Config.in 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. config BR2_TARGET_MXS_BOOTLETS
  2. bool "mxs-bootlets"
  3. depends on BR2_arm
  4. help
  5. Stage1 bootloaders for Freescale iMX23/iMX28 SoCs
  6. if BR2_TARGET_MXS_BOOTLETS
  7. choice
  8. prompt "Source"
  9. default BR2_TARGET_MXS_BOOTLETS_FREESCALE
  10. help
  11. Select the location of the bootlets you want to use
  12. config BR2_TARGET_MXS_BOOTLETS_FREESCALE
  13. bool "Freescale 10.12.01 version"
  14. config BR2_TARGET_MXS_BOOTLETS_CUSTOM_TARBALL
  15. bool "Custom tarball"
  16. config BR2_TARGET_MXS_BOOTLETS_CUSTOM_GIT
  17. bool "Custom Git repository"
  18. endchoice
  19. config BR2_TARGET_MXS_BOOTLETS_CUSTOM_TARBALL_URL
  20. string "URL of custom bootlets tarball"
  21. depends on BR2_TARGET_MXS_BOOTLETS_CUSTOM_TARBALL
  22. if BR2_TARGET_MXS_BOOTLETS_CUSTOM_GIT
  23. config BR2_TARGET_MXS_BOOTLETS_CUSTOM_GIT_URL
  24. string "URL of custom Git repository"
  25. config BR2_TARGET_MXS_BOOTLETS_CUSTOM_GIT_VERSION
  26. string "Custom Git version"
  27. endif
  28. choice
  29. prompt "Bootstream"
  30. help
  31. Select which bootstream to generate
  32. config BR2_TARGET_MXS_BOOTLETS_BAREBOX
  33. bool "Barebox Bootloader"
  34. depends on BR2_TARGET_BAREBOX
  35. config BR2_TARGET_MXS_BOOTLETS_LINUX
  36. bool "Linux Kernel"
  37. depends on BR2_LINUX_KERNEL
  38. config BR2_TARGET_MXS_BOOTLETS_UBOOT
  39. bool "U-boot bootloader"
  40. depends on BR2_TARGET_UBOOT
  41. endchoice
  42. config BR2_TARGET_MXS_BOOTLETS_HAS_IVT
  43. bool "HAB Support"
  44. help
  45. Enable this option if you are building bootlets
  46. for the iMX28 platform that needs to include instructions
  47. for the secure boot mechanism present on these SoCs
  48. choice
  49. prompt "Board"
  50. help
  51. Select the board to build the bootlets for
  52. config BR2_TARGET_MXS_BOOTLETS_STMP37xx
  53. bool "Sigmatel ST-MP3-7xx Board"
  54. config BR2_TARGET_MXS_BOOTLETS_STMP378x
  55. bool "Sigmatel ST-MP3-78x Board"
  56. config BR2_TARGET_MXS_BOOTLETS_IMX28EVK
  57. bool "Freescale iMX28 EVK Board"
  58. config BR2_TARGET_MXS_BOOTLETS_CUSTOM_BOARD
  59. bool "Custom board"
  60. endchoice
  61. config BR2_TARGET_MXS_BOOTLETS_CUSTOM_BOARD_NAME
  62. string "Custom board name"
  63. depends on BR2_TARGET_MXS_BOOTLETS_CUSTOM_BOARD
  64. help
  65. Name of the board to build the bootlets for
  66. endif