Config.in.legacy 38 KB

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