Config.in.legacy 34 KB

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