Config.in.legacy 34 KB

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