Config.in 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651
  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_big
  4. boolean
  5. config ADK_little
  6. boolean
  7. config ADK_TARGET_ENDIAN
  8. string
  9. default "little" if ADK_little
  10. default "big" if ADK_big
  11. config ADK_TOOLCHAIN
  12. boolean
  13. source "target/config/Config.in.arch"
  14. source "target/config/Config.in.system"
  15. choice
  16. prompt "Toolchain options"
  17. depends on ADK_TOOLCHAIN
  18. config ADK_TOOLCHAIN_ONLY
  19. boolean "Only build toolchain and selected packages"
  20. config ADK_TOOLCHAIN_ARCHIVE
  21. boolean "Build a complete system usable f.e. via chroot"
  22. endchoice
  23. choice
  24. prompt "Target Kernel"
  25. depends on ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  26. config ADK_TARGET_KERNEL64
  27. boolean "64 Bit Kernel"
  28. config ADK_TARGET_KERNEL32
  29. boolean "32 Bit Kernel"
  30. endchoice
  31. config ADK_o32
  32. boolean
  33. config ADK_n32
  34. boolean
  35. config ADK_n64
  36. boolean
  37. config ADK_TARGET_ABI
  38. string
  39. default "32" if ADK_o32
  40. default "n32" if ADK_n32
  41. default "64" if ADK_n64
  42. choice
  43. prompt "Target ABI"
  44. depends on ADK_TARGET_KERNEL64 && ADK_LINUX_MIPS
  45. config ADK_TARGET_ABI_N32
  46. boolean "N32 ABI (new)"
  47. select ADK_n32
  48. config ADK_TARGET_ABI_O32
  49. boolean "O32 ABI (old)"
  50. select ADK_o32
  51. config ADK_TARGET_ABI_N64
  52. boolean "N64 ABI"
  53. select ADK_n64
  54. endchoice
  55. # submodel support
  56. #
  57. choice
  58. prompt "Qemu ARM Emulation"
  59. depends on ADK_TARGET_SYSTEM_QEMU_ARM
  60. config ADK_TARGET_QEMU_ARM_MODEL_SPITZ
  61. boolean "Xscale PXA270 Spitz PDA"
  62. select ADK_KERNEL_ARCH_PXA
  63. select ADK_KERNEL_PXA_SHARPSL
  64. select ADK_KERNEL_MACH_SPITZ
  65. select ADK_KERNEL_SPI_PXA2XX
  66. config ADK_TARGET_QEMU_ARM_MODEL_VERSATILE
  67. boolean "ARM Ltd. Versatile"
  68. select ADK_KERNEL_ARCH_VERSATILE
  69. select ADK_KERNEL_PCI
  70. select ADK_KERNEL_BLOCK
  71. select ADK_KERNEL_SCSI
  72. select ADK_KERNEL_BLK_DEV_SD
  73. select ADK_KERNEL_SCSI_SYM53C8XX_2
  74. endchoice
  75. choice
  76. prompt "Foxboard LX Model"
  77. depends on ADK_TARGET_SYSTEM_FOXBOARD_LX
  78. config ADK_TARGET_FOXBOARD_MODEL_LX416
  79. boolean "Foxboard LX 4x16"
  80. config ADK_TARGET_FOXBOARD_MODEL_LX832
  81. boolean "Foxboard LX 8x32"
  82. endchoice
  83. choice
  84. prompt "Broadcom BCM47xx Model"
  85. depends on ADK_TARGET_SYSTEM_BROADCOM_BCM47XX
  86. config ADK_TARGET_BROADCOM_MODEL_LINKSYS_WRT54G
  87. boolean "Linksys WRT54g"
  88. config ADK_TARGET_BROADCOM_MODEL_LINKSYS_WRT54GS
  89. boolean "Linksys WRT54gs"
  90. endchoice
  91. if ADK_LINUX_NATIVE
  92. source "target/config/Config.in.native"
  93. endif
  94. # hardware features
  95. config ADK_TARGET_WITH_USB
  96. boolean
  97. config ADK_TARGET_WITH_PCI
  98. boolean
  99. config ADK_TARGET_WITH_SSB
  100. boolean
  101. config ADK_TARGET_WITH_AHB
  102. boolean
  103. config ADK_TARGET_WITH_MINIPCI
  104. boolean
  105. config ADK_TARGET_WITH_ACPI
  106. boolean
  107. config ADK_TARGET_WITH_VGA
  108. boolean
  109. config ADK_TARGET_WITH_CF
  110. boolean
  111. config ADK_TARGET_WITH_MMC
  112. boolean
  113. config ADK_TARGET_WITH_NAND
  114. boolean
  115. config ADK_TARGET_WITH_MTD
  116. boolean
  117. config ADK_TARGET_WITH_GEODE_CRYPTO
  118. boolean
  119. config ADK_TARGET_WITH_HDD
  120. boolean
  121. config ADK_TARGET_WITH_SATA
  122. boolean
  123. config ADK_TARGET_WITH_INPUT
  124. boolean
  125. config ADK_TARGET_WITH_LEDS
  126. boolean
  127. config ADK_TARGET_WITH_PP
  128. boolean
  129. config ADK_TARGET_WITH_CARDBUS
  130. boolean
  131. config ADK_TARGET_WITH_RTC
  132. boolean
  133. config ADK_TARGET_WITH_WATCHDOG
  134. boolean
  135. config ADK_TARGET_WITH_DSL
  136. boolean
  137. config ADK_TARGET_WITH_USB_BOOT
  138. boolean
  139. # global symbols
  140. config ADK_TOOLCHAIN_ONLY
  141. boolean
  142. config ADK_TARGET_NO_FPU
  143. boolean
  144. config ADK_EABI
  145. boolean
  146. config ADK_LINUX_64
  147. boolean
  148. config ADK_HARDWARE_QEMU
  149. boolean
  150. config ADK_NATIVE
  151. boolean
  152. # the inverse of ADK_TARGET_KERNEL_CUSTOMISING,
  153. # allows for selecting it off (i.e., to disable it)
  154. config ADK_TARGET_FIXED_KERNEL
  155. bool
  156. default n
  157. config ADK_TARGET_KERNEL_CUSTOMISING
  158. bool
  159. default y
  160. depends on !ADK_TARGET_FIXED_KERNEL
  161. # cpu features
  162. config ADK_TARGET_CPU_WITH_VT
  163. boolean
  164. config ADK_TARGET_CPU_WITH_MTRR
  165. boolean
  166. config ADK_TARGET_CPU_WITH_MMX
  167. boolean
  168. config ADK_TARGET_CPU_WITH_MMXEXT
  169. boolean
  170. config ADK_TARGET_CPU_WITH_SSE
  171. boolean
  172. config ADK_TARGET_CPU_WITH_SSE2
  173. boolean
  174. config ADK_TARGET_CPU_WITH_SSE3
  175. boolean
  176. config ADK_TARGET_CPU_WITH_SSSE3
  177. boolean
  178. # hyper threading
  179. config ADK_TARGET_CPU_WITH_HT
  180. boolean
  181. config ADK_TARGET_CPU_WITH_3DNOW
  182. boolean
  183. config ADK_TARGET_CPU_WITH_3DNOWEXT
  184. boolean
  185. # cpu configuration
  186. config ADK_CPU_CRIS_V10
  187. boolean
  188. config ADK_CPU_CRIS_V32
  189. boolean
  190. config ADK_CPU_SH4
  191. boolean
  192. config ADK_CPU_SPARC_V8
  193. boolean
  194. config ADK_CPU_SPARC_V9
  195. boolean
  196. config ADK_CPU_I486
  197. boolean
  198. config ADK_CPU_I586
  199. boolean
  200. config ADK_CPU_I686
  201. boolean
  202. config ADK_CPU_X86_64
  203. boolean
  204. config ADK_CPU_GEODE
  205. boolean
  206. config ADK_CPU_PPC
  207. boolean
  208. config ADK_CPU_PPC64
  209. boolean
  210. config ADK_CPU_PENTIUM_M
  211. boolean
  212. config ADK_CPU_ATOM
  213. boolean
  214. config ADK_CPU_AMDFAM10
  215. select ADK_TARGET_CPU_WITH_VT
  216. boolean
  217. config ADK_CPU_LOONGSON2F
  218. boolean
  219. config ADK_CPU_ARMV5
  220. boolean
  221. config ADK_TARGET_CPU_ARCH
  222. string
  223. default "x86_64" if ADK_CPU_X86_64
  224. default "i486" if ADK_CPU_I486
  225. default "i586" if ADK_CPU_I586
  226. default "i686" if ADK_CPU_I686
  227. default "i586" if ADK_CPU_GEODE
  228. default "i686" if ADK_CPU_PENTIUM_M
  229. default "i686" if ADK_CPU_ATOM
  230. default "mips64" if ADK_LINUX_MIPS && ADK_big && ADK_TARGET_KERNEL64
  231. default "mips64el" if ADK_LINUX_MIPS && ADK_little && ADK_TARGET_KERNEL64
  232. default "mips" if ADK_LINUX_MIPS && ADK_big
  233. default "mipsel" if ADK_LINUX_MIPS && ADK_little
  234. default "arm" if ADK_LINUX_ARM && ADK_little
  235. default "armeb" if ADK_LINUX_ARM && ADK_big
  236. default "sparc" if ADK_LINUX_SPARC
  237. default "sh" if ADK_LINUX_SH
  238. default "cris" if ADK_CPU_CRIS_V10
  239. default "crisv32" if ADK_CPU_CRIS_V32
  240. default "ppc" if ADK_CPU_PPC
  241. default "ppc64" if ADK_CPU_PPC64
  242. config ADK_TARGET_ABI_CFLAGS
  243. string
  244. default "-mabi=32" if ADK_TARGET_ABI_O32
  245. default "-mabi=n32 -Wl,-m -Wl,elf32ltsmipn32" if ADK_TARGET_ABI_N32
  246. default "-mabi=64 -Wl,-m -Wl,elf64ltsmip" if ADK_TARGET_ABI_N64
  247. config ADK_TARGET_KERNEL_LDFLAGS
  248. string
  249. default "-mabi=64 -m elf64ltsmip" if ADK_TARGET_ABI_N32
  250. default "-mabi=64 -m elf64ltsmip" if ADK_TARGET_ABI_O32
  251. default "-mabi=64 -m elf64ltsmip" if ADK_TARGET_ABI_N64
  252. config ADK_TARGET_CFLAGS
  253. string
  254. default "-march=geode" if ADK_CPU_GEODE
  255. default "-march=i486" if ADK_CPU_I486
  256. default "-march=i586" if ADK_CPU_I586
  257. default "-march=i686" if ADK_CPU_I686
  258. default "-march=pentium-m" if ADK_CPU_PENTIUM_M
  259. default "-march=atom" if ADK_CPU_ATOM
  260. default "-march=amdfam10" if ADK_CPU_AMDFAM10
  261. default "-mcpu=v8" if ADK_CPU_SPARC_V8
  262. default "-m64 -mcpu=v9" if ADK_CPU_SPARC_V9
  263. default "-march=loongson2f" if ADK_CPU_LOONGSON2F
  264. default "-march=mips32" if ADK_CPU_MIPS32
  265. default "-march=mips64" if ADK_CPU_MIPS64
  266. default "-march=armv5te -mtune=arm926ej-s" if ADK_CPU_ARMV5
  267. default "-march=v32" if ADK_CPU_CRIS_V32
  268. default "-march=v10" if ADK_CPU_CRIS_V10
  269. config ADK_TARGET_CMDLINE
  270. string
  271. default "console=tty no_auto_cmd" if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  272. default "console=ttyS0,9600" if ADK_TARGET_SYSTEM_FON_FON2100
  273. default "console=ttyS0,38400" if ADK_TARGET_SYSTEM_PCENGINES_WRAP
  274. default "console=ttyS0,115200 console=tty0 geodewdt.nowayout=1" if ADK_TARGET_SYSTEM_PCENGINES_ALIX1C
  275. default "console=ttyS0,115200 console=tty0" if ADK_TARGET_SYSTEM_IBM_X40
  276. default "console=ttyS0,115200 console=tty0" if ADK_TARGET_SYSTEM_INTEL_ATOM
  277. default "console=ttyS0,115200 console=tty0" if ADK_TARGET_SYSTEM_QEMU_I686
  278. default "console=ttyS0,115200 console=tty0" if ADK_TARGET_QEMU_ARM_MODEL_SPITZ
  279. default "console=ttyAMA0 console=tty0" if ADK_TARGET_QEMU_ARM_MODEL_VERSATILE
  280. default "console=tty0" if ADK_TARGET_SYSTEM_QEMU_SH
  281. default "console=ttyS0,115200" if ADK_TARGET_SYSTEM_PCENGINES_ALIX2D13
  282. default "console=ttyS0,115200" if ADK_TARGET_SYSTEM_PCENGINES_ALIX2D2
  283. default "console=ttyS0,115200" if ADK_TARGET_SYSTEM_FOXBOARD_LX
  284. default "console=tty0" if ADK_TARGET_SYSTEM_QEMU_SH
  285. default ""
  286. # c library
  287. config ADK_uclibc
  288. boolean
  289. config ADK_eglibc
  290. boolean
  291. config ADK_glibc
  292. boolean
  293. config ADK_libc
  294. boolean
  295. config ADK_TARGET_LIBC
  296. string
  297. default "uclibc" if ADK_uclibc
  298. default "eglibc" if ADK_eglibc
  299. default "glibc" if ADK_glibc
  300. default "libc" if ADK_libc
  301. source "target/linux/config/Config.in.kernel"
  302. choice
  303. prompt "Target C library"
  304. depends on !ADK_CHOOSE_TARGET_SYSTEM && !ADK_CHOOSE_TARGET_ARCH
  305. config ADK_TARGET_LIB_UCLIBC
  306. prompt "uClibc embedded C library"
  307. boolean
  308. select ADK_uclibc
  309. depends on \
  310. !ADK_LINUX_SPARC64 && \
  311. !ADK_LINUX_PPC64 && \
  312. !ADK_LINUX_NATIVE
  313. help
  314. http://uclibc.org
  315. config ADK_TARGET_LIB_EGLIBC
  316. prompt "Embedded GNU C library"
  317. boolean
  318. select ADK_eglibc
  319. depends on \
  320. ADK_LINUX_ARM || \
  321. ADK_LINUX_ARMEB || \
  322. ADK_LINUX_MIPS || \
  323. ADK_LINUX_MIPSEL || \
  324. ADK_LINUX_MIPS64 || \
  325. ADK_LINUX_MIPS64EL || \
  326. ADK_LINUX_PPC || \
  327. ADK_LINUX_PPC64 || \
  328. ADK_LINUX_SPARC || \
  329. ADK_LINUX_SPARC64 || \
  330. ADK_LINUX_X86 || \
  331. ADK_LINUX_X86_64
  332. help
  333. http://www.eglibc.org
  334. config ADK_TARGET_LIB_GLIBC
  335. prompt "GNU C library"
  336. boolean
  337. select ADK_glibc
  338. depends on \
  339. ADK_LINUX_ARM || \
  340. ADK_LINUX_ARMEB || \
  341. ADK_LINUX_MIPS || \
  342. ADK_LINUX_MIPSEL || \
  343. ADK_LINUX_MIPS64 || \
  344. ADK_LINUX_MIPS64EL || \
  345. ADK_LINUX_PPC || \
  346. ADK_LINUX_PPC64 || \
  347. ADK_LINUX_SPARC || \
  348. ADK_LINUX_SPARC64 || \
  349. ADK_LINUX_X86 || \
  350. ADK_LINUX_X86_64
  351. help
  352. http://www.gnu.org/libc
  353. config ADK_TARGET_LIB_LIBC
  354. prompt "Native C library"
  355. boolean
  356. select ADK_libc
  357. depends on ADK_LINUX_NATIVE
  358. endchoice
  359. config ADK_TARGET_SUFFIX
  360. string
  361. default "gnueabi" if (ADK_TARGET_LIB_GLIBC || ADK_TARGET_LIB_EGLIBC) && ADK_EABI
  362. default "gnu" if (ADK_TARGET_LIB_GLIBC || ADK_TARGET_LIB_EGLIBC) && !ADK_EABI
  363. default "uclibcgnueabi" if ADK_TARGET_LIB_UCLIBC && ADK_EABI
  364. default "uclibc" if ADK_TARGET_LIB_UCLIBC && !ADK_EABI
  365. default "gnu"
  366. choice
  367. prompt "Target firmware type"
  368. depends on !ADK_CHOOSE_TARGET_SYSTEM && !ADK_CHOOSE_TARGET_ARCH && !ADK_TOOLCHAIN
  369. default ADK_TARGET_ROOTFS_ARCHIVE
  370. config ADK_TARGET_ROOTFS_INITRAMFS
  371. bool "initramfs filesystem"
  372. depends on \
  373. ADK_HARDWARE_QEMU || \
  374. ADK_LINUX_MIPS64EL || \
  375. ADK_LINUX_PPC || \
  376. ADK_LINUX_SPARC || \
  377. ADK_LINUX_X86 || \
  378. ADK_LINUX_X86_64 || \
  379. ADK_LINUX_NATIVE
  380. select ADK_KERNEL_BLK_DEV_INITRD
  381. select ADK_KERNEL_RD_XZ
  382. help
  383. create an read-only initramfs system.
  384. config ADK_TARGET_ROOTFS_INITRAMFS_PIGGYBACK
  385. bool "initramfs filesystem included into kernel image"
  386. select ADK_LINUX_INITRAMFS_BUILTIN
  387. depends on \
  388. ADK_HARDWARE_QEMU || \
  389. ADK_LINUX_MIPS64EL || \
  390. ADK_LINUX_PPC || \
  391. ADK_LINUX_SPARC || \
  392. ADK_LINUX_X86 || \
  393. ADK_LINUX_X86_64 || \
  394. ADK_LINUX_NATIVE
  395. help
  396. create an read-only initramfs system.
  397. config ADK_TARGET_ROOTFS_SQUASHFS
  398. bool "Compressed read-only root filesystem (squashfs)"
  399. select ADK_KERNEL_SQUASHFS
  400. depends on ADK_TARGET_WITH_MTD
  401. help
  402. highly compressed read-only filesystem for MTD flash systems.
  403. config ADK_TARGET_ROOTFS_YAFFS
  404. bool "YAFFS2 root filesystem (NAND)"
  405. select ADK_KERNEL_MISC_FILESYSTEMS
  406. select ADK_KERNEL_YAFFS_FS
  407. select ADK_KERNEL_YAFFS_YAFFS2
  408. select ADK_KERNEL_YAFFS_AUTO_YAFFS2
  409. depends on ADK_TARGET_WITH_NAND
  410. help
  411. Root filesystem on NAND flash with YAFFS2.
  412. config ADK_TARGET_ROOTFS_NFSROOT
  413. bool "NFS root"
  414. select ADK_KERNEL_NETWORK_FILESYSTEMS
  415. select ADK_KERNEL_SUNRPC
  416. select ADK_KERNEL_NFS_FS
  417. select ADK_KERNEL_NFS_V3
  418. select ADK_KERNEL_ROOT_NFS
  419. select ADK_KERNEL_NFS_COMMON
  420. select ADK_KERNEL_IP_PNP
  421. select ADK_KERNEL_IP_PNP_DHCP
  422. depends on !ADK_HARDWARE_QEMU
  423. help
  424. Root filesystem mounted via NFS. (DHCP)
  425. config ADK_TARGET_ROOTFS_USB
  426. bool "Boot from USB stick"
  427. select ADK_KERNEL_NLS
  428. select ADK_KERNEL_SCSI
  429. select ADK_KERNEL_BLK_DEV_SD
  430. select ADK_KERNEL_USB
  431. select ADK_KERNEL_USB_EHCI_HCD
  432. select ADK_KERNEL_USB_OHCI_HCD
  433. select ADK_KERNEL_USB_UHCI_HCD
  434. select ADK_KERNEL_USB_STORAGE
  435. select ADK_KERNEL_EXT2_FS
  436. depends on ADK_TARGET_WITH_USB_BOOT
  437. help
  438. Boot system from USB stick.
  439. config ADK_TARGET_ROOTFS_CF
  440. bool "read-write filesystem for compact flash"
  441. depends on ADK_TARGET_WITH_CF
  442. select ADK_KERNEL_EXT2_FS
  443. select ADK_KERNEL_SCSI
  444. help
  445. Use this option if you have a compact flash based system.
  446. (ext2 filesystem is used.)
  447. config ADK_TARGET_ROOTFS_MMC
  448. bool "read-write filesystem for mmc/sdcard"
  449. depends on ADK_TARGET_WITH_MMC
  450. select ADK_KERNEL_EXT2_FS
  451. select ADK_KERNEL_SCSI
  452. help
  453. Use this option if you have a MMC/SDCARD based system.
  454. (ext2 filesystem is used.)
  455. config ADK_TARGET_ROOTFS_ARCHIVE
  456. bool "Archive usable for different filesystems"
  457. help
  458. Use this option if your root filesystem is ext2/ext3/ext4/xfs.
  459. endchoice
  460. choice
  461. prompt "Root filesystem type"
  462. depends on ADK_TARGET_ROOTFS_ARCHIVE
  463. default ADK_TARGET_ROOT_EXT2_FS
  464. config ADK_TARGET_ROOT_EXT2
  465. boolean
  466. prompt "EXT2 filesystem"
  467. select ADK_KERNEL_EXT2_FS
  468. help
  469. Compile EXT2 filesystem into kernel and use it as root filesystem.
  470. config ADK_TARGET_ROOT_EXT3
  471. boolean
  472. prompt "EXT3 filesystem"
  473. select ADK_KERNEL_EXT3_FS
  474. help
  475. Compile EXT3 filesystem into kernel and use it as root filesystem.
  476. config ADK_TARGET_ROOT_EXT4
  477. boolean
  478. prompt "EXT4 filesystem"
  479. select ADK_KERNEL_EXT4_FS
  480. help
  481. Compile EXT4 filesystem into kernel and use it as root filesystem.
  482. config ADK_TARGET_ROOT_XFS
  483. boolean
  484. prompt "XFS filesystem"
  485. select ADK_KERNEL_XFS_FS
  486. help
  487. Compile XFS filesystem into kernel and use it as root filesystem.
  488. endchoice
  489. config ADK_TARGET_ROOTFS
  490. string
  491. default "xfs" if ADK_TARGET_ROOT_XFS
  492. default "ext2" if ADK_TARGET_ROOT_EXT2
  493. default "ext3" if ADK_TARGET_ROOT_EXT3
  494. default "ext4" if ADK_TARGET_ROOT_EXT4
  495. help
  496. config ADK_PACKAGE_SUFFIX
  497. string
  498. default "ipk" if ADK_TARGET_PACKAGE_IPKG
  499. default "tar.gz" if ADK_TARGET_PACKAGE_TGZ
  500. help
  501. choice
  502. prompt "Target package format"
  503. default ADK_TARGET_PACKAGE_IPKG
  504. depends on !ADK_CHOOSE_TARGET_SYSTEM && !ADK_CHOOSE_TARGET_ARCH
  505. config ADK_TARGET_PACKAGE_IPKG
  506. boolean
  507. prompt "ipkg"
  508. select BUSYBOX_IPKG
  509. help
  510. Create ipkg packages and use ipkg package management on the target.
  511. config ADK_TARGET_PACKAGE_TGZ
  512. boolean
  513. prompt "tar archive"
  514. help
  515. Create compressed tar archives of packages.
  516. Pre- and post install scripts will be executed in the target
  517. directory. There will be no package manager installed onto the target.
  518. endchoice
  519. source "target/config/Config.in.tools"