Config.in 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. menuconfig BR2_TARGET_KWIKBYTE
  2. bool "KwikByte Board Support"
  3. depends on BR2_arm
  4. if BR2_TARGET_KWIKBYTE
  5. comment "Board Selection"
  6. choice
  7. prompt "KwikByte target board"
  8. default BR2_TARGET_KB9202
  9. config BR2_TARGET_KB9202
  10. bool "Board support for the KwikByte 9202 Evaluation Board"
  11. depends on BR2_arm920t || BR2_generic_arm
  12. help
  13. KwikByte kb9202 Eval Board
  14. endchoice
  15. config BR2_BOARD_NAME
  16. string
  17. default "kb9202" if BR2_TARGET_KB9202
  18. choice
  19. prompt "Add AT91 specific patches"
  20. depends on BR2_KERNEL_ARCH_PATCH_ENABLED
  21. depends on BR2_arm
  22. default BR2_ARCH_AT91_2_6_24_KB if BR2_LINUX_2_6_24
  23. # default BR2_ARCH_AT91_2_6_24_KB if BR2_LINUX_2_6_23
  24. # default BR2_ARCH_AT91_2_6_22_1_KB if BR2_LINUX_2_6_22_1
  25. # default BR2_ARCH_AT91_2_6_21_5_KB if BR2_LINUX_2_6_21 || BR2_LINUX_2_6_21_5
  26. # default BR2_ARCH_AT91_2_6_21_1_KB if BR2_LINUX_2_6_21_1
  27. # default BR2_ARCH_AT91_2_6_20_4_KB if BR2_LINUX_2_6_20 || BR2_LINUX_2_6_20_4
  28. # default BR2_ARCH_AT91_2_6_24_KB
  29. help
  30. Select a patch to add to the Linux kernel
  31. config BR2_ARCH_AT91_2_6_24_KB
  32. bool "2.6.24"
  33. help
  34. Apply the at91 linux-2.6.24 patches"
  35. #config BR2_ARCH_AT91_2_6_22_1_KB
  36. # bool "2.6.22.1"
  37. # help
  38. # Apply the at91 linux-2.6.22.1 patches"
  39. #
  40. #config BR2_ARCH_AT91_2_6_21_5_KB
  41. # bool "2.6.21.5"
  42. # help
  43. # Apply the at91 linux-2.6.21.5 patches"
  44. #
  45. #config BR2_ARCH_AT91_2_6_21_1_KB
  46. # bool "2.6.21.1"
  47. # help
  48. # Apply the at91 linux-2.6.21.1 patches"
  49. #
  50. #config BR2_ARCH_AT91_2_6_20_4_KB
  51. # bool "2.6.20.4"
  52. # help
  53. # Apply the at91 linux-2.6.20.4 patches"
  54. endchoice
  55. config BR2_KERNEL_ARCH_PATCH_VERSION
  56. string
  57. depends on BR2_KERNEL_ARCH_PATCH_ENABLED
  58. depends on BR2_arm
  59. default "2.6.24" if BR2_ARCH_AT91_2_6_24_KB
  60. # default "2.6.22.1" if BR2_ARCH_AT91_2_6_22_1_KB
  61. # default "2.6.21.5" if BR2_ARCH_AT91_2_6_21_5_KB
  62. # default "2.6.21.1" if BR2_ARCH_AT91_2_6_21_1_KB
  63. # default "2.6.20.4" if BR2_ARCH_AT91_2_6_20_4_KB
  64. config BR2_KERNEL_ARCH_PATCH_DIR
  65. string
  66. default "target/device/Atmel/arch-arm/kernel-patches-$(BR2_KERNEL_ARCH_PATCH_VERSION)"
  67. config BR2_BOARD_PATH
  68. string "Board Path"
  69. default "target/device/KwikByte/$(BR2_BOARD_NAME)"
  70. config BR2_AT91_LINUXPATCH_SITE
  71. string "AT91 Linux Patch mirror site"
  72. default "http://maxim.org.za/AT91RM9200/2.6"
  73. help
  74. Main download location for AT91 Linux stuff
  75. endif