Config.in.legacy 46 KB

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