Config.in.legacy 39 KB

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