Config.in.legacy 41 KB

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