Config.in.legacy 34 KB

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