Config.in.legacy 45 KB

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