Config.in.legacy 41 KB

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