Config.in.legacy 41 KB

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