Config.in.legacy 42 KB

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