Config.in.legacy 46 KB

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