Config.in.legacy 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983
  1. #
  2. # Config.in.legacy - support for backward compatibility
  3. #
  4. # When an existing Config.in symbol is removed, it should be added again in
  5. # this file, and take appropriate action to approximate backward compatibility.
  6. # This will make the transition for the user more convenient.
  7. #
  8. # When adding legacy symbols to this file, add them to the front. The oldest
  9. # symbols will be removed again after about two years.
  10. #
  11. # The symbol should be copied as-is from the place where it was previously
  12. # defined, but the help text should be removed or replaced with something that
  13. # explains how to fix it.
  14. #
  15. # For bool options, the old symbol should select BR2_LEGACY, so that the user
  16. # is informed at build-time about selected legacy options.
  17. # If there is an equivalent (set of) new symbols, these should be select'ed by
  18. # the old symbol for backwards compatibility.
  19. #
  20. # For string options, it is not possible to directly select another symbol. In
  21. # this case, a hidden wrap bool option has to be added, that defaults to y if
  22. # the old string is not set at its default value. The wrap symbol should select
  23. # BR2_LEGACY.
  24. # If the original symbol has been renamed, the new symbol should use the value
  25. # of the old symbol as default. This requires a change outside of
  26. # Config.in.legacy, and this should be clearly marked as such below, so that
  27. # removal of legacy options also include the removal of these external
  28. # references.
  29. #
  30. # [Example: renaming a string option from FOO to BAR]
  31. # original symbol:
  32. # config BR2_FOO_STRING
  33. # string "Some foo string"
  34. #
  35. # becomes:
  36. # config BR2_BAR_STRING
  37. # string "Some bar string"
  38. # default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
  39. #
  40. # and in Config.in.legacy:
  41. # config BR2_FOO_STRING
  42. # string "The foo string has been renamed"
  43. # help
  44. # <suitable help text>
  45. #
  46. # config BR2_FOO_STRING_WRAP
  47. # bool
  48. # default y if BR2_FOO_STRING != ""
  49. # select BR2_LEGACY
  50. #
  51. # # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
  52. #
  53. # [End of example]
  54. config BR2_LEGACY
  55. bool
  56. help
  57. This option is selected automatically when your old .config uses an
  58. option that no longer exists in current buildroot. In that case, the
  59. build will fail. Look for config options which are selected in the
  60. menu below: they no longer exist and should be replaced by something
  61. else.
  62. # This comment fits exactly in a 80-column display
  63. comment "Legacy detected: check the content of the menu below"
  64. depends on BR2_LEGACY
  65. menu "Legacy config options"
  66. if BR2_LEGACY
  67. comment "----------------------------------------------------"
  68. comment "Your old configuration uses legacy options that no "
  69. comment "longer exist in buildroot, as indicated in the menu "
  70. comment "below. As long as these options stay selected, or in"
  71. comment "case of string options are non-empty, the build "
  72. comment "will fail. "
  73. comment "* "
  74. comment "Where possible, an automatic conversion from old to "
  75. comment "new symbols has been performed. Before making any "
  76. comment "change in this legacy menu, make sure to exit the "
  77. comment "configuration editor a first time and save the "
  78. comment "configuration. Otherwise, the automatic conversion "
  79. comment "of symbols will be lost. "
  80. comment "* "
  81. comment "After this initial save, reopen the configuration "
  82. comment "editor, inspect the options selected below, read "
  83. comment "their help texts, and verify/update the new "
  84. comment "configuration in the corresponding configuration "
  85. comment "menus. When everything is ok, you can disable the "
  86. comment "legacy options in the menu below. Once you have "
  87. comment "disabled all legacy options, this text will "
  88. comment "disappear and you will be able to start the build. "
  89. comment "* "
  90. comment "Note: at some point in the future, the oldest legacy"
  91. comment "options will be removed, and configuration files "
  92. comment "that still have those options set, will fail to "
  93. comment "build, or run, in unpredictable ways. "
  94. comment "----------------------------------------------------"
  95. endif
  96. ###############################################################################
  97. comment "Legacy options removed in 2014.11"
  98. config BR2_PACKAGE_XLIB_LIBPCIACCESS
  99. bool "xlib-libpciaccess option has been renamed"
  100. depends on BR2_PACKAGE_XORG7
  101. select BR2_LEGACY
  102. select BR2_PACKAGE_LIBPCIACCESS
  103. help
  104. libpciaccess neither depends on X11 nor Xlib. Thus the
  105. package has been renamed BR2_PACKAGE_LIBPCIACCESS
  106. config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
  107. bool "Xceive xc5000 option has been renamed"
  108. select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
  109. help
  110. The Xceive xc5000 option now also handles older firmwares from
  111. Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
  112. from Cresta, who bought Xceive.
  113. config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
  114. bool "Chelsio T4 option has been renamed"
  115. select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
  116. help
  117. The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
  118. has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
  119. to better account for the fact that a T5 variant exists.
  120. config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
  121. bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
  122. help
  123. The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
  124. renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
  125. select it in:
  126. Target packages -> Hardware handling ->
  127. Firmware -> linux-firmware -> WiFi firmware ->
  128. iwlwifi 3160/726x revision to use (revision 7)
  129. config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
  130. bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
  131. help
  132. The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
  133. renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
  134. select it in:
  135. Target packages -> Hardware handling ->
  136. Firmware -> linux-firmware -> WiFi firmware ->
  137. iwlwifi 3160/726x revision to use (revision 8)
  138. ###############################################################################
  139. comment "Legacy options removed in 2014.08"
  140. config BR2_PACKAGE_LIBELF
  141. bool "libelf has been removed"
  142. select BR2_PACKAGE_ELFUTILS
  143. select BR2_LEGACY
  144. help
  145. The libelf package provided an old version of the libelf library
  146. and is deprecated. The libelf library is now provided by the
  147. elfutils package.
  148. config BR2_KERNEL_HEADERS_3_8
  149. bool "kernel headers version 3.8.x are no longer supported"
  150. select BR2_KERNEL_HEADERS_3_9
  151. select BR2_LEGACY
  152. help
  153. Version 3.8.x of the Linux kernel headers have been deprecated
  154. for more than four buildroot releases and are now removed.
  155. As an alternative, version 3.9.x of the headers have been
  156. automatically selected in your configuration.
  157. config BR2_PACKAGE_GETTEXT_TOOLS
  158. bool "support for gettext-tools on target has been removed"
  159. select BR2_LEGACY
  160. help
  161. The option to install the gettext utilities on the target
  162. has been removed. This is not necessary as Buildroot is not
  163. designed to provide a full development environment on the
  164. target. gettext tools should be used on the build machine
  165. instead.
  166. config BR2_PACKAGE_PROCPS
  167. bool "procps has been replaced by procps-ng"
  168. select BR2_PACKAGE_PROCPS_NG
  169. select BR2_LEGACY
  170. help
  171. The procps package has been replaced by the equivalent procps-ng.
  172. config BR2_BINUTILS_VERSION_2_20_1
  173. bool "binutils 2.20.1 has been removed"
  174. select BR2_LEGACY
  175. help
  176. The 2.20.1 version of binutils has been removed. Use a newer
  177. version instead.
  178. config BR2_BINUTILS_VERSION_2_21
  179. bool "binutils 2.21 has been removed"
  180. select BR2_LEGACY
  181. help
  182. The 2.21 version of binutils has been removed. Use a newer
  183. version instead.
  184. config BR2_BINUTILS_VERSION_2_23_1
  185. bool "binutils 2.23.1 has been removed"
  186. select BR2_LEGACY
  187. help
  188. The 2.23.1 version of binutils has been removed. Use a newer
  189. version instead.
  190. config BR2_UCLIBC_VERSION_0_9_32
  191. bool "uclibc 0.9.32 has been removed"
  192. select BR2_LEGACY
  193. help
  194. The 0.9.32 version of uClibc has been removed. Use a newer
  195. version instead.
  196. config BR2_GCC_VERSION_4_3_X
  197. bool "gcc 4.3.x has been removed"
  198. select BR2_LEGACY
  199. help
  200. The 4.3.x version of gcc has been removed. Use a newer
  201. version instead.
  202. config BR2_GCC_VERSION_4_6_X
  203. bool "gcc 4.6.x has been removed"
  204. select BR2_LEGACY
  205. help
  206. The 4.6.x version of gcc has been removed. Use a newer
  207. version instead.
  208. config BR2_GDB_VERSION_7_4
  209. bool "gdb 7.4 has been removed"
  210. select BR2_LEGACY
  211. help
  212. The 7.4 version of gdb has been removed. Use a newer version
  213. instead.
  214. config BR2_GDB_VERSION_7_5
  215. bool "gdb 7.5 has been removed"
  216. select BR2_LEGACY
  217. help
  218. The 7.5 version of gdb has been removed. Use a newer version
  219. instead.
  220. config BR2_BUSYBOX_VERSION_1_19_X
  221. bool "busybox version selection has been removed"
  222. select BR2_LEGACY
  223. help
  224. The possibility of selecting the Busybox version has been
  225. removed. Use the latest version provided by the Busybox
  226. package instead.
  227. config BR2_BUSYBOX_VERSION_1_20_X
  228. bool "busybox version selection has been removed"
  229. select BR2_LEGACY
  230. help
  231. The possibility of selecting the Busybox version has been
  232. removed. Use the latest version provided by the Busybox
  233. package instead.
  234. config BR2_BUSYBOX_VERSION_1_21_X
  235. bool "busybox version selection has been removed"
  236. select BR2_LEGACY
  237. help
  238. The possibility of selecting the Busybox version has been
  239. removed. Use the latest version provided by the Busybox
  240. package instead.
  241. config BR2_PACKAGE_LIBV4L_DECODE_TM6000
  242. bool "decode_tm6000"
  243. select BR2_PACKAGE_LIBV4L_UTILS
  244. select BR2_LEGACY
  245. help
  246. This libv4l option has been deprecated and replaced by a single
  247. option to build all the libv4l utilities.
  248. config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
  249. bool "ir-keytable"
  250. select BR2_PACKAGE_LIBV4L_UTILS
  251. select BR2_LEGACY
  252. help
  253. This libv4l option has been deprecated and replaced by a single
  254. option to build all the libv4l utilities.
  255. config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
  256. bool "v4l2-compliance"
  257. select BR2_PACKAGE_LIBV4L_UTILS
  258. select BR2_LEGACY
  259. help
  260. This libv4l option has been deprecated and replaced by a single
  261. option to build all the libv4l utilities.
  262. config BR2_PACKAGE_LIBV4L_V4L2_CTL
  263. bool "v4l2-ctl"
  264. select BR2_PACKAGE_LIBV4L_UTILS
  265. select BR2_LEGACY
  266. help
  267. This libv4l option has been deprecated and replaced by a single
  268. option to build all the libv4l utilities.
  269. config BR2_PACKAGE_LIBV4L_V4L2_DBG
  270. bool "v4l2-dbg"
  271. select BR2_PACKAGE_LIBV4L_UTILS
  272. select BR2_LEGACY
  273. help
  274. This libv4l option has been deprecated and replaced by a single
  275. option to build all the libv4l utilities.
  276. ###############################################################################
  277. comment "Legacy options removed in 2014.05"
  278. config BR2_PACKAGE_EVTEST_CAPTURE
  279. bool "evtest-capture support removed (dropped since evtest 1.31)"
  280. select BR2_LEGACY
  281. help
  282. Support for evtest-capture has been removed (dropped from
  283. evtest package since version 1.31), use evemu package
  284. instead.
  285. config BR2_KERNEL_HEADERS_3_6
  286. bool "kernel headers version 3.6.x are no longer supported"
  287. select BR2_KERNEL_HEADERS_3_9
  288. select BR2_LEGACY
  289. help
  290. Version 3.6.x of the Linux kernel headers have been deprecated
  291. for more than four buildroot releases and are now removed.
  292. As an alternative, version 3.8.x of the headers have been
  293. automatically selected in your configuration.
  294. config BR2_KERNEL_HEADERS_3_7
  295. bool "kernel headers version 3.7.x are no longer supported"
  296. select BR2_KERNEL_HEADERS_3_9
  297. select BR2_LEGACY
  298. help
  299. Version 3.7.x of the Linux kernel headers have been deprecated
  300. for more than four buildroot releases and are now removed.
  301. As an alternative, version 3.8.x of the headers have been
  302. automatically selected in your configuration.
  303. config BR2_PACKAGE_VALA
  304. bool "vala target package has been removed"
  305. select BR2_LEGACY
  306. help
  307. The 'vala' target package has been removed since it has been
  308. deprecated for more than four buildroot releases.
  309. Note: the host vala package still exists.
  310. config BR2_TARGET_TZ_ZONELIST
  311. default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
  312. config BR2_PACKAGE_TZDATA_ZONELIST
  313. string "tzdata: the timezone list option has been renamed"
  314. help
  315. The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
  316. BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
  317. menu. You'll need to select BR2_TARGET_TZ_INFO.
  318. config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
  319. bool
  320. default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
  321. select BR2_LEGACY
  322. config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
  323. bool "Lua command-line editing none has been renamed"
  324. select BR2_LEGACY
  325. help
  326. The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
  327. renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
  328. it in the corresponding choice.
  329. config BR2_PACKAGE_LUA_INTERPRETER_READLINE
  330. bool "Lua command-line editing using readline has been renamed"
  331. select BR2_LEGACY
  332. help
  333. The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
  334. renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
  335. it in the corresponding choice.
  336. config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
  337. bool "Lua command-line editing using linenoise has been renamed"
  338. select BR2_LEGACY
  339. help
  340. The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
  341. renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
  342. it in the corresponding choice.
  343. config BR2_PACKAGE_DVB_APPS_UTILS
  344. bool "dvb-apps utilities now built by default"
  345. select BR2_LEGACY
  346. help
  347. The dvb-apps utilities are now always built when the dvb-apps
  348. package is selected.
  349. config BR2_KERNEL_HEADERS_SNAP
  350. bool "Local Linux snapshot support removed"
  351. select BR2_LEGACY
  352. help
  353. Support for using a custom snapshot to install the Linux
  354. kernel headers has been removed.
  355. config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
  356. bool "/dev management by udev removed"
  357. select BR2_LEGACY
  358. help
  359. The 'udev' package has been converted to a virtual package.
  360. The providers for this feature are: 'eudev', 'systemd'.
  361. Therefore, if you are not using 'systemd' as init system, you
  362. must choose 'Dynamic using eudev' in the '/dev management'
  363. menu to get the same behaviour as in your old configuration.
  364. If you are using 'systemd', its internal implementation of
  365. 'udev' will be used automatically.
  366. You must also check the packages depending on 'udev' are still
  367. selected.
  368. config BR2_PACKAGE_UDEV
  369. bool "udev is now a virtual package"
  370. select BR2_LEGACY
  371. select BR2_PACKAGE_HAS_UDEV
  372. help
  373. The 'udev' package has been converted to a virtual package.
  374. The providers for this feature are: 'eudev', 'systemd'.
  375. Your old configuration refers to packages depending on 'udev',
  376. either for build or at runtime.
  377. Check that a 'udev' provider is selected. If you are not using
  378. 'systemd' as init system, 'eudev' should be selected, which is
  379. the case if '/dev management' is set to 'Dynamic using eudev'.
  380. If you are using 'systemd', its internal implementation of 'udev'
  381. is used.
  382. config BR2_PACKAGE_UDEV_RULES_GEN
  383. bool "udev rules generation handled by provider"
  384. select BR2_LEGACY
  385. select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
  386. select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
  387. help
  388. The 'udev' package has been converted to a virtual package.
  389. The providers for this feature are: 'eudev', 'systemd'.
  390. If you are not using 'systemd' as init system, udev rules
  391. generation will be handled by 'eudev'. Check that
  392. '/dev management' is set to 'Dynamic using eudev' to get
  393. the same behaviour as in your old configuration.
  394. If you are using 'systemd', it internal implementation of 'udev'
  395. will generate the rules.
  396. config BR2_PACKAGE_UDEV_ALL_EXTRAS
  397. bool "udev extras removed"
  398. select BR2_LEGACY
  399. help
  400. The 'udev' package has been converted to a virtual package.
  401. The providers for this feature are: 'eudev', 'systemd'.
  402. The option to enable the extra features of 'udev' (gudev, ...)
  403. has been removed. These features are automatically enabled in
  404. the 'udev' providers if the dependencies are selected. For
  405. example, selecting 'libglib2' will trigger the build of gudev.
  406. config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
  407. bool "xlib-libpthread-stubs option has been renamed"
  408. depends on BR2_PACKAGE_XORG7
  409. select BR2_LEGACY
  410. select BR2_PACKAGE_LIBPTHREAD_STUBS
  411. help
  412. The pthread stubs neither depend on X11 nor Xlib. Thus the
  413. package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
  414. ###############################################################################
  415. comment "Legacy options removed in 2014.02"
  416. config BR2_sh2
  417. bool "sh2 support removed"
  418. help
  419. Due to an inexistent user base and generally poor Linux
  420. support, the support for the SH2 architecture was removed.
  421. config BR2_sh3
  422. bool "sh3 support removed"
  423. help
  424. Due to an inexistent user base and generally poor Linux
  425. support, the support for the SH3 architecture was removed.
  426. config BR2_sh3eb
  427. bool "sh3eb support removed"
  428. help
  429. Due to an inexistent user base and generally poor Linux
  430. support, the support for the SH3eb architecture was removed.
  431. config BR2_KERNEL_HEADERS_3_1
  432. bool "kernel headers version 3.1.x are no longer supported"
  433. select BR2_KERNEL_HEADERS_3_2
  434. select BR2_LEGACY
  435. help
  436. Version 3.1.x of the Linux kernel headers have been deprecated
  437. for more than four buildroot releases and are now removed.
  438. As an alternative, version 3.2.x of the headers have been
  439. automatically selected in your configuration.
  440. config BR2_KERNEL_HEADERS_3_3
  441. bool "kernel headers version 3.3.x are no longer supported"
  442. select BR2_KERNEL_HEADERS_3_4
  443. select BR2_LEGACY
  444. help
  445. Version 3.3.x of the Linux kernel headers have been deprecated
  446. for more than four buildroot releases and are now removed.
  447. As an alternative, version 3.4.x of the headers have been
  448. automatically selected in your configuration.
  449. config BR2_KERNEL_HEADERS_3_5
  450. bool "kernel headers version 3.5.x are no longer supported"
  451. select BR2_KERNEL_HEADERS_3_9
  452. select BR2_LEGACY
  453. help
  454. Version 3.5.x of the Linux kernel headers have been deprecated
  455. for more than four buildroot releases and are now removed.
  456. As an alternative, version 3.8.x of the headers have been
  457. automatically selected in your configuration.
  458. config BR2_GDB_VERSION_7_2
  459. bool "gdb 7.2.x is no longer supported"
  460. select BR2_GDB_VERSION_7_6
  461. select BR2_LEGACY
  462. help
  463. Version 7.2.x of gdb has been deprecated for more than four
  464. buildroot releases and is now removed. As an alternative, gdb
  465. 7.5.x has been automatically selected in your configuration.
  466. config BR2_GDB_VERSION_7_3
  467. bool "gdb 7.3.x is no longer supported"
  468. select BR2_GDB_VERSION_7_6
  469. select BR2_LEGACY
  470. help
  471. Version 7.3.x of gdb has been deprecated for more than four
  472. buildroot releases and is now removed. As an alternative, gdb
  473. 7.5.x has been automatically selected in your configuration.
  474. config BR2_PACKAGE_CCACHE
  475. bool "ccache target package has been removed"
  476. select BR2_LEGACY
  477. help
  478. The 'ccache' target package has been removed since it has been
  479. deprecated for more than four buildroot releases.
  480. Note: using ccache for speeding up builds is still supported.
  481. config BR2_HAVE_DOCUMENTATION
  482. bool "support for documentation on target has been removed"
  483. select BR2_LEGACY
  484. help
  485. Support for documentation on target has been removed since it has
  486. been deprecated for more than four buildroot releases.
  487. config BR2_PACKAGE_AUTOMAKE
  488. bool "automake target package has been removed"
  489. select BR2_LEGACY
  490. help
  491. The 'automake' target package has been removed since it has been
  492. deprecated for more than four buildroot releases.
  493. Note: the host automake still exists.
  494. config BR2_PACKAGE_AUTOCONF
  495. bool "autoconf target package has been removed"
  496. select BR2_LEGACY
  497. help
  498. The 'autoconf' target package has been removed since it has been
  499. deprecated for more than four buildroot releases.
  500. Note: the host autoconf still exists.
  501. config BR2_PACKAGE_XSTROKE
  502. bool "xstroke has been removed"
  503. select BR2_LEGACY
  504. help
  505. The 'xstroke' package has been removed since it has been
  506. deprecated for more than four buildroot releases.
  507. config BR2_PACKAGE_LZMA
  508. bool "lzma target package has been removed"
  509. select BR2_LEGACY
  510. help
  511. The 'lzma' target package has been removed since it has been
  512. deprecated for more than four buildroot releases.
  513. Note: generating lzma-compressed rootfs images is still supported.
  514. config BR2_PACKAGE_TTCP
  515. bool "ttcp has been removed"
  516. select BR2_LEGACY
  517. help
  518. The 'ttcp' package has been removed since it has been
  519. deprecated for more than four buildroot releases.
  520. config BR2_PACKAGE_LIBNFC_LLCP
  521. bool "libnfc-llcp has been replaced by libllcp"
  522. select BR2_LEGACY
  523. select BR2_PACKAGE_LIBLLCP
  524. help
  525. The 'libnfc-llcp' package has been removed since upstream renamed
  526. to 'libllcp'. We have added a new package for 'libllcp' and bumped
  527. the version at the same time.
  528. config BR2_PACKAGE_MYSQL_CLIENT
  529. bool "MySQL client renamed to MySQL"
  530. select BR2_LEGACY
  531. select BR2_PACKAGE_MYSQL
  532. help
  533. The option has been renamed BR2_PACKAGE_MYSQL
  534. config BR2_PACKAGE_SQUASHFS3
  535. bool "squashfs3 has been removed"
  536. select BR2_LEGACY
  537. select BR2_PACKAGE_SQUASHFS
  538. help
  539. The 'squashfs3' package has been removed since it has been
  540. deprecated for more than four buildroot releases. Package
  541. 'squashfs' (4) has been selected automatically as replacement.
  542. config BR2_TARGET_ROOTFS_SQUASHFS3
  543. bool "squashfs3 rootfs support has been removed"
  544. select BR2_LEGACY
  545. help
  546. Together with the removal of the squashfs3 package, support
  547. for squashfs3 root filesystems has been removed too. Squashfs
  548. root filesystems will automatically use squashfs4 now.
  549. config BR2_PACKAGE_NETKITBASE
  550. bool "netkitbase has been removed"
  551. select BR2_LEGACY
  552. help
  553. The 'netkitbase' package has been removed since it has been
  554. deprecated since 2012.11. This package provided 'inetd'
  555. which is replaced by 'xinet' and 'ping' which is replaced by
  556. 'busybox' or 'fping'.
  557. config BR2_PACKAGE_NETKITTELNET
  558. bool "netkittelnet has been removed"
  559. select BR2_LEGACY
  560. help
  561. The 'netkittelnet' package has been removed since it has
  562. been deprecated since 2012.11. 'busybox' provides a telnet
  563. client and should be used instead.
  564. config BR2_PACKAGE_LUASQL
  565. bool "luasql has been replaced by luasql-sqlite3"
  566. select BR2_PACKAGE_LUASQL_SQLITE3
  567. select BR2_LEGACY
  568. help
  569. The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
  570. config BR2_PACKAGE_LUACJSON
  571. bool "luacjson has been replaced by lua-cjson"
  572. select BR2_PACKAGE_LUA_CJSON
  573. select BR2_LEGACY
  574. help
  575. The option has been renamed BR2_PACKAGE_LUA_CJSON.
  576. ###############################################################################
  577. comment "Legacy options removed in 2013.11"
  578. config BR2_PACKAGE_LVM2_DMSETUP_ONLY
  579. bool "lvm2's 'dmsetup only' option removed"
  580. select BR2_LEGACY
  581. help
  582. The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
  583. led to problems with other packages that need the full lvm2
  584. suite. Therefore, the option has been replaced with the positive
  585. BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
  586. # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
  587. # in order to automatically propagate old configs
  588. config BR2_PACKAGE_QT_JAVASCRIPTCORE
  589. bool "qt javascriptcore option removed"
  590. select BR2_LEGACY
  591. help
  592. The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
  593. force the activation or disabling of the JIT compiler in the
  594. Qt Javascript interpreter. However, the JIT compiler is not
  595. available for all architectures, so forcing its activation
  596. does not always work. Moreover, Qt knows by itself for which
  597. architectures JIT support is possible, and will
  598. automatically enable it if possible.
  599. Therefore, this option was in fact useless, and causing
  600. build problems when enabled on architectures for which the
  601. JIT support was not available. It has been removed, and
  602. there is no replacement: Qt will enable JIT at compile time
  603. when possible.
  604. config BR2_PACKAGE_MODULE_INIT_TOOLS
  605. bool "module-init-tools replaced by kmod"
  606. select BR2_PACKAGE_KMOD
  607. select BR2_PACKAGE_KMOD_TOOLS
  608. select BR2_LEGACY
  609. help
  610. The 'module-init-tools' package has been removed, since it
  611. has been depracated upstream and replaced by 'kmod'.
  612. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
  613. string "u-boot: the git repository URL option has been renamed"
  614. help
  615. The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
  616. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
  617. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
  618. bool
  619. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
  620. select BR2_LEGACY
  621. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
  622. # boot/uboot/Config.in
  623. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
  624. string "u-boot: the git repository version option has been renamed"
  625. help
  626. The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
  627. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
  628. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
  629. bool
  630. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
  631. select BR2_LEGACY
  632. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
  633. # boot/uboot/Config.in
  634. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
  635. string "linux: the git repository URL option has been renamed"
  636. help
  637. The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
  638. been renamed to
  639. BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
  640. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
  641. bool
  642. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
  643. select BR2_LEGACY
  644. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
  645. # linux/Config.in
  646. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
  647. string "linux: the git repository version option has been renamed"
  648. help
  649. The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
  650. been renamed to
  651. BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
  652. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
  653. bool
  654. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
  655. select BR2_LEGACY
  656. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
  657. # linux/Config.in
  658. ###############################################################################
  659. comment "Legacy options removed in 2013.08"
  660. config BR2_ARM_OABI
  661. bool "ARM OABI support has been removed"
  662. select BR2_LEGACY
  663. help
  664. The support for the ARM OABI was deprecated since a while,
  665. and has been removed completely from Buildroot. It is also
  666. deprecated in upstream gcc, since gcc 4.7. People should
  667. switch to EABI instead, which should not be a problem as
  668. long as you don't have pre-built OABI binaries in your
  669. system that you can't recompile.
  670. config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
  671. bool "dosfstools dosfsck renamed to fsck.fat"
  672. select BR2_LEGACY
  673. select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
  674. help
  675. dosfsck was renamed upstream to fsck.fat for consistency.
  676. config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
  677. bool "dosfstools dosfslabel renamed to fatlabel"
  678. select BR2_LEGACY
  679. select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
  680. help
  681. doslabel was renamed upstream to fatlabel for consistency.
  682. config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
  683. bool "dosfstools mkdosfs renamed to mkfs.fat"
  684. select BR2_LEGACY
  685. select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
  686. help
  687. mkdosfs was renamed upstream to mkfs.fat for consistency.
  688. config BR2_ELF2FLT
  689. bool "the elf2flt option has been renamed"
  690. select BR2_LEGACY
  691. help
  692. The BR2_ELF2FLT option has been renamed to
  693. BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
  694. the package infrastructure.
  695. config BR2_VFP_FLOAT
  696. bool "the ARM VFP floating point option has been renamed"
  697. select BR2_LEGACY
  698. help
  699. Due to a major refactoring of the floating-point handling of
  700. the ARM architecture support, the BR2_VFP_FLOAT option has
  701. been replaced with a choice of options that allows to select
  702. between various VFP versions/capabilities.
  703. config BR2_PACKAGE_GCC_TARGET
  704. bool "gcc on the target filesystem has been removed"
  705. select BR2_LEGACY
  706. help
  707. The support for gcc in the target filesystem was deprecated
  708. since a while, and has been removed completely from Buildroot.
  709. See Buildroot's documentation for more explanations.
  710. config BR2_HAVE_DEVFILES
  711. bool "development files in target filesystem has been removed"
  712. select BR2_LEGACY
  713. help
  714. The installation of the development files in the target
  715. filesystem was deprecated since a while, and has been removed
  716. completely from Buildroot.
  717. See Buildroot's documentation for more explanations.
  718. ###############################################################################
  719. comment "Legacy options removed in 2013.05"
  720. config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
  721. bool "Realtek 8192 replaced by Realtek 81xx"
  722. select BR2_LEGACY
  723. select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
  724. help
  725. Now covers the whole Realtek 81xx familly: 8188/8192.
  726. config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
  727. bool "Realtek 8712 replaced by Realtek 87xx"
  728. select BR2_LEGACY
  729. select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
  730. help
  731. Now covers the whole Realtek 87xx familly: 8712/8723.
  732. ###############################################################################
  733. comment "Legacy options removed in 2013.02"
  734. config BR2_sa110
  735. bool "sa110 ARM target switched to strongarm"
  736. select BR2_LEGACY
  737. select BR2_strongarm
  738. help
  739. The SA110 is the same as a generic StrongARM, it just differs
  740. in speed, peripherals and cache.
  741. config BR2_sa1100
  742. bool "sa1100 ARM target switched to strongarm"
  743. select BR2_LEGACY
  744. select BR2_strongarm
  745. help
  746. The SA1100 is the same as a generic StrongARM, it just differs
  747. in speed, peripherals and cache.
  748. config BR2_PACKAGE_GDISK
  749. bool "gdisk has been replaced by gptfdisk"
  750. select BR2_LEGACY
  751. select BR2_PACKAGE_GPTFDISK
  752. help
  753. The option has been renamed BR2_PACKAGE_GPTFDISK.
  754. config BR2_PACKAGE_GDISK_GDISK
  755. bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
  756. select BR2_LEGACY
  757. select BR2_PACKAGE_GPTFDISK
  758. select BR2_PACKAGE_GPTFDISK_GDISK
  759. help
  760. The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
  761. config BR2_PACKAGE_GDISK_SGDISK
  762. bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
  763. select BR2_LEGACY
  764. select BR2_PACKAGE_GPTFDISK
  765. select BR2_PACKAGE_GPTFDISK_SGDISK
  766. help
  767. The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
  768. config BR2_PACKAGE_GDB_HOST
  769. bool "gdb for the host option has been renamed"
  770. select BR2_PACKAGE_HOST_GDB
  771. select BR2_LEGACY
  772. help
  773. Due to the conversion of gdb to the package infrastructure,
  774. the BR2_PACKAGE_GDB_HOST option has been renamed
  775. BR2_PACKAGE_HOST_GDB.
  776. config BR2_PACKAGE_DIRECTB_DITHER_RGB16
  777. bool "DirectFB RGB16 dithering option has been renamed"
  778. select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
  779. select BR2_LEGACY
  780. help
  781. The option has been renamed
  782. BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
  783. config BR2_PACKAGE_DIRECTB_TESTS
  784. bool "DirectFB Tests option has been renamed"
  785. select BR2_PACKAGE_DIRECTFB_TESTS
  786. select BR2_LEGACY
  787. help
  788. The option has been renamed
  789. BR2_PACKAGE_DIRECTFB_TESTS.
  790. ###############################################################################
  791. comment "Legacy options removed in 2012.11"
  792. config BR2_PACKAGE_CUSTOMIZE
  793. bool "customize package has been removed"
  794. select BR2_LEGACY
  795. help
  796. The 'customize' special package has been removed. Instead,
  797. we recommend to create either your own packages, or use a
  798. post-build script to customize your root filesystem. See
  799. Buildroot's documentation for more details.
  800. config BR2_PACKAGE_XSERVER_xorg
  801. bool "X.org modular server"
  802. select BR2_LEGACY
  803. select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
  804. help
  805. The option has been renamed
  806. BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
  807. config BR2_PACKAGE_XSERVER_tinyx
  808. bool "KDrive / TinyX server"
  809. select BR2_LEGACY
  810. select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
  811. help
  812. The option has been renamed
  813. BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
  814. config BR2_PACKAGE_PTHREAD_STUBS
  815. bool "pthread-stubs option has been renamed"
  816. select BR2_LEGACY
  817. select BR2_PACKAGE_LIBPTHREAD_STUBS
  818. help
  819. For consistency reason, the pthread-stubs package has been
  820. renamed to libpthread-stubs.
  821. ###############################################################################
  822. comment "Legacy options removed in 2012.08"
  823. config BR2_PACKAGE_GETTEXT_STATIC
  824. bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
  825. select BR2_LEGACY
  826. help
  827. To build a static gettext library, select BR2_PREFER_STATIC_LIB.
  828. config BR2_PACKAGE_LIBINTL
  829. bool "libintl"
  830. select BR2_LEGACY
  831. select BR2_PACKAGE_GETTEXT
  832. help
  833. libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
  834. only installs the library, not the executables.
  835. config BR2_PACKAGE_INPUT_TOOLS_EVTEST
  836. bool "input-tools evtest is now a separate package evtest"
  837. select BR2_LEGACY
  838. select BR2_PACKAGE_EVTEST
  839. help
  840. The evtest program from input-tools is now a separate package.
  841. config BR2_BFIN_FDPIC
  842. bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
  843. select BR2_BINFMT_FDPIC
  844. select BR2_LEGACY
  845. config BR2_BFIN_FLAT
  846. bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
  847. select BR2_BINFMT_FLAT
  848. select BR2_LEGACY
  849. endmenu