Config.in.bfin 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. choice
  2. prompt "Target CPU"
  3. depends on BR2_bfin
  4. default BR2_bf532
  5. help
  6. Specify target CPU
  7. config BR2_bf606
  8. bool "bf606"
  9. config BR2_bf607
  10. bool "bf607"
  11. config BR2_bf608
  12. bool "bf608"
  13. config BR2_bf609
  14. bool "bf609"
  15. config BR2_bf512
  16. bool "bf512"
  17. config BR2_bf514
  18. bool "bf514"
  19. config BR2_bf516
  20. bool "bf516"
  21. config BR2_bf518
  22. bool "bf518"
  23. config BR2_bf522
  24. bool "bf522"
  25. config BR2_bf523
  26. bool "bf523"
  27. config BR2_bf524
  28. bool "bf524"
  29. config BR2_bf525
  30. bool "bf525"
  31. config BR2_bf526
  32. bool "bf526"
  33. config BR2_bf527
  34. bool "bf527"
  35. config BR2_bf531
  36. bool "bf531"
  37. config BR2_bf532
  38. bool "bf532"
  39. config BR2_bf533
  40. bool "bf533"
  41. config BR2_bf534
  42. bool "bf534"
  43. config BR2_bf536
  44. bool "bf536"
  45. config BR2_bf537
  46. bool "bf537"
  47. config BR2_bf538
  48. bool "bf538"
  49. config BR2_bf539
  50. bool "bf539"
  51. config BR2_bf542
  52. bool "bf542"
  53. config BR2_bf544
  54. bool "bf544"
  55. config BR2_bf547
  56. bool "bf547"
  57. config BR2_bf548
  58. bool "bf548"
  59. config BR2_bf549
  60. bool "bf549"
  61. config BR2_bf561
  62. bool "bf561"
  63. endchoice
  64. config BR2_ARCH
  65. default "bfin"
  66. config BR2_ENDIAN
  67. default "LITTLE"
  68. config BR2_GCC_TARGET_CPU
  69. default bf606 if BR2_bf606
  70. default bf607 if BR2_bf607
  71. default bf608 if BR2_bf608
  72. default bf609 if BR2_bf609
  73. default bf512 if BR2_bf512
  74. default bf514 if BR2_bf514
  75. default bf516 if BR2_bf516
  76. default bf518 if BR2_bf518
  77. default bf522 if BR2_bf522
  78. default bf523 if BR2_bf523
  79. default bf524 if BR2_bf524
  80. default bf525 if BR2_bf525
  81. default bf526 if BR2_bf526
  82. default bf527 if BR2_bf527
  83. default bf531 if BR2_bf531
  84. default bf532 if BR2_bf532
  85. default bf533 if BR2_bf533
  86. default bf534 if BR2_bf534
  87. default bf536 if BR2_bf536
  88. default bf537 if BR2_bf537
  89. default bf538 if BR2_bf538
  90. default bf539 if BR2_bf539
  91. default bf542 if BR2_bf542
  92. default bf544 if BR2_bf544
  93. default bf547 if BR2_bf547
  94. default bf548 if BR2_bf548
  95. default bf549 if BR2_bf549
  96. default bf561 if BR2_bf561
  97. config BR2_GCC_TARGET_CPU_REVISION
  98. string "Target CPU revision"
  99. help
  100. Specify a target CPU revision, which will be appended to the
  101. value of the -mcpu option. For example, if the selected CPU is
  102. bf609, and then selected CPU revision is "0.0", then gcc will
  103. receive the -mcpu=bf609-0.0 option.