Config.in 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. config ADK_DEVICE_NO_FPU
  4. bool
  5. config ADK_NATIVE
  6. tristate
  7. config ADK_alix1c
  8. tristate
  9. config ADK_qemu_x86
  10. tristate
  11. config ADK_qemu_mips
  12. tristate
  13. config ADK_qemu_mipsel
  14. tristate
  15. config ADK_qemu_mips64
  16. tristate
  17. config ADK_qemu_mips64el
  18. tristate
  19. config ADK_qemu_cris
  20. tristate
  21. config ADK_rb532
  22. tristate
  23. config ADK_rb411
  24. tristate
  25. config ADK_rb433
  26. tristate
  27. config ADK_zaurus
  28. tristate
  29. config ADK_foxboard
  30. tristate
  31. config ADK_lemote
  32. tristate
  33. config ADK_rescue_x86
  34. tristate
  35. config ADK_rescue_x86_64
  36. tristate
  37. config ADK_rescue_mips
  38. tristate
  39. config ADK_rescue_mipsel
  40. tristate
  41. config ADK_wag54g
  42. tristate
  43. config ADK_DEVICE
  44. string
  45. default "alix1c" if ADK_alix1c
  46. default "qemu-x86" if ADK_qemu_x86
  47. default "qemu-mips" if ADK_qemu_mips
  48. default "qemu-mipsel" if ADK_qemu_mipsel
  49. default "qemu-mips64" if ADK_qemu_mips64
  50. default "qemu-mips64el" if ADK_qemu_mips64el
  51. default "qemu-cris" if ADK_qemu_cris
  52. default "foxboard" if ADK_foxboard
  53. default "native" if ADK_NATIVE
  54. default "rb532" if ADK_rb532
  55. default "rb411" if ADK_rb411
  56. default "rb433" if ADK_rb433
  57. default "zaurus" if ADK_arm
  58. default "lemote" if ADK_lemote
  59. default "wag54g" if ADK_wag54g
  60. default "rescue-x86" if ADK_rescue_x86
  61. default "rescue-x86_64" if ADK_rescue_x86_64
  62. default "rescue-mips" if ADK_rescue_mips
  63. default "rescue-mipsel" if ADK_rescue_mipsel
  64. config ADK_LINUX_MIPS64
  65. bool
  66. default n
  67. menu "Target system"
  68. choice
  69. prompt "Embedded Device"
  70. default ADK_LINUX_NATIVE
  71. config ADK_LINUX_NATIVE
  72. bool "Native platform"
  73. select ADK_NATIVE
  74. help
  75. Make a native build. Use host tools.
  76. No toolchain will be created.
  77. config ADK_LINUX_X86_ALIX1C
  78. bool "PC Engines Alix1C"
  79. select ADK_alix1c
  80. select ADK_KERNEL_SCSI
  81. select ADK_KERNEL_EXT2_FS
  82. select ADK_KERNEL_NETDEVICES
  83. select ADK_KERNEL_NET_PCI
  84. select ADK_KERNEL_NETDEVICES
  85. select ADK_KERNEL_NET_ETHERNET
  86. select ADK_KERNEL_MII
  87. select BUSYBOX_HWCLOCK
  88. help
  89. http://www.pcengines.ch/
  90. config ADK_LINUX_CRIS_FOXBOARD
  91. bool "Foxboard (ETRAX LX100)"
  92. select ADK_foxboard
  93. select ADK_PACKAGE_KMOD_USB_CONTROLLER
  94. help
  95. Foxboard support
  96. config ADK_LINUX_MIPS64_LEMOTE
  97. bool "Lemote Subnotebook Yeeloong"
  98. select ADK_lemote
  99. select ADK_LINUX_MIPS64
  100. select ADK_KERNEL_NETDEVICES
  101. select ADK_KERNEL_NET_PCI
  102. select ADK_KERNEL_NET_ETHERNET
  103. select ADK_KERNEL_MII
  104. help
  105. Lemote Subnotebook
  106. config ADK_LINUX_MIKROTIK
  107. bool "Mikrotik Routerboards"
  108. help
  109. Support for Mikrotik Routerboards
  110. config ADK_LINUX_MIPS_WAG54G
  111. bool "Linksys WAG54G"
  112. select ADK_KERNEL_NETDEVICES
  113. select ADK_KERNEL_NET_PCI
  114. select ADK_KERNEL_NET_ETHERNET
  115. select ADK_KERNEL_MII
  116. select ADK_wag54g
  117. help
  118. Linksys WAG54G DSL router with Wireless
  119. TI AR7 platform
  120. config ADK_LINUX_XSCALE_ZAURUS
  121. bool "Zaurus SL-C3200"
  122. depends on ADK_BROKEN
  123. select ADK_zaurus
  124. select ADK_DEVICE_NO_FPU
  125. help
  126. Support for Sharp Zaurus SL-C3200 (aka Terrier)
  127. config ADK_LINUX_RESCUE
  128. bool "Minimal Linux Rescuesystem"
  129. help
  130. Rescuesystem with can be used to Boot from Disk or USB stick.
  131. config ADK_LINUX_QEMU
  132. bool "Qemu Emulator"
  133. help
  134. Support for Qemu Emulator
  135. endchoice
  136. choice
  137. prompt "Architecture"
  138. depends on ADK_LINUX_RESCUE
  139. config ADK_LINUX_X86_64_RESCUE
  140. bool "x86_64"
  141. select ADK_rescue_x86_64
  142. help
  143. X86 architecture.
  144. config ADK_LINUX_X86_RESCUE
  145. bool "x86"
  146. select ADK_rescue_x86
  147. help
  148. X86 architecture.
  149. config ADK_LINUX_MIPSEL_RESCUE
  150. bool "mips (little endian)"
  151. select ADK_rescue_mipsel
  152. help
  153. MIPS LE architecture.
  154. config ADK_LINUX_MIPS_RESCUE
  155. bool "mips (big endian)"
  156. select ADK_rescue_mips
  157. help
  158. MIPS BE architecture.
  159. endchoice
  160. choice
  161. prompt "Architecture"
  162. depends on ADK_LINUX_QEMU
  163. config ADK_LINUX_X86_QEMU
  164. bool "x86"
  165. select ADK_qemu_x86
  166. select ADK_KPACKAGE_KMOD_NE2K_PCI
  167. select ADK_KERNEL_INPUT_KEYBOARD
  168. help
  169. Qemu support for x86 architecture.
  170. config ADK_LINUX_MIPS_QEMU
  171. bool "mips (big endian)"
  172. select ADK_qemu_mips
  173. help
  174. Qemu support for MIPS BE architecture.
  175. config ADK_LINUX_MIPSEL_QEMU
  176. bool "mipsel (little endian)"
  177. select ADK_qemu_mipsel
  178. help
  179. Qemu support for MIPS LE architecture.
  180. config ADK_LINUX_MIPS64_QEMU
  181. bool "mips64 (big endian)"
  182. select ADK_qemu_mips64
  183. select ADK_LINUX_MIPS64
  184. help
  185. Qemu support for MIPS64 BE architecture.
  186. config ADK_LINUX_MIPS64EL_QEMU
  187. bool "mips64 (little endian)"
  188. select ADK_qemu_mips64el
  189. select ADK_LINUX_MIPS64
  190. help
  191. Qemu support for MIPS64 LE architecture.
  192. config ADK_LINUX_CRIS_QEMU
  193. bool "cris"
  194. select ADK_qemu_cris
  195. help
  196. Qemu support for CRISv32 architecture.
  197. endchoice
  198. choice
  199. prompt "Routerboard model"
  200. default ADK_LINUX_MIPS_RB433
  201. depends on ADK_LINUX_MIKROTIK
  202. config ADK_LINUX_MIPS_RB411
  203. bool "Mikrotik Routerboard 411"
  204. select ADK_rb411
  205. select ADK_KERNEL_NETDEVICES
  206. select ADK_KERNEL_NET_PCI
  207. select ADK_KERNEL_NETDEV_1000
  208. select ADK_KERNEL_NET_ETHERNET
  209. help
  210. Support for Mikrotik RB411.
  211. config ADK_LINUX_MIPS_RB433
  212. bool "Mikrotik Routerboard 433"
  213. select ADK_rb433
  214. select ADK_KERNEL_NETDEVICES
  215. select ADK_KERNEL_NET_PCI
  216. select ADK_KERNEL_NETDEV_1000
  217. select ADK_KERNEL_NET_ETHERNET
  218. help
  219. Support for Mikrotik RB433.
  220. config ADK_LINUX_MIPS_RB532
  221. bool "Mikrotik Routerboard 532"
  222. select ADK_rb532
  223. select ADK_KERNEL_NETDEVICES
  224. select ADK_KERNEL_NET_PCI
  225. select ADK_KERNEL_NET_ETHERNET
  226. select ADK_KERNEL_MII
  227. help
  228. Support for Mikrotik RB532.
  229. endchoice
  230. choice
  231. prompt "Device model"
  232. default ADK_LINUX_CRIS_FOXBOARD_CLASSIC
  233. depends on ADK_LINUX_CRIS_FOXBOARD
  234. config ADK_LINUX_CRIS_FOXBOARD_CLASSIC
  235. bool "Foxboard classic (4x16)"
  236. help
  237. Foxboard classic with red board.
  238. (4 MB flash size and 16 MB RAM)
  239. config ADK_LINUX_CRIS_FOXBOARD_LX
  240. bool "Foxboard LX (8x32)"
  241. help
  242. Latest Foxboard with green board.
  243. (8 MB flash size and 32 MB RAM)
  244. endchoice
  245. source "target/linux/config/Config.in.kernel"
  246. choice
  247. prompt "Target C library"
  248. depends ! ADK_NATIVE
  249. config ADK_TARGET_LIB_UCLIBC
  250. bool "uClibc embedded C library"
  251. help
  252. http://uclibc.org
  253. config ADK_TARGET_LIB_GLIBC
  254. bool "GNU C library"
  255. depends on ADK_LINUX_X86_QEMU || \
  256. ADK_LINUX_MIPS_QEMU || \
  257. ADK_LINUX_MIPS64_QEMU || \
  258. ADK_LINUX_MIPSEL_QEMU || \
  259. ADK_LINUX_MIPS64EL_QEMU || \
  260. ADK_LINUX_X86_ALIX1C || \
  261. ADK_LINUX_MIPS_RB411 || \
  262. ADK_LINUX_MIPS_RB532 || \
  263. ADK_LINUX_RESCUE || \
  264. ADK_LINUX_MIPS64_LEMOTE
  265. help
  266. http://www.gnu.org/libc
  267. endchoice
  268. choice
  269. prompt "Target Firmware type"
  270. default ADK_TARGET_ROOTFS_EXT2_CF
  271. config ADK_TARGET_ROOTFS_INITRAMFS
  272. bool "initramfs filesystem"
  273. depends on ADK_LINUX_X86_QEMU || \
  274. ADK_LINUX_CRIS_QEMU || \
  275. ADK_LINUX_MIPS_QEMU || \
  276. ADK_LINUX_MIPSEL_QEMU || \
  277. ADK_LINUX_MIPS64_QEMU || \
  278. ADK_LINUX_MIPS64EL_QEMU || \
  279. ADK_LINUX_RESCUE || \
  280. ADK_LINUX_MIPS64_LEMOTE
  281. help
  282. create an read-only initramfs system.
  283. config ADK_TARGET_ROOTFS_SQUASHFS
  284. bool "squashfs read-only root filesystem"
  285. depends on ADK_LINUX_CRIS_FOXBOARD || \
  286. ADK_LINUX_MIPS_WAG54G
  287. help
  288. highly compressed read-only filesystem for flash.
  289. config ADK_TARGET_ROOTFS_YAFFS
  290. bool "YAFFS2 rootfilesystem (NAND)"
  291. depends on ADK_LINUX_MIPS_RB532 || \
  292. ADK_LINUX_MIPS_RB433 || \
  293. ADK_LINUX_MIPS_RB411
  294. help
  295. Root filesystem on NAND.
  296. config ADK_TARGET_ROOTFS_NFSROOT
  297. bool "NFS root"
  298. depends on ADK_LINUX_CRIS_FOXBOARD || \
  299. ADK_LINUX_X86_ALIX1C || \
  300. ADK_LINUX_MIPS_RB532 || \
  301. ADK_LINUX_MIPS_RB433 || \
  302. ADK_LINUX_MIPS_RB411 || \
  303. ADK_LINUX_MIPS_WAG54G || \
  304. ADK_LINUX_MIPS64_LEMOTE
  305. select ADK_KERNEL_NFS_FS
  306. select ADK_KERNEL_NFS_V3
  307. select ADK_KERNEL_ROOT_NFS
  308. select ADK_KERNEL_NFS_COMMON
  309. select ADK_KERNEL_IP_PNP
  310. select ADK_KERNEL_IP_PNP_DHCP
  311. help
  312. Root filesystem mounted via NFS. (DHCP)
  313. config ADK_TARGET_ROOTFS_EXT2_CF
  314. bool "read-write filesystem for compact flash (ext2)"
  315. depends on ADK_LINUX_X86_ALIX1C || ADK_LINUX_MIPS_RB532
  316. select ADK_KERNEL_EXT2_FS
  317. help
  318. Use this option if you have a compact flash
  319. inside your hardware and want to boot from it.
  320. config ADK_TARGET_ROOTFS_EXT2
  321. bool "read-write filesystem for qemu emulator"
  322. depends on ADK_LINUX_QEMU || \
  323. ADK_LINUX_XSCALE_ZAURUS
  324. select ADK_KERNEL_EXT2_FS
  325. help
  326. Use this option if you compile for qemu.
  327. endchoice
  328. config ADK_SSP
  329. bool "Enable Stack Smashing Protection"
  330. default n
  331. depends on ADK_LINUX_X86_ALIX1C || \
  332. ADK_LINUX_CRIS_FOXBOARD
  333. help
  334. Enable Stack Smashing Protection
  335. config ADK_CXX
  336. bool "Enable C++ support"
  337. default n
  338. help
  339. Enable C++ Compiler and Libraries
  340. config ADK_DEBUG
  341. bool "Enable debug support"
  342. default n
  343. help
  344. All packages and libc will be compiled and packaged with debug information.
  345. Mostly useful for NFS root or big USB/CF disk setups.
  346. config ADK_IPV6
  347. bool "Enable IPv6 support"
  348. default n
  349. select ADK_KPACKAGE_KMOD_IPV6
  350. select BUSYBOX_FEATURE_IPV6
  351. select BUSYBOX_FEATURE_IFUPDOWN_IPV6
  352. select BUSYBOX_PING6
  353. help
  354. Enable basic IPv6 support (kmod-ipv6) and
  355. make the IPv6 support options in packages visible.
  356. config ADK_X11
  357. bool "Enable X.org/X11 support"
  358. default n
  359. help
  360. Enable Xorg/X11 server and applications in menu.
  361. Try to compile other packages with X11 support.
  362. (f.e. mplayer)
  363. endmenu