Config.in.legacy 41 KB

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