Config.in.legacy 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694
  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. # It is not possible to select an option that is part of a choice. In that
  20. # case, the new option should use the old symbol as default. This requires a
  21. # change outside of Config.in.legacy, and this should be clearly marked as such
  22. # in a comment, so that removal of legacy options also include the removal of
  23. # these external references.
  24. #
  25. # [Example: renaming a bool option that is part of a choice from FOO to BAR]
  26. # original choice:
  27. # choice
  28. # prompt "Choose foobar"
  29. # config BR2_FOO_1
  30. # bool "foobar 1"
  31. # config BR2_FOO_2
  32. # bool "foobar 2"
  33. # endchoice
  34. #
  35. # becomes:
  36. # choice
  37. # prompt "Choose foobar"
  38. # default BR2_BAR_1 if BR2_FOO_1 # legacy
  39. # default BR2_BAR_2 if BR2_FOO_2 # legacy
  40. # config BR2_BAR_1
  41. # bool "foobar 1"
  42. # config BR2_BAR_2
  43. # bool "foobar 2"
  44. # endchoice
  45. #
  46. # and in Config.in.legacy:
  47. # config BR2_FOO_1
  48. # bool "foobar 1 has been renamed"
  49. # help
  50. # <suitable help text>
  51. # # Note: BR2_FOO_1 is still referenced from package/foo/Config.in
  52. # config BR2_FOO_2
  53. # bool "foobar 2 has been renamed"
  54. # help
  55. # <suitable help text>
  56. # # Note: BR2_FOO_2 is still referenced from package/foo/Config.in
  57. #
  58. # [End of example]
  59. #
  60. # For string options, it is not possible to directly select another symbol. In
  61. # this case, a hidden wrap bool option has to be added, that defaults to y if
  62. # the old string is not set at its default value. The wrap symbol should select
  63. # BR2_LEGACY.
  64. # If the original symbol has been renamed, the new symbol should use the value
  65. # of the old symbol as default. Like for choice options, a comment should be
  66. # added to flag that the symbol is still used in another file.
  67. #
  68. # [Example: renaming a string option from FOO to BAR]
  69. # original symbol:
  70. # config BR2_FOO_STRING
  71. # string "Some foo string"
  72. #
  73. # becomes:
  74. # config BR2_BAR_STRING
  75. # string "Some bar string"
  76. # default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
  77. #
  78. # and in Config.in.legacy:
  79. # config BR2_FOO_STRING
  80. # string "The foo string has been renamed"
  81. # help
  82. # <suitable help text>
  83. #
  84. # config BR2_FOO_STRING_WRAP
  85. # bool
  86. # default y if BR2_FOO_STRING != ""
  87. # select BR2_LEGACY
  88. #
  89. # # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
  90. #
  91. # [End of example]
  92. config BR2_SKIP_LEGACY
  93. bool
  94. option env="SKIP_LEGACY"
  95. if !BR2_SKIP_LEGACY
  96. config BR2_LEGACY
  97. bool
  98. help
  99. This option is selected automatically when your old .config uses an
  100. option that no longer exists in current buildroot. In that case, the
  101. build will fail. Look for config options which are selected in the
  102. menu below: they no longer exist and should be replaced by something
  103. else.
  104. # This comment fits exactly in a 80-column display
  105. comment "Legacy detected: check the content of the menu below"
  106. depends on BR2_LEGACY
  107. menu "Legacy config options"
  108. if BR2_LEGACY
  109. comment "----------------------------------------------------"
  110. comment "Your old configuration uses legacy options that no "
  111. comment "longer exist in buildroot, as indicated in the menu "
  112. comment "below. As long as these options stay selected, or in"
  113. comment "case of string options are non-empty, the build "
  114. comment "will fail. "
  115. comment "* "
  116. comment "Where possible, an automatic conversion from old to "
  117. comment "new symbols has been performed. Before making any "
  118. comment "change in this legacy menu, make sure to exit the "
  119. comment "configuration editor a first time and save the "
  120. comment "configuration. Otherwise, the automatic conversion "
  121. comment "of symbols will be lost. "
  122. comment "* "
  123. comment "After this initial save, reopen the configuration "
  124. comment "editor, inspect the options selected below, read "
  125. comment "their help texts, and verify/update the new "
  126. comment "configuration in the corresponding configuration "
  127. comment "menus. When everything is ok, you can disable the "
  128. comment "legacy options in the menu below. Once you have "
  129. comment "disabled all legacy options, this text will "
  130. comment "disappear and you will be able to start the build. "
  131. comment "* "
  132. comment "Note: at some point in the future, the oldest legacy"
  133. comment "options will be removed, and configuration files "
  134. comment "that still have those options set, will fail to "
  135. comment "build, or run, in unpredictable ways. "
  136. comment "----------------------------------------------------"
  137. endif
  138. ###############################################################################
  139. comment "Legacy options removed in 2017.02"
  140. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC
  141. bool "gst1-plugins-bad webrtc renamed to webrtcdsp"
  142. select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTCDSP
  143. select BR2_LEGACY
  144. help
  145. The WebRTC plugin in GStreamer 1.x has always been named
  146. webrtcdsp, but was wrongly introduced in Buildroot under the
  147. name webrtc. Therefore, we have renamed the option to match
  148. the actual name of the GStreamer plugin.
  149. config BR2_PACKAGE_SPICE_CLIENT
  150. bool "spice client support removed"
  151. select BR2_LEGACY
  152. help
  153. Spice client support has been removed upstream. The
  154. functionality now lives in the spice-gtk widget and
  155. virt-viewer.
  156. config BR2_PACKAGE_SPICE_GUI
  157. bool "spice gui support removed"
  158. select BR2_LEGACY
  159. help
  160. Spice gui support has been removed upstream. The
  161. functionality now lives in the spice-gtk widget and
  162. virt-viewer.
  163. config BR2_PACKAGE_SPICE_TUNNEL
  164. bool "spice network redirection removed"
  165. select BR2_LEGACY
  166. help
  167. Spice network redirection, aka tunnelling has been removed
  168. upstream.
  169. config BR2_PACKAGE_PERL_DB_FILE
  170. bool "perl-db-file removed"
  171. select BR2_LEGACY
  172. select BR2_PACKAGE_BERKELEYDB
  173. select BR2_PACKAGE_PERL
  174. help
  175. DB_File can be built as a core Perl module, so the separate
  176. perl-db-file package has been removed.
  177. config BR2_KERNEL_HEADERS_4_7
  178. bool "kernel headers version 4.7.x are no longer supported"
  179. select BR2_KERNEL_HEADERS_4_4
  180. select BR2_LEGACY
  181. help
  182. Version 4.7.x of the Linux kernel headers are no longer
  183. maintained upstream and are now removed. As an alternative,
  184. version 4.4.x of the headers have been automatically
  185. selected in your configuration.
  186. config BR2_KERNEL_HEADERS_4_6
  187. bool "kernel headers version 4.6.x are no longer supported"
  188. select BR2_KERNEL_HEADERS_4_4
  189. select BR2_LEGACY
  190. help
  191. Version 4.6.x of the Linux kernel headers are no longer
  192. maintained upstream and are now removed. As an alternative,
  193. version 4.4.x of the headers have been automatically
  194. selected in your configuration.
  195. config BR2_KERNEL_HEADERS_4_5
  196. bool "kernel headers version 4.5.x are no longer supported"
  197. select BR2_KERNEL_HEADERS_4_4
  198. select BR2_LEGACY
  199. help
  200. Version 4.5.x of the Linux kernel headers are no longer
  201. maintained upstream and are now removed. As an alternative,
  202. version 4.4.x of the headers have been automatically
  203. selected in your configuration.
  204. config BR2_KERNEL_HEADERS_3_14
  205. bool "kernel headers version 3.14.x are no longer supported"
  206. select BR2_KERNEL_HEADERS_3_12
  207. select BR2_LEGACY
  208. help
  209. Version 3.14.x of the Linux kernel headers are no longer
  210. maintained upstream and are now removed. As an alternative,
  211. version 3.12.x of the headers have been automatically
  212. selected in your configuration.
  213. config BR2_TOOLCHAIN_EXTERNAL_MUSL_CROSS
  214. bool "musl-cross 1.1.12 toolchain removed"
  215. select BR2_LEGACY
  216. help
  217. The support for the prebuilt toolchain based on the Musl C
  218. library provided by the musl-cross project has been removed.
  219. Upstream doesn't provide any prebuilt toolchain anymore, use the
  220. Buildroot toolchain instead.
  221. config BR2_UCLIBC_INSTALL_TEST_SUITE
  222. bool "uClibc tests now in uclibc-ng-test"
  223. select BR2_LEGACY
  224. select BR2_PACKAGE_UCLIBC_NG_TEST
  225. help
  226. The test suite of the uClibc C library has been moved into a
  227. separate package, uclibc-ng-test.
  228. config BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
  229. bool "Blackfin.uclinux.org 2014R1 toolchain removed"
  230. select BR2_LEGACY
  231. help
  232. The ADI Blackfin toolchain has many bugs which are fixed in
  233. more recent gcc and uClibc-ng releases. Use the Buildroot
  234. toolchain instead.
  235. config BR2_PACKAGE_MAKEDEVS
  236. bool "makedevs removed"
  237. select BR2_LEGACY
  238. help
  239. The makedevs tool is part of busybox. The Buildroot fork
  240. should not be used outside of the Buildroot infrastructure.
  241. config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV7A
  242. bool "Arago ARMv7 2011.09 removed"
  243. select BR2_LEGACY
  244. help
  245. The Arago toolchains are every old and not updated anymore.
  246. config BR2_TOOLCHAIN_EXTERNAL_ARAGO_ARMV5TE
  247. bool "Arago ARMv5 2011.09 removed"
  248. select BR2_LEGACY
  249. help
  250. The Arago toolchains are every old and not updated anymore.
  251. config BR2_PACKAGE_SNOWBALL_HDMISERVICE
  252. bool "snowball-hdmiservice removed"
  253. select BR2_LEGACY
  254. help
  255. We no longer have support for the Snowball platform in
  256. Buildroot, so this package was no longer useful.
  257. config BR2_PACKAGE_SNOWBALL_INIT
  258. bool "snowball-init removed"
  259. select BR2_LEGACY
  260. help
  261. We no longer have support for the Snowball platform in
  262. Buildroot, so this package was no longer useful.
  263. config BR2_GDB_VERSION_7_9
  264. bool "gdb 7.9 has been removed"
  265. select BR2_LEGACY
  266. help
  267. The 7.9 version of gdb has been removed. Use a newer version
  268. instead.
  269. ###############################################################################
  270. comment "Legacy options removed in 2016.11"
  271. config BR2_PACKAGE_PHP_SAPI_CLI_CGI
  272. bool "PHP CGI and CLI options are now seperate"
  273. select BR2_PACKAGE_PHP_SAPI_CLI
  274. select BR2_PACKAGE_PHP_SAPI_CGI
  275. select BR2_LEGACY
  276. help
  277. The PHP Interface options have been split up into a
  278. separate option for each interface.
  279. config BR2_PACKAGE_PHP_SAPI_CLI_FPM
  280. bool "PHP CLI and FPM options are now separate"
  281. select BR2_PACKAGE_PHP_SAPI_CLI
  282. select BR2_PACKAGE_PHP_SAPI_FPM
  283. select BR2_LEGACY
  284. help
  285. The PHP Interface options have been split up into a
  286. separate option for each interface.
  287. config BR2_PACKAGE_WVSTREAMS
  288. bool "wvstreams removed"
  289. select BR2_LEGACY
  290. help
  291. wvstreams is not maintained anymore since about 2009. It also
  292. doesn't build anymore with recent compilers (GCC 5+).
  293. config BR2_PACKAGE_WVDIAL
  294. bool "wvdial removed"
  295. select BR2_LEGACY
  296. help
  297. wvdial is not maintained anymore since about 2009. It also
  298. doesn't build anymore with recent compilers (GCC 5+).
  299. config BR2_PACKAGE_WEBKITGTK24
  300. bool "webkitgtk 2.4.x removed"
  301. select BR2_LEGACY
  302. help
  303. This legacy package only existed because some other packages
  304. depended on that specific version of webkitgtk. However, the
  305. other packages have been fixed. webkitgtk 2.4 is full of
  306. security issues so it needs to be removed.
  307. config BR2_PACKAGE_TORSMO
  308. bool "torsmo removed"
  309. select BR2_LEGACY
  310. help
  311. torsmo has been unmaintained for a long time, and nobody
  312. seems to be interested in it.
  313. config BR2_PACKAGE_SSTRIP
  314. bool "sstrip removed"
  315. select BR2_LEGACY
  316. help
  317. sstrip is unmaintained and potentially harmful. It doesn't
  318. save so much compared to normal binutils strip, and there is
  319. a big risk of binaries that don't work. Use normal strip
  320. instead.
  321. config BR2_KERNEL_HEADERS_4_3
  322. bool "kernel headers version 4.3.x are no longer supported"
  323. select BR2_KERNEL_HEADERS_4_1
  324. select BR2_LEGACY
  325. help
  326. Version 4.3.x of the Linux kernel headers are no longer
  327. maintained upstream and are now removed. As an alternative,
  328. version 4.1.x of the headers have been automatically
  329. selected in your configuration.
  330. config BR2_KERNEL_HEADERS_4_2
  331. bool "kernel headers version 4.2.x are no longer supported"
  332. select BR2_KERNEL_HEADERS_4_1
  333. select BR2_LEGACY
  334. help
  335. Version 4.2.x of the Linux kernel headers are no longer
  336. maintained upstream and are now removed. As an alternative,
  337. version 4.1.x of the headers have been automatically
  338. selected in your configuration.
  339. config BR2_PACKAGE_KODI_ADDON_XVDR
  340. bool "kodi-addon-xvdr removed"
  341. select BR2_LEGACY
  342. help
  343. According to the github project page:
  344. https://github.com/pipelka/xbmc-addon-xvdr
  345. this package is discontinued.
  346. config BR2_PACKAGE_IPKG
  347. bool "ipkg removed"
  348. select BR2_LEGACY
  349. help
  350. ipkg dates back to the early 2000s when Compaq started the
  351. handhelds.org project and it hasn't seen development since 2006.
  352. Use opkg as a replacement.
  353. config BR2_GCC_VERSION_4_7_X
  354. bool "gcc 4.7.x support removed"
  355. select BR2_LEGACY
  356. help
  357. Support for gcc version 4.7.x has been removed. The current
  358. default version (4.9.x or later) has been selected instead.
  359. config BR2_BINUTILS_VERSION_2_24_X
  360. bool "binutils version 2.24 support removed"
  361. select BR2_LEGACY
  362. help
  363. Support for binutils version 2.24 has been removed. The
  364. current default version (2.26 or later) has been selected
  365. instead.
  366. config BR2_PACKAGE_WESTON_RPI
  367. bool "Weston propietary RPI support is gone"
  368. select BR2_LEGACY
  369. help
  370. Upstream decided the propietary (rpi-userland) weston composer
  371. support wasn't worth the effort so it was removed. Switch to
  372. the open VC4 support.
  373. config BR2_LINUX_KERNEL_TOOL_CPUPOWER
  374. bool "linux-tool cpupower"
  375. depends on BR2_LINUX_KERNEL
  376. select BR2_LEGACY
  377. select BR2_PACKAGE_LINUX_TOOLS_CPUPOWER
  378. help
  379. Linux tool cpupower option was renamed.
  380. config BR2_LINUX_KERNEL_TOOL_PERF
  381. bool "linux-tool perf"
  382. depends on BR2_LINUX_KERNEL
  383. select BR2_LEGACY
  384. select BR2_PACKAGE_LINUX_TOOLS_PERF
  385. help
  386. Linux tool perf option was renamed.
  387. config BR2_LINUX_KERNEL_TOOL_SELFTESTS
  388. bool "linux-tool selftests"
  389. depends on BR2_LINUX_KERNEL
  390. select BR2_LEGACY
  391. select BR2_PACKAGE_LINUX_TOOLS_SELFTESTS
  392. help
  393. Linux tool selftests option was renamed.
  394. config BR2_GCC_VERSION_4_8_ARC
  395. bool "gcc arc option renamed"
  396. select BR2_LEGACY
  397. select BR2_GCC_VERSION_ARC
  398. help
  399. The option that selects the gcc version for the ARC
  400. architecture has been renamed to BR2_GCC_VERSION_ARC.
  401. config BR2_KERNEL_HEADERS_4_0
  402. bool "kernel headers version 4.0.x are no longer supported"
  403. select BR2_KERNEL_HEADERS_3_18
  404. select BR2_LEGACY
  405. help
  406. Version 4.0.x of the Linux kernel headers have been deprecated
  407. for more than four buildroot releases and are now removed.
  408. As an alternative, version 3.18.x of the headers have been
  409. automatically selected in your configuration.
  410. config BR2_KERNEL_HEADERS_3_19
  411. bool "kernel headers version 3.19.x are no longer supported"
  412. select BR2_KERNEL_HEADERS_3_18
  413. select BR2_LEGACY
  414. help
  415. Version 3.19.x of the Linux kernel headers have been deprecated
  416. for more than four buildroot releases and are now removed.
  417. As an alternative, version 3.18.x of the headers have been
  418. automatically selected in your configuration.
  419. config BR2_PACKAGE_LIBEVAS_GENERIC_LOADERS
  420. bool "libevas-generic-loaders package removed"
  421. select BR2_LEGACY
  422. select BR2_PACKAGE_EFL
  423. help
  424. With EFL 1.18, libevas-generic-loaders is now provided by the efl
  425. package.
  426. config BR2_PACKAGE_ELEMENTARY
  427. bool "elementary package removed"
  428. select BR2_LEGACY
  429. select BR2_PACKAGE_EFL
  430. help
  431. With EFL 1.18, elementary is now provided by the efl package.
  432. config BR2_LINUX_KERNEL_CUSTOM_LOCAL
  433. bool "Linux kernel local directory option removed"
  434. help
  435. The option to select a local directory as the source of the Linux
  436. kernel has been removed. It hurts reproducibility of builds.
  437. In case you were using this option during development of your
  438. Linux kernel, use the override mechanism instead.
  439. ###############################################################################
  440. comment "Legacy options removed in 2016.08"
  441. config BR2_PACKAGE_SYSTEMD_COMPAT
  442. bool "systemd compatibility libraries have been removed"
  443. select BR2_LEGACY
  444. help
  445. The systemd option to enable the compatibility libraries has
  446. been removed. Theses libraries have been useless since a few
  447. version, and have been fully dropped from the source since
  448. v230.
  449. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIVEADDER
  450. bool "gst1-plugins-bad liveadder plugin removed"
  451. select BR2_LEGACY
  452. select BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXER
  453. help
  454. The functionality of the liveadder plugin of the
  455. gst1-plugins-bad package has been merged into audiomixer.
  456. config BR2_PACKAGE_LIBFSLVPUWRAP
  457. bool "libfslvpuwrap has been renamed to imx-vpuwrap"
  458. select BR2_LEGACY
  459. select BR2_PACKAGE_IMX_VPUWRAP
  460. help
  461. The libfslvpuwrap has been renamed to match the renamed package.
  462. config BR2_PACKAGE_LIBFSLPARSER
  463. bool "libfslparser has been renamed to imx-parser"
  464. select BR2_LEGACY
  465. select BR2_PACKAGE_IMX_PARSER
  466. help
  467. The libfslparser has been renamed to match the renamed package.
  468. config BR2_PACKAGE_LIBFSLCODEC
  469. bool "libfslcodec has been renamed to imx-codec"
  470. select BR2_LEGACY
  471. select BR2_PACKAGE_IMX_CODEC
  472. help
  473. The libfslcodec has been renamed to match the renamed package.
  474. config BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE_FIT_SIGNATURE_SUPPORT
  475. bool "FIT support in uboot-tools has been refactored"
  476. select BR2_LEGACY
  477. select BR2_PACKAGE_DTC
  478. select BR2_PACKAGE_DTC_PROGRAMS
  479. select BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
  480. select BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT
  481. select BR2_PACKAGE_UBOOT_TOOLS_MKIMAGE
  482. help
  483. This option has been removed in favor of a more fine-grained
  484. configuration, which is recommended. Selecting this option
  485. enables FIT and FIT signature support for the target packages.
  486. It will also select the dtc and openssl packages.
  487. config BR2_PTHREADS_OLD
  488. bool "linuxthreads (stable/old)"
  489. select BR2_LEGACY
  490. help
  491. Linuxthreads have been reworked, BR2_PTHREADS_OLD is now
  492. BR2_PTHREADS and the old BR2_PTHREADS - LT.new got removed.
  493. config BR2_BINUTILS_VERSION_2_23_X
  494. bool "binutils 2.23 removed"
  495. select BR2_LEGACY
  496. help
  497. Binutils 2.23 has been removed, using a newer version is
  498. recommended.
  499. config BR2_TOOLCHAIN_BUILDROOT_EGLIBC
  500. bool "eglibc support has been removed"
  501. select BR2_LEGACY
  502. help
  503. The eglibc project no longer exists, as it has been merged
  504. back into the glibc project. Therefore, support for eglibc
  505. has been removed, and glibc should be used instead.
  506. config BR2_GDB_VERSION_7_8
  507. bool "gdb 7.8 has been removed"
  508. select BR2_LEGACY
  509. help
  510. The 7.8 version of gdb has been removed. Use a newer version
  511. instead.
  512. ###############################################################################
  513. comment "Legacy options removed in 2016.05"
  514. config BR2_PACKAGE_OPENVPN_CRYPTO_POLARSSL
  515. bool "openvpn polarssl crypto backend removed"
  516. select BR2_LEGACY
  517. help
  518. The OpenVPN polarssl crypto backend option has been removed.
  519. Version from 2.3.10 onwards need polarssl >= 1.3.8 but aren't
  520. compatible with mbedtls (polarssl) series 2.x which is the
  521. version provided in buildroot. And both can't coexist.
  522. It now uses OpenSSL as the only option.
  523. config BR2_PACKAGE_NGINX_HTTP_SPDY_MODULE
  524. bool "nginx http spdy module removed"
  525. select BR2_LEGACY
  526. select BR2_PACKAGE_NGINX_HTTP_V2_MODULE
  527. help
  528. The ngx_http_spdy_module has been superseded by the
  529. ngx_http_v2_module since nginx v1.9.5. The
  530. ngx_http_v2_module modules has been automatically selected
  531. in your configuration.
  532. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
  533. bool "gst1-plugins-bad rtp plugin moved to good"
  534. select BR2_LEGACY
  535. help
  536. The rtp plugin has been moved from gst1-plugins-base to
  537. gst1-plugins-good.
  538. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
  539. bool "gst1-plugins-bad mpg123 plugin moved to ugly"
  540. select BR2_LEGACY
  541. help
  542. The mpg123 plugin has been moved from gst1-plugins-bad to
  543. gst1-plugins-ugly.
  544. config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
  545. bool "PowerPC Sourcery toolchain has been removed"
  546. select BR2_LEGACY
  547. help
  548. The Sourcery CodeBench toolchain for the PowerPC
  549. architecture has been removed, as it was very old, not
  550. maintained, and causing numerous build failures with modern
  551. userspace packages.
  552. config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC_E500V2
  553. bool "PowerPC Sourcery E500v2 toolchain has been removed"
  554. select BR2_LEGACY
  555. help
  556. The Sourcery CodeBench toolchain for the PowerPC E500v2
  557. architecture has been removed, as it was very old, not
  558. maintained, and causing numerous build failures with modern
  559. userspace packages.
  560. config BR2_x86_i386
  561. bool "x86 i386 support removed"
  562. select BR2_LEGACY
  563. help
  564. The support for the i386 processors of the x86 architecture
  565. has been removed.
  566. config BR2_PACKAGE_QT5WEBKIT_EXAMPLES
  567. bool "qt5webkit-examples package removed"
  568. select BR2_LEGACY
  569. help
  570. The qt5webkit-examples package has been removed, since it
  571. was removed from upstream starting from Qt 5.6.
  572. config BR2_PACKAGE_QT5QUICK1
  573. bool "qt5quick1 package removed"
  574. select BR2_LEGACY
  575. help
  576. The qt5quick1 package has been removed, since it was removed
  577. from upstream starting from Qt 5.6.
  578. config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR
  579. string "uboot custom patch dir has been removed"
  580. help
  581. The uboot custom patch directory option has been removed. Use
  582. the improved BR2_TARGET_UBOOT_PATCH option instead.
  583. config BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR_WRAP
  584. bool
  585. default y if BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR != ""
  586. select BR2_LEGACY
  587. # Note: BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR is still referenced from
  588. # boot/uboot/Config.in
  589. config BR2_PACKAGE_XDRIVER_XF86_INPUT_VOID
  590. bool "xf86-input-void removed"
  591. select BR2_LEGACY
  592. help
  593. The xf86-input-void package has been removed, there's no need
  594. for it in any modern (post-2007) xorg server.
  595. config BR2_KERNEL_HEADERS_3_17
  596. bool "kernel headers version 3.17.x are no longer supported"
  597. select BR2_KERNEL_HEADERS_3_12
  598. select BR2_LEGACY
  599. help
  600. Version 3.17.x of the Linux kernel headers have been deprecated
  601. for more than four buildroot releases and are now removed.
  602. As an alternative, version 3.12.x of the headers have been
  603. automatically selected in your configuration.
  604. config BR2_GDB_VERSION_7_7
  605. bool "gdb 7.7 has been removed"
  606. select BR2_LEGACY
  607. help
  608. The 7.7 version of gdb has been removed. Use a newer version
  609. instead.
  610. config BR2_PACKAGE_FOOMATIC_FILTERS
  611. bool "foomatic-filters"
  612. select BR2_LEGACY
  613. help
  614. The foomatic-filters package was removed.
  615. config BR2_PACKAGE_SAMBA
  616. bool "samba"
  617. select BR2_LEGACY
  618. help
  619. The samba package was removed in favour of samba4 since the
  620. 3.x series isn't supported by upstream any longer.
  621. config BR2_PACKAGE_KODI_WAVPACK
  622. bool "wavpack"
  623. select BR2_LEGACY
  624. help
  625. wavpack support was removed in favour of ffmpeg:
  626. https://github.com/xbmc/xbmc/commit/7916902c9e6f7a523265594f3ad7f921f93f1cd4
  627. config BR2_PACKAGE_KODI_RSXS
  628. bool "rsxs support in Kodi was moved to an addon"
  629. select BR2_LEGACY
  630. select BR2_PACKAGE_KODI_SCREENSAVER_RSXS
  631. help
  632. rsxs support in Kodi was moved to an addon
  633. config BR2_PACKAGE_KODI_GOOM
  634. bool "Goom support in Kodi was moved to an addon"
  635. select BR2_LEGACY
  636. select BR2_PACKAGE_KODI_VISUALISATION_GOOM
  637. help
  638. Goom support in Kodi was moved to an addon
  639. config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
  640. bool "systemd all extras option has been removed"
  641. select BR2_LEGACY
  642. select BR2_PACKAGE_XZ
  643. select BR2_PACKAGE_LIBGCRYPT
  644. help
  645. The systemd option to enable "all extras" has been
  646. removed. To get the same features, the libgcrypt and xz
  647. package should now be enabled.
  648. config BR2_GCC_VERSION_4_5_X
  649. bool "gcc 4.5.x has been removed"
  650. select BR2_LEGACY
  651. help
  652. The 4.5.x version of gcc has been removed. Use a newer
  653. version instead.
  654. config BR2_PACKAGE_SQLITE_READLINE
  655. bool "sqlite command-line editing support was updated"
  656. select BR2_PACKAGE_NCURSES
  657. select BR2_PACKAGE_READLINE
  658. select BR2_LEGACY
  659. help
  660. This option was removed in favour of the sqlite package
  661. deciding itself depending on the enabled packages whether
  662. command-line editing should be enabled, it also also takes
  663. libedit into account.
  664. ###############################################################################
  665. comment "Legacy options removed in 2016.02"
  666. config BR2_PACKAGE_DOVECOT_BZIP2
  667. bool "bzip2 support option has been removed"
  668. select BR2_LEGACY
  669. select BR2_PACKAGE_BZIP2
  670. help
  671. Bzip2 support is built if the bzip2 package is selected.
  672. config BR2_PACKAGE_DOVECOT_ZLIB
  673. bool "zlib support option has been removed"
  674. select BR2_LEGACY
  675. select BR2_PACKAGE_ZLIB
  676. help
  677. Zlib support is built if the zlib package is selected.
  678. config BR2_PACKAGE_E2FSPROGS_FINDFS
  679. bool "e2fsprogs findfs option has been removed"
  680. select BR2_LEGACY
  681. help
  682. This option attempted to enable findfs capabilities from
  683. e2fsprogs but has not worked since July 2015 (due to
  684. packaging changes). One can use BusyBox's findfs support or
  685. enable the BR2_PACKAGE_UTIL_LINUX_BINARIES option.
  686. config BR2_PACKAGE_OPENPOWERLINK_DEBUG_LEVEL
  687. bool "openpowerlink debug option has been removed"
  688. select BR2_LEGACY
  689. help
  690. This option depends on BR2_ENABLE_DEBUG which should not be used
  691. by packages anymore.
  692. config BR2_PACKAGE_OPENPOWERLINK_KERNEL_MODULE
  693. bool "openpowerlink package has been updated"
  694. select BR2_LEGACY
  695. select BR2_PACKAGE_OPENPOWERLINK_STACK_KERNEL_STACK_LIB
  696. help
  697. openpowerlink kernel modules are built if the
  698. kernel stack library is selected.
  699. config BR2_PACKAGE_OPENPOWERLINK_LIBPCAP
  700. bool "openpowerlink package has been updated"
  701. select BR2_LEGACY
  702. select BR2_PACKAGE_OPENPOWERLINK_STACK_USERSPACE_DAEMON_LIB
  703. help
  704. The user space support has been split in two part:
  705. - a monolitic user space library
  706. - a user spae deamon driver
  707. config BR2_LINUX_KERNEL_SAME_AS_HEADERS
  708. bool "using the linux headers version for the kernel has been removed"
  709. select BR2_LEGACY
  710. help
  711. The option to use the version of the kernel headers for the
  712. kernel to build has been removed.
  713. There is now the converse, better-suited and more versatile
  714. option to use the kernel version for the linux headers.
  715. config BR2_PACKAGE_CUPS_PDFTOPS
  716. bool "Pdftops support has been removed from Cups"
  717. select BR2_LEGACY
  718. help
  719. Pdftops support has been removed from the cups package
  720. It is now part of the cups-filters package.
  721. config BR2_KERNEL_HEADERS_3_16
  722. bool "kernel headers version 3.16.x are no longer supported"
  723. select BR2_KERNEL_HEADERS_3_12
  724. select BR2_LEGACY
  725. help
  726. Version 3.16.x of the Linux kernel headers have been deprecated
  727. for more than four buildroot releases and are now removed.
  728. As an alternative, version 3.12.x of the headers have been
  729. automatically selected in your configuration.
  730. config BR2_PACKAGE_PYTHON_PYXML
  731. bool "python-pyxml package has been removed"
  732. select BR2_LEGACY
  733. help
  734. PyXML is obsolete and its functionality is covered either via
  735. native Python XML support or python-lxml package.
  736. # BR2_ENABLE_SSP is still referenced in Config.in (default in choice)
  737. config BR2_ENABLE_SSP
  738. bool "Stack Smashing protection now has different levels"
  739. help
  740. The protection offered by SSP can now be selected from different
  741. protection levels. Be sure to review the SSP level in the build
  742. options menu.
  743. config BR2_PACKAGE_DIRECTFB_CLE266
  744. bool "cle266 driver for directfb removed"
  745. select BR2_LEGACY
  746. help
  747. The cle266 directfb driver support has been removed.
  748. It doesn't build in the latest version and it's unlikely
  749. anyone has any use for it.
  750. config BR2_PACKAGE_DIRECTFB_UNICHROME
  751. bool "unichrome driver for directfb removed"
  752. select BR2_LEGACY
  753. help
  754. The unichrome directfb driver support has been removed.
  755. It doesn't build in the latest version and it's unlikely
  756. anyone has any use for it.
  757. config BR2_PACKAGE_LIBELEMENTARY
  758. bool "libelementary has been renamed to elementary"
  759. select BR2_LEGACY
  760. select BR2_PACKAGE_ELEMENTARY
  761. help
  762. The libelementary package has been renamed to match the upstream
  763. name.
  764. config BR2_PACKAGE_LIBEINA
  765. bool "libeina package has been removed"
  766. select BR2_LEGACY
  767. select BR2_PACKAGE_EFL
  768. help
  769. With EFL 1.15, libeina is now provided by the efl package.
  770. config BR2_PACKAGE_LIBEET
  771. bool "libeet package has been removed"
  772. select BR2_LEGACY
  773. select BR2_PACKAGE_EFL
  774. help
  775. With EFL 1.15, libeet is now provided by the efl package.
  776. config BR2_PACKAGE_LIBEVAS
  777. bool "libevas package has been removed"
  778. select BR2_LEGACY
  779. select BR2_PACKAGE_EFL
  780. help
  781. With EFL 1.15, libevas is now provided by the efl package.
  782. config BR2_PACKAGE_LIBECORE
  783. bool "libecore package has been removed"
  784. select BR2_LEGACY
  785. select BR2_PACKAGE_EFL
  786. help
  787. With EFL 1.15, libecore is now provided by the efl package.
  788. config BR2_PACKAGE_LIBEDBUS
  789. bool "libedbus package has been removed"
  790. select BR2_LEGACY
  791. select BR2_PACKAGE_EFL
  792. help
  793. With EFL 1.15, libedbus is now provided by the efl package.
  794. config BR2_PACKAGE_LIBEFREET
  795. bool "libefreet package has been removed"
  796. select BR2_LEGACY
  797. select BR2_PACKAGE_EFL
  798. help
  799. With EFL 1.15, libefreet is now provided by the efl package.
  800. config BR2_PACKAGE_LIBEIO
  801. bool "libeio package has been removed"
  802. select BR2_LEGACY
  803. select BR2_PACKAGE_EFL
  804. help
  805. With EFL 1.15, libeio is now provided by the efl package.
  806. config BR2_PACKAGE_LIBEMBRYO
  807. bool "libembryo package has been removed"
  808. select BR2_LEGACY
  809. select BR2_PACKAGE_EFL
  810. help
  811. With EFL 1.15, libembryo is now provided by the efl package.
  812. config BR2_PACKAGE_LIBEDJE
  813. bool "libedje package has been removed"
  814. select BR2_LEGACY
  815. select BR2_PACKAGE_EFL
  816. help
  817. With EFL 1.15, libedje is now provided by the efl package.
  818. config BR2_PACKAGE_LIBETHUMB
  819. bool "libethumb package has been removed"
  820. select BR2_LEGACY
  821. select BR2_PACKAGE_EFL
  822. help
  823. With EFL 1.15, libethumb is now provided by the efl package.
  824. config BR2_PACKAGE_INFOZIP
  825. bool "infozip option has been renamed to zip"
  826. select BR2_LEGACY
  827. select BR2_PACKAGE_ZIP
  828. help
  829. Info-Zip's Zip package has been renamed from infozip to zip,
  830. to avoid ambiguities with Info-Zip's UnZip which has been added
  831. in the unzip package.
  832. config BR2_BR2_PACKAGE_NODEJS_0_10_X
  833. bool "nodejs 0.10.x option removed"
  834. select BR2_LEGACY
  835. select BR2_PACKAGE_NODEJS
  836. help
  837. nodejs 0.10.x option has been removed. 0.10.x is now
  838. automatically chosen for ARMv5 architectures only and the latest
  839. nodejs for all other supported architectures. The correct nodejs
  840. version has been automatically selected in your configuration.
  841. config BR2_BR2_PACKAGE_NODEJS_0_12_X
  842. bool "nodejs version 0.12.x has been removed"
  843. select BR2_LEGACY
  844. select BR2_PACKAGE_NODEJS
  845. help
  846. nodejs version 0.12.x has been removed. As an alternative,
  847. the latest nodejs version has been automatically selected in
  848. your configuration.
  849. config BR2_BR2_PACKAGE_NODEJS_4_X
  850. bool "nodejs version 4.x has been removed"
  851. select BR2_LEGACY
  852. select BR2_PACKAGE_NODEJS
  853. help
  854. nodejs version 4.x has been removed. As an alternative,
  855. the latest nodejs version has been automatically selected in
  856. your configuration.
  857. ###############################################################################
  858. comment "Legacy options removed in 2015.11"
  859. config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REAL
  860. bool "gst1-plugins-bad real plugin has been removed"
  861. select BR2_LEGACY
  862. help
  863. The real plugin from GStreamer 1 bad plugins has been
  864. removed.
  865. config BR2_PACKAGE_MEDIA_CTL
  866. bool "media-ctl package has been removed"
  867. select BR2_LEGACY
  868. select BR2_PACKAGE_LIBV4L
  869. select BR2_PACKAGE_LIBV4L_UTILS
  870. help
  871. media-ctl source and developement have been moved to
  872. v4l-utils since June 2014. For an up-to-date media-ctl
  873. version select BR2_PACKAGE_LIBV4L and BR2_PACKAGE_LIBV4L_UTILS.
  874. config BR2_PACKAGE_SCHIFRA
  875. bool "schifra package has been removed"
  876. select BR2_LEGACY
  877. help
  878. Schifra package has been maked broken since 2014.11 release and
  879. haven't been fixed since then.
  880. config BR2_PACKAGE_ZXING
  881. bool "zxing option has been renamed"
  882. select BR2_LEGACY
  883. select BR2_PACKAGE_ZXING_CPP
  884. help
  885. ZXing no longer provides the cpp bindings, it has been renamed to
  886. BR2_PACKAGE_ZXING_CPP which uses a new upstream.
  887. # Since FreeRDP has new dependencies, protect this legacy to avoid the
  888. # infamous "unmet direct dependencies" kconfig error.
  889. config BR2_PACKAGE_FREERDP_CLIENT
  890. bool "freerdp client option renamed"
  891. depends on BR2_PACKAGE_FREERDP
  892. select BR2_LEGACY
  893. select BR2_PACKAGE_FREERDP_CLIENT_X11
  894. config BR2_PACKAGE_BLACKBOX
  895. bool "blackbox package has been removed"
  896. select BR2_LEGACY
  897. help
  898. Upstream is dead and the package has been deprecated for
  899. some time. There are other alternative maintained WMs.
  900. config BR2_KERNEL_HEADERS_3_0
  901. bool "kernel headers version 3.0.x are no longer supported"
  902. select BR2_KERNEL_HEADERS_3_2
  903. select BR2_LEGACY
  904. help
  905. Version 3.0.x of the Linux kernel headers have been deprecated
  906. for more than four buildroot releases and are now removed.
  907. As an alternative, version 3.2.x of the headers have been
  908. automatically selected in your configuration.
  909. config BR2_KERNEL_HEADERS_3_11
  910. bool "kernel headers version 3.11.x are no longer supported"
  911. select BR2_KERNEL_HEADERS_3_10
  912. select BR2_LEGACY
  913. help
  914. Version 3.11.x of the Linux kernel headers have been deprecated
  915. for more than four buildroot releases and are now removed.
  916. As an alternative, version 3.10.x of the headers have been
  917. automatically selected in your configuration.
  918. config BR2_KERNEL_HEADERS_3_13
  919. bool "kernel headers version 3.13.x are no longer supported"
  920. select BR2_KERNEL_HEADERS_3_12
  921. select BR2_LEGACY
  922. help
  923. Version 3.13.x of the Linux kernel headers have been deprecated
  924. for more than four buildroot releases and are now removed.
  925. As an alternative, version 3.12.x of the headers have been
  926. automatically selected in your configuration.
  927. config BR2_KERNEL_HEADERS_3_15
  928. bool "kernel headers version 3.15.x are no longer supported"
  929. select BR2_KERNEL_HEADERS_3_12
  930. select BR2_LEGACY
  931. help
  932. Version 3.15.x of the Linux kernel headers have been deprecated
  933. for more than four buildroot releases and are now removed.
  934. As an alternative, version 3.12.x of the headers have been
  935. automatically selected in your configuration.
  936. config BR2_PACKAGE_DIRECTFB_EXAMPLES_ANDI
  937. bool "DirectFB example df_andi has been removed"
  938. select BR2_LEGACY
  939. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  940. help
  941. The per-DirectFB example options have been removed. The
  942. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  943. examples.
  944. config BR2_PACKAGE_DIRECTFB_EXAMPLES_BLTLOAD
  945. bool "DirectFB example df_bltload has been removed"
  946. select BR2_LEGACY
  947. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  948. help
  949. The per-DirectFB example options have been removed. The
  950. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  951. examples.
  952. config BR2_PACKAGE_DIRECTFB_EXAMPLES_CPULOAD
  953. bool "DirectFB example df_cpuload has been removed"
  954. select BR2_LEGACY
  955. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  956. help
  957. The per-DirectFB example options have been removed. The
  958. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  959. examples.
  960. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DATABUFFER
  961. bool "DirectFB example df_databuffer has been removed"
  962. select BR2_LEGACY
  963. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  964. help
  965. The per-DirectFB example options have been removed. The
  966. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  967. examples.
  968. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DIOLOAD
  969. bool "DirectFB example df_dioload has been removed"
  970. select BR2_LEGACY
  971. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  972. help
  973. The per-DirectFB example options have been removed. The
  974. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  975. examples.
  976. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DOK
  977. bool "DirectFB example df_dok has been removed"
  978. select BR2_LEGACY
  979. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  980. help
  981. The per-DirectFB example options have been removed. The
  982. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  983. examples.
  984. config BR2_PACKAGE_DIRECTFB_EXAMPLES_DRIVERTEST
  985. bool "DirectFB example df_drivertest has been removed"
  986. select BR2_LEGACY
  987. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  988. help
  989. The per-DirectFB example options have been removed. The
  990. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  991. examples.
  992. config BR2_PACKAGE_DIRECTFB_EXAMPLES_FIRE
  993. bool "DirectFB example df_fire has been removed"
  994. select BR2_LEGACY
  995. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  996. help
  997. The per-DirectFB example options have been removed. The
  998. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  999. examples.
  1000. config BR2_PACKAGE_DIRECTFB_EXAMPLES_FLIP
  1001. bool "DirectFB example df_flip has been removed"
  1002. select BR2_LEGACY
  1003. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1004. help
  1005. The per-DirectFB example options have been removed. The
  1006. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1007. examples.
  1008. config BR2_PACKAGE_DIRECTFB_EXAMPLES_FONTS
  1009. bool "DirectFB example df_fonts has been removed"
  1010. select BR2_LEGACY
  1011. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1012. help
  1013. The per-DirectFB example options have been removed. The
  1014. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1015. examples.
  1016. config BR2_PACKAGE_DIRECTFB_EXAMPLES_INPUT
  1017. bool "DirectFB example df_input has been removed"
  1018. select BR2_LEGACY
  1019. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1020. help
  1021. The per-DirectFB example options have been removed. The
  1022. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1023. examples.
  1024. config BR2_PACKAGE_DIRECTFB_EXAMPLES_JOYSTICK
  1025. bool "DirectFB example df_joystick has been removed"
  1026. select BR2_LEGACY
  1027. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1028. help
  1029. The per-DirectFB example options have been removed. The
  1030. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1031. examples.
  1032. config BR2_PACKAGE_DIRECTFB_EXAMPLES_KNUCKLES
  1033. bool "DirectFB example df_knuckles has been removed"
  1034. select BR2_LEGACY
  1035. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1036. help
  1037. The per-DirectFB example options have been removed. The
  1038. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1039. examples.
  1040. config BR2_PACKAGE_DIRECTFB_EXAMPLES_LAYER
  1041. bool "DirectFB example df_layer has been removed"
  1042. select BR2_LEGACY
  1043. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1044. help
  1045. The per-DirectFB example options have been removed. The
  1046. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1047. examples.
  1048. config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX
  1049. bool "DirectFB example df_matrix has been removed"
  1050. select BR2_LEGACY
  1051. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1052. help
  1053. The per-DirectFB example options have been removed. The
  1054. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1055. examples.
  1056. config BR2_PACKAGE_DIRECTFB_EXAMPLES_MATRIX_WATER
  1057. bool "DirectFB example df_matrix_water has been removed"
  1058. select BR2_LEGACY
  1059. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1060. help
  1061. The per-DirectFB example options have been removed. The
  1062. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1063. examples.
  1064. config BR2_PACKAGE_DIRECTFB_EXAMPLES_NEO
  1065. bool "DirectFB example df_neo has been removed"
  1066. select BR2_LEGACY
  1067. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1068. help
  1069. The per-DirectFB example options have been removed. The
  1070. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1071. examples.
  1072. config BR2_PACKAGE_DIRECTFB_EXAMPLES_NETLOAD
  1073. bool "DirectFB example df_netload has been removed"
  1074. select BR2_LEGACY
  1075. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1076. help
  1077. The per-DirectFB example options have been removed. The
  1078. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1079. examples.
  1080. config BR2_PACKAGE_DIRECTFB_EXAMPLES_PALETTE
  1081. bool "DirectFB example df_palette has been removed"
  1082. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1083. help
  1084. The per-DirectFB example options have been removed. The
  1085. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1086. examples.
  1087. config BR2_PACKAGE_DIRECTFB_EXAMPLES_PARTICLE
  1088. bool "DirectFB example df_particle has been removed"
  1089. select BR2_LEGACY
  1090. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1091. help
  1092. The per-DirectFB example options have been removed. The
  1093. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1094. examples.
  1095. config BR2_PACKAGE_DIRECTFB_EXAMPLES_PORTER
  1096. bool "DirectFB example df_porter has been removed"
  1097. select BR2_LEGACY
  1098. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1099. help
  1100. The per-DirectFB example options have been removed. The
  1101. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1102. examples.
  1103. config BR2_PACKAGE_DIRECTFB_EXAMPLES_STRESS
  1104. bool "DirectFB example df_stress has been removed"
  1105. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1106. help
  1107. The per-DirectFB example options have been removed. The
  1108. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1109. examples.
  1110. config BR2_PACKAGE_DIRECTFB_EXAMPLES_TEXTURE
  1111. bool "DirectFB example df_texture has been removed"
  1112. select BR2_LEGACY
  1113. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1114. help
  1115. The per-DirectFB example options have been removed. The
  1116. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1117. examples.
  1118. config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO
  1119. bool "DirectFB example df_video has been removed"
  1120. select BR2_LEGACY
  1121. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1122. help
  1123. The per-DirectFB example options have been removed. The
  1124. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1125. examples.
  1126. config BR2_PACKAGE_DIRECTFB_EXAMPLES_VIDEO_PARTICLE
  1127. bool "DirectFB example df_video_particle has been removed"
  1128. select BR2_LEGACY
  1129. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1130. help
  1131. The per-DirectFB example options have been removed. The
  1132. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1133. examples.
  1134. config BR2_PACKAGE_DIRECTFB_EXAMPLES_WINDOW
  1135. bool "DirectFB example df_window has been removed"
  1136. select BR2_LEGACY
  1137. select BR2_PACKAGE_DIRECTFB_EXAMPLES
  1138. help
  1139. The per-DirectFB example options have been removed. The
  1140. BR2_PACKAGE_DIRECTFB_EXAMPLES option now installs all
  1141. examples.
  1142. config BR2_PACKAGE_KOBS_NG
  1143. bool "kobs-ng was replaced by imx-kobs"
  1144. select BR2_LEGACY
  1145. select BR2_PACKAGE_IMX_KOBS
  1146. help
  1147. The outdated kobs-ng has been replaced by the Freescale-
  1148. maintained imx-kobs package.
  1149. config BR2_PACKAGE_SAWMAN
  1150. bool "sawman package removed"
  1151. select BR2_LEGACY
  1152. select BR2_PACKAGE_DIRECTFB_SAWMAN
  1153. help
  1154. This option has been removed because the sawman package no
  1155. longer exists: it was merged inside DirectFB itself. This
  1156. feature can now be enabled using the
  1157. BR2_PACKAGE_DIRECTFB_SAWMAN option.
  1158. config BR2_PACKAGE_DIVINE
  1159. bool "divine package removed"
  1160. select BR2_LEGACY
  1161. select BR2_PACKAGE_DIRECTFB_DIVINE
  1162. help
  1163. This option has been removed because the divine package no
  1164. longer exists: it was merged inside DirectFB itself. This
  1165. feature can now be enabled using the
  1166. BR2_PACKAGE_DIRECTFB_DIVINE option.
  1167. ###############################################################################
  1168. comment "Legacy options removed in 2015.08"
  1169. config BR2_PACKAGE_KODI_PVR_ADDONS
  1170. bool "Kodi PVR addon was split"
  1171. select BR2_LEGACY
  1172. select BR2_PACKAGE_KODI_PVR_ARGUSTV
  1173. select BR2_PACKAGE_KODI_PVR_DVBLINK
  1174. select BR2_PACKAGE_KODI_PVR_DVBVIEWER
  1175. select BR2_PACKAGE_KODI_PVR_FILMON
  1176. select BR2_PACKAGE_KODI_PVR_HTS
  1177. select BR2_PACKAGE_KODI_PVR_IPTVSIMPLE
  1178. select BR2_PACKAGE_KODI_PVR_MEDIAPORTAL_TVSERVER
  1179. select BR2_PACKAGE_KODI_PVR_MYTHTV
  1180. select BR2_PACKAGE_KODI_PVR_NEXTPVR
  1181. select BR2_PACKAGE_KODI_PVR_NJOY
  1182. select BR2_PACKAGE_KODI_PVR_PCTV
  1183. select BR2_PACKAGE_KODI_PVR_STALKER
  1184. select BR2_PACKAGE_KODI_PVR_VBOX
  1185. select BR2_PACKAGE_KODI_PVR_VDR_VNSI
  1186. select BR2_PACKAGE_KODI_PVR_VUPLUS
  1187. select BR2_PACKAGE_KODI_PVR_WMC
  1188. help
  1189. Kodi PVR addon was split into seperate modules
  1190. config BR2_BINUTILS_VERSION_2_23_2
  1191. bool "binutils 2.23 option renamed"
  1192. select BR2_LEGACY
  1193. help
  1194. Binutils 2.23.2 has been removed, using a newer version is
  1195. recommended.
  1196. config BR2_BINUTILS_VERSION_2_24
  1197. bool "binutils 2.24 option renamed"
  1198. select BR2_LEGACY
  1199. select BR2_BINUTILS_VERSION_2_24_X
  1200. help
  1201. The binutils version option has been renamed to match the
  1202. same patchlevel logic used by gcc. The new option is now
  1203. BR2_BINUTILS_VERSION_2_24_X.
  1204. config BR2_BINUTILS_VERSION_2_25
  1205. bool "binutils 2.25 option renamed"
  1206. select BR2_LEGACY
  1207. select BR2_BINUTILS_VERSION_2_25_X
  1208. help
  1209. The binutils version option has been renamed to match the
  1210. same patchlevel logic used by gcc. The new option is now
  1211. BR2_BINUTILS_VERSION_2_25_X.
  1212. config BR2_PACKAGE_PERF
  1213. bool "perf option has been renamed"
  1214. select BR2_LEGACY
  1215. select BR2_LINUX_KERNEL_TOOL_PERF
  1216. help
  1217. The perf package has been moved as a Linux tools package,
  1218. and the option to enable it is now
  1219. BR2_LINUX_KERNEL_TOOL_PERF.
  1220. config BR2_BINUTILS_VERSION_2_22
  1221. bool "binutils 2.22 removed"
  1222. select BR2_LEGACY
  1223. help
  1224. Binutils 2.22 has been removed, using a newer version is
  1225. recommended.
  1226. config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
  1227. bool "gpu-viv-bin-mx6q"
  1228. select BR2_LEGACY
  1229. select BR2_PACKAGE_IMX_GPU_VIV
  1230. help
  1231. Vivante graphics libraries have been renamed to
  1232. BR2_PACKAGE_IMX_GPU_VIV to be aligned with upstream package
  1233. name.
  1234. config BR2_PACKAGE_LIBSEMANAGE_PYTHON_BINDINGS
  1235. depends on BR2_PACKAGE_PYTHON
  1236. bool "libsemanage python bindings removed"
  1237. select BR2_LEGACY
  1238. help
  1239. This option has been removed, since the libsemanage Python
  1240. bindings on the target were not useful.
  1241. config BR2_TARGET_UBOOT_NETWORK
  1242. bool "U-Boot custom network settings removed"
  1243. select BR2_LEGACY
  1244. help
  1245. U-Boot's custom network settings options have been removed.
  1246. ###############################################################################
  1247. comment "Legacy options removed in 2015.05"
  1248. config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_512_16K
  1249. bool "jffs2 16kB erasesize NAND flash option renamed"
  1250. select BR2_LEGACY
  1251. select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_16K
  1252. help
  1253. The JFFS2 NAND flash options now longer include the page
  1254. size.
  1255. config BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K
  1256. bool "jffs2 128kB erasesize NAND flash option renamed"
  1257. select BR2_LEGACY
  1258. select BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_128K
  1259. help
  1260. The JFFS2 NAND flash options now longer include the page
  1261. size.
  1262. config BR2_PACKAGE_MONO_20
  1263. bool "2.0/3.5 .Net Runtime"
  1264. select BR2_LEGACY
  1265. help
  1266. This option no longer exists, all versions of the .Net
  1267. runtime are now installed.
  1268. config BR2_PACKAGE_MONO_40
  1269. bool "4.0 .Net Runtime"
  1270. select BR2_LEGACY
  1271. help
  1272. This option no longer exists, all versions of the .Net
  1273. runtime are now installed.
  1274. config BR2_PACKAGE_MONO_45
  1275. bool "4.5 .Net Runtime"
  1276. select BR2_LEGACY
  1277. help
  1278. This option no longer exists, all versions of the .Net
  1279. runtime are now installed.
  1280. config BR2_CIVETWEB_WITH_LUA
  1281. bool "civetweb lua option renamed"
  1282. select BR2_LEGACY
  1283. select BR2_PACKAGE_CIVETWEB_WITH_LUA
  1284. help
  1285. civetweb's lua option has been renamed to
  1286. BR2_PACKAGE_CIVETWEB_WITH_LUA to be aligned with how other
  1287. packages name options.
  1288. config BR2_PACKAGE_TIFF_TIFF2PDF
  1289. bool "tiff utility-specific option removed"
  1290. select BR2_LEGACY
  1291. select BR2_PACKAGE_TIFF_UTILITIES
  1292. help
  1293. utility-specific options have been removed in favour of
  1294. the new option BR2_PACKAGE_TIFF_UTILITIES.
  1295. config BR2_PACKAGE_TIFF_TIFFCP
  1296. bool "tiff utility-specific option removed"
  1297. select BR2_LEGACY
  1298. select BR2_PACKAGE_TIFF_UTILITIES
  1299. help
  1300. utility-specific options have been removed in favour of
  1301. the new option BR2_PACKAGE_TIFF_UTILITIES.
  1302. config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
  1303. bool "RTAI patch file path has been removed"
  1304. select BR2_LEGACY
  1305. help
  1306. This option has never worked, so it has been removed.
  1307. config BR2_TARGET_GENERIC_PASSWD_DES
  1308. bool "Encoding passwords with DES has been removed"
  1309. select BR2_LEGACY
  1310. help
  1311. Paswords can now only be encoded with either of md5, sha256 or sha512.
  1312. The default is md5, which is stronger that DES (but still pretty weak).
  1313. config BR2_PACKAGE_GTK2_THEME_HICOLOR
  1314. bool "hicolor (default theme) is a duplicate"
  1315. select BR2_LEGACY
  1316. select BR2_PACKAGE_HICOLOR_ICON_THEME
  1317. help
  1318. The option was just a duplicate of hicolor icon theme.
  1319. config BR2_PACKAGE_VALGRIND_PTRCHECK
  1320. bool "valgrind's PTRCheck was renamed to SGCheck"
  1321. select BR2_LEGACY
  1322. select BR2_PACKAGE_VALGRIND_SGCHECK
  1323. help
  1324. PTRCheck was renamed to SGCheck in valgrind
  1325. ###############################################################################
  1326. comment "Legacy options removed in 2015.02"
  1327. config BR2_PACKAGE_LIBGC
  1328. bool "libgc package removed"
  1329. select BR2_LEGACY
  1330. select BR2_PACKAGE_BDWGC
  1331. help
  1332. libgc has been removed because we have the same package under a
  1333. different name, bdwgc.
  1334. config BR2_PACKAGE_WDCTL
  1335. bool "util-linux' wdctl option has been renamed"
  1336. select BR2_LEGACY
  1337. select BR2_PACKAGE_UTIL_LINUX_WDCTL
  1338. help
  1339. util-linux' wdctl option has been renamed to BR2_PACKAGE_UTIL_LINUX_WDCTL
  1340. to be aligned with how the other options are named.
  1341. config BR2_PACKAGE_UTIL_LINUX_ARCH
  1342. bool "util-linux' arch option has been removed"
  1343. select BR2_LEGACY
  1344. help
  1345. util-linux' arch was dropped in util-linux 2.23, in favor of
  1346. the coreutils version.
  1347. config BR2_PACKAGE_UTIL_LINUX_DDATE
  1348. bool "util-linux' ddate option has been removed"
  1349. select BR2_LEGACY
  1350. help
  1351. util-linux' ddate was dropped in util-linux 2.23.
  1352. config BR2_PACKAGE_RPM_BZIP2_PAYLOADS
  1353. bool "rpm's bzip2 payloads option has been removed"
  1354. select BR2_LEGACY
  1355. select BR2_PACKAGE_BZIP2
  1356. help
  1357. The bzip2 payloads option rely entirely on the dependant package bzip2.
  1358. So, you need to select it to enable this feature.
  1359. config BR2_PACKAGE_RPM_XZ_PAYLOADS
  1360. bool "rpm's xz payloads option has been removed"
  1361. select BR2_LEGACY
  1362. select BR2_PACKAGE_XZ
  1363. help
  1364. The xz payloads option rely entirely on the dependant package xz.
  1365. So, you need to select it to enable this feature.
  1366. config BR2_PACKAGE_M4
  1367. bool "m4 target package removed"
  1368. select BR2_LEGACY
  1369. help
  1370. The m4 target package has been removed, it's been
  1371. deprecated for some time now.
  1372. config BR2_PACKAGE_FLEX_BINARY
  1373. bool "flex binary in target option removed"
  1374. select BR2_LEGACY
  1375. help
  1376. The flex binary in the target option has been removed.
  1377. It's been deprecated for some time now and is essentially a
  1378. development tool which isn't very useful in the target.
  1379. config BR2_PACKAGE_BISON
  1380. bool "bison target package removed"
  1381. select BR2_LEGACY
  1382. help
  1383. The bison target package has been removed, it's been
  1384. deprecated for some time now and is essentially a development
  1385. tool which isn't very useful in the target.
  1386. config BR2_PACKAGE_GOB2
  1387. bool "gob2 target package removed"
  1388. select BR2_LEGACY
  1389. help
  1390. The gob2 target package has been removed, it's been
  1391. deprecated for some time now and was essentially useless
  1392. without a target toolchain.
  1393. config BR2_PACKAGE_DISTCC
  1394. bool "distcc target package removed"
  1395. select BR2_LEGACY
  1396. help
  1397. The distcc target package has been removed, it's been
  1398. deprecated for some time now and was essentially useless
  1399. without a target toolchain.
  1400. config BR2_PACKAGE_HASERL_VERSION_0_8_X
  1401. bool "haserl 0.8.x version removed"
  1402. select BR2_LEGACY
  1403. help
  1404. The 0.8.x version option for haserl has been removed since it
  1405. has been deprecated for some time now.
  1406. You should be able to use the 0.9.x version without issues.
  1407. config BR2_PACKAGE_STRONGSWAN_TOOLS
  1408. bool "strongswan option has been removed"
  1409. select BR2_LEGACY
  1410. select BR2_PACKAGE_STRONGSWAN_PKI
  1411. select BR2_PACKAGE_STRONGSWAN_SCEP
  1412. help
  1413. The tools option has been removed upstream and the different tools
  1414. have been split between the pki and scep options, with others
  1415. deprecated.
  1416. config BR2_PACKAGE_XBMC_ADDON_XVDR
  1417. bool "xbmc-addon-xvdr removed"
  1418. select BR2_LEGACY
  1419. help
  1420. According to the github project page:
  1421. https://github.com/pipelka/xbmc-addon-xvdr
  1422. this package is discontinued.
  1423. config BR2_PACKAGE_XBMC_PVR_ADDONS
  1424. bool "xbmc options have been renamed"
  1425. select BR2_LEGACY
  1426. select BR2_PACKAGE_KODI_PVR_ADDONS
  1427. help
  1428. The XBMC media center project was renamed to Kodi entertainment center
  1429. config BR2_PACKAGE_XBMC
  1430. bool "xbmc options have been renamed"
  1431. select BR2_LEGACY
  1432. select BR2_PACKAGE_KODI
  1433. help
  1434. The XBMC media center project was renamed to Kodi entertainment center
  1435. config BR2_PACKAGE_XBMC_ALSA_LIB
  1436. bool "xbmc options have been renamed"
  1437. select BR2_LEGACY
  1438. select BR2_PACKAGE_KODI_ALSA_LIB
  1439. help
  1440. The XBMC media center project was renamed to Kodi entertainment center
  1441. config BR2_PACKAGE_XBMC_AVAHI
  1442. bool "xbmc options have been renamed"
  1443. select BR2_LEGACY
  1444. select BR2_PACKAGE_KODI_AVAHI
  1445. help
  1446. The XBMC media center project was renamed to Kodi entertainment center
  1447. config BR2_PACKAGE_XBMC_DBUS
  1448. bool "xbmc options have been renamed"
  1449. select BR2_LEGACY
  1450. select BR2_PACKAGE_KODI_DBUS
  1451. help
  1452. The XBMC media center project was renamed to Kodi entertainment center
  1453. config BR2_PACKAGE_XBMC_LIBBLURAY
  1454. bool "xbmc options have been renamed"
  1455. select BR2_LEGACY
  1456. select BR2_PACKAGE_KODI_LIBBLURAY
  1457. help
  1458. The XBMC media center project was renamed to Kodi entertainment center
  1459. config BR2_PACKAGE_XBMC_GOOM
  1460. bool "xbmc options have been renamed"
  1461. select BR2_LEGACY
  1462. select BR2_PACKAGE_KODI_GOOM
  1463. help
  1464. The XBMC media center project was renamed to Kodi entertainment center
  1465. config BR2_PACKAGE_XBMC_RSXS
  1466. bool "xbmc options have been renamed"
  1467. select BR2_LEGACY
  1468. select BR2_PACKAGE_KODI_RSXS
  1469. help
  1470. The XBMC media center project was renamed to Kodi entertainment center
  1471. config BR2_PACKAGE_XBMC_LIBCEC
  1472. bool "xbmc options have been renamed"
  1473. select BR2_LEGACY
  1474. select BR2_PACKAGE_KODI_LIBCEC
  1475. help
  1476. The XBMC media center project was renamed to Kodi entertainment center
  1477. config BR2_PACKAGE_XBMC_LIBMICROHTTPD
  1478. bool "xbmc options have been renamed"
  1479. select BR2_LEGACY
  1480. select BR2_PACKAGE_KODI_LIBMICROHTTPD
  1481. help
  1482. The XBMC media center project was renamed to Kodi entertainment center
  1483. config BR2_PACKAGE_XBMC_LIBNFS
  1484. bool "xbmc options have been renamed"
  1485. select BR2_LEGACY
  1486. select BR2_PACKAGE_KODI_LIBNFS
  1487. help
  1488. The XBMC media center project was renamed to Kodi entertainment center
  1489. config BR2_PACKAGE_XBMC_RTMPDUMP
  1490. bool "xbmc options have been renamed"
  1491. select BR2_LEGACY
  1492. select BR2_PACKAGE_KODI_RTMPDUMP
  1493. help
  1494. The XBMC media center project was renamed to Kodi entertainment center
  1495. config BR2_PACKAGE_XBMC_LIBSHAIRPLAY
  1496. bool "xbmc options have been renamed"
  1497. select BR2_LEGACY
  1498. select BR2_PACKAGE_KODI_LIBSHAIRPLAY
  1499. help
  1500. The XBMC media center project was renamed to Kodi entertainment center
  1501. config BR2_PACKAGE_XBMC_LIBSMBCLIENT
  1502. bool "xbmc options have been renamed"
  1503. select BR2_LEGACY
  1504. select BR2_PACKAGE_KODI_LIBSMBCLIENT
  1505. help
  1506. The XBMC media center project was renamed to Kodi entertainment center
  1507. config BR2_PACKAGE_XBMC_LIBTHEORA
  1508. bool "xbmc options have been renamed"
  1509. select BR2_LEGACY
  1510. select BR2_PACKAGE_KODI_LIBTHEORA
  1511. help
  1512. The XBMC media center project was renamed to Kodi entertainment center
  1513. config BR2_PACKAGE_XBMC_LIBUSB
  1514. bool "xbmc options have been renamed"
  1515. select BR2_LEGACY
  1516. select BR2_PACKAGE_KODI_LIBUSB
  1517. help
  1518. The XBMC media center project was renamed to Kodi entertainment center
  1519. config BR2_PACKAGE_XBMC_LIBVA
  1520. bool "xbmc options have been renamed"
  1521. select BR2_LEGACY
  1522. select BR2_PACKAGE_KODI_LIBVA
  1523. help
  1524. The XBMC media center project was renamed to Kodi entertainment center
  1525. config BR2_PACKAGE_XBMC_WAVPACK
  1526. bool "xbmc options have been renamed"
  1527. select BR2_LEGACY
  1528. select BR2_PACKAGE_KODI_WAVPACK
  1529. help
  1530. The XBMC media center project was renamed to Kodi entertainment center
  1531. config BR2_PREFER_STATIC_LIB
  1532. bool "static library option renamed"
  1533. select BR2_LEGACY
  1534. help
  1535. The BR2_PREFER_STATIC_LIB was renamed to BR2_STATIC_LIBS. It
  1536. highlights the fact that the option no longer "prefers"
  1537. static libraries, but "enforces" static libraries (i.e
  1538. shared libraries are completely unused).
  1539. Take care of updating the type of libraries you want under the
  1540. "Build options" menu.
  1541. ###############################################################################
  1542. comment "Legacy options removed in 2014.11"
  1543. config BR2_x86_generic
  1544. bool "x86 generic variant has been removed"
  1545. select BR2_LEGACY
  1546. help
  1547. The generic x86 CPU variant has been removed. Use another
  1548. CPU variant instead.
  1549. config BR2_GCC_VERSION_4_4_X
  1550. bool "gcc 4.4.x has been removed"
  1551. select BR2_LEGACY
  1552. help
  1553. The 4.4.x version of gcc has been removed. Use a newer
  1554. version instead.
  1555. config BR2_sparc_sparchfleon
  1556. bool "sparchfleon CPU has been removed"
  1557. select BR2_LEGACY
  1558. help
  1559. The sparchfleon CPU was only supported in a patched gcc 4.4
  1560. version. Its support has been removed in favor of the leon3
  1561. CPU starting from gcc 4.8.x.
  1562. config BR2_sparc_sparchfleonv8
  1563. bool "sparchfleonv8 CPU has been removed"
  1564. select BR2_LEGACY
  1565. help
  1566. The sparchfleonv8 CPU was only supported in a patched gcc
  1567. 4.4 version. Its support has been removed in favor of the
  1568. leon3 CPU starting from gcc 4.8.x.
  1569. config BR2_sparc_sparcsfleon
  1570. bool "sparcsfleon CPU has been removed"
  1571. select BR2_LEGACY
  1572. help
  1573. The sparcsfleon CPU was only supported in a patched gcc 4.4
  1574. version. Its support has been removed in favor of the leon3
  1575. CPU starting from gcc 4.8.x.
  1576. config BR2_sparc_sparcsfleonv8
  1577. bool "sparcsfleonv8 CPU has been removed"
  1578. select BR2_LEGACY
  1579. help
  1580. The sparcsfleonv8 CPU was only supported in a patched gcc
  1581. 4.4 version. Its support has been removed in favor of the
  1582. leon3 CPU starting from gcc 4.8.x.
  1583. config BR2_PACKAGE_XLIB_LIBPCIACCESS
  1584. bool "xlib-libpciaccess option has been renamed"
  1585. depends on BR2_PACKAGE_XORG7
  1586. select BR2_LEGACY
  1587. select BR2_PACKAGE_LIBPCIACCESS
  1588. help
  1589. libpciaccess neither depends on X11 nor Xlib. Thus the
  1590. package has been renamed BR2_PACKAGE_LIBPCIACCESS
  1591. config BR2_PACKAGE_LINUX_FIRMWARE_XC5000
  1592. bool "Xceive xc5000 option has been renamed"
  1593. select BR2_LEGACY
  1594. select BR2_PACKAGE_LINUX_FIRMWARE_XCx000
  1595. help
  1596. The Xceive xc5000 option now also handles older firmwares from
  1597. Xceive (the xc4000 series), as well as new firmwares (the xc5000c)
  1598. from Cresta, who bought Xceive.
  1599. config BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
  1600. bool "Chelsio T4 option has been renamed"
  1601. select BR2_LEGACY
  1602. select BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
  1603. help
  1604. The Chelsio T4 option BR2_PACKAGE_LINUX_FIRMWARE_CXGB4
  1605. has been renamed to BR2_PACKAGE_LINUX_FIRMWARE_CXGB4_T4
  1606. to better account for the fact that a T5 variant exists.
  1607. config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7
  1608. bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 has been renamed"
  1609. select BR2_LEGACY
  1610. help
  1611. The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_7 was
  1612. renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_7. You must
  1613. select it in:
  1614. Target packages -> Hardware handling ->
  1615. Firmware -> linux-firmware -> WiFi firmware ->
  1616. iwlwifi 3160/726x revision to use (revision 7)
  1617. config BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8
  1618. bool "BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 has been renamed"
  1619. select BR2_LEGACY
  1620. help
  1621. The option BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_3160_7260_8 was
  1622. renamed to BR2_PACKAGE_LINUX_FIRMWARE_IWLWIFI_REV_8. You must
  1623. select it in:
  1624. Target packages -> Hardware handling ->
  1625. Firmware -> linux-firmware -> WiFi firmware ->
  1626. iwlwifi 3160/726x revision to use (revision 8)
  1627. ###############################################################################
  1628. comment "Legacy options removed in 2014.08"
  1629. config BR2_PACKAGE_LIBELF
  1630. bool "libelf has been removed"
  1631. select BR2_PACKAGE_ELFUTILS
  1632. select BR2_LEGACY
  1633. help
  1634. The libelf package provided an old version of the libelf library
  1635. and is deprecated. The libelf library is now provided by the
  1636. elfutils package.
  1637. config BR2_KERNEL_HEADERS_3_8
  1638. bool "kernel headers version 3.8.x are no longer supported"
  1639. select BR2_KERNEL_HEADERS_3_4
  1640. select BR2_LEGACY
  1641. help
  1642. Version 3.8.x of the Linux kernel headers have been deprecated
  1643. for more than four buildroot releases and are now removed.
  1644. As an alternative, version 3.4.x of the headers have been
  1645. automatically selected in your configuration.
  1646. config BR2_PACKAGE_GETTEXT_TOOLS
  1647. bool "support for gettext-tools on target has been removed"
  1648. select BR2_LEGACY
  1649. help
  1650. The option to install the gettext utilities on the target
  1651. has been removed. This is not necessary as Buildroot is not
  1652. designed to provide a full development environment on the
  1653. target. gettext tools should be used on the build machine
  1654. instead.
  1655. config BR2_PACKAGE_PROCPS
  1656. bool "procps has been replaced by procps-ng"
  1657. select BR2_PACKAGE_PROCPS_NG
  1658. select BR2_LEGACY
  1659. help
  1660. The procps package has been replaced by the equivalent procps-ng.
  1661. config BR2_BINUTILS_VERSION_2_20_1
  1662. bool "binutils 2.20.1 has been removed"
  1663. select BR2_LEGACY
  1664. help
  1665. The 2.20.1 version of binutils has been removed. Use a newer
  1666. version instead.
  1667. config BR2_BINUTILS_VERSION_2_21
  1668. bool "binutils 2.21 has been removed"
  1669. select BR2_LEGACY
  1670. help
  1671. The 2.21 version of binutils has been removed. Use a newer
  1672. version instead.
  1673. config BR2_BINUTILS_VERSION_2_23_1
  1674. bool "binutils 2.23.1 has been removed"
  1675. select BR2_LEGACY
  1676. help
  1677. The 2.23.1 version of binutils has been removed. Use a newer
  1678. version instead.
  1679. config BR2_UCLIBC_VERSION_0_9_32
  1680. bool "uclibc 0.9.32 has been removed"
  1681. select BR2_LEGACY
  1682. help
  1683. The 0.9.32 version of uClibc has been removed. Use a newer
  1684. version instead.
  1685. config BR2_GCC_VERSION_4_3_X
  1686. bool "gcc 4.3.x has been removed"
  1687. select BR2_LEGACY
  1688. help
  1689. The 4.3.x version of gcc has been removed. Use a newer
  1690. version instead.
  1691. config BR2_GCC_VERSION_4_6_X
  1692. bool "gcc 4.6.x has been removed"
  1693. select BR2_LEGACY
  1694. help
  1695. The 4.6.x version of gcc has been removed. Use a newer
  1696. version instead.
  1697. config BR2_GDB_VERSION_7_4
  1698. bool "gdb 7.4 has been removed"
  1699. select BR2_LEGACY
  1700. help
  1701. The 7.4 version of gdb has been removed. Use a newer version
  1702. instead.
  1703. config BR2_GDB_VERSION_7_5
  1704. bool "gdb 7.5 has been removed"
  1705. select BR2_LEGACY
  1706. help
  1707. The 7.5 version of gdb has been removed. Use a newer version
  1708. instead.
  1709. config BR2_BUSYBOX_VERSION_1_19_X
  1710. bool "busybox version selection has been removed"
  1711. select BR2_LEGACY
  1712. help
  1713. The possibility of selecting the Busybox version has been
  1714. removed. Use the latest version provided by the Busybox
  1715. package instead.
  1716. config BR2_BUSYBOX_VERSION_1_20_X
  1717. bool "busybox version selection has been removed"
  1718. select BR2_LEGACY
  1719. help
  1720. The possibility of selecting the Busybox version has been
  1721. removed. Use the latest version provided by the Busybox
  1722. package instead.
  1723. config BR2_BUSYBOX_VERSION_1_21_X
  1724. bool "busybox version selection has been removed"
  1725. select BR2_LEGACY
  1726. help
  1727. The possibility of selecting the Busybox version has been
  1728. removed. Use the latest version provided by the Busybox
  1729. package instead.
  1730. config BR2_PACKAGE_LIBV4L_DECODE_TM6000
  1731. bool "decode_tm6000"
  1732. select BR2_PACKAGE_LIBV4L_UTILS
  1733. select BR2_LEGACY
  1734. help
  1735. This libv4l option has been deprecated and replaced by a single
  1736. option to build all the libv4l utilities.
  1737. config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
  1738. bool "ir-keytable"
  1739. select BR2_PACKAGE_LIBV4L_UTILS
  1740. select BR2_LEGACY
  1741. help
  1742. This libv4l option has been deprecated and replaced by a single
  1743. option to build all the libv4l utilities.
  1744. config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
  1745. bool "v4l2-compliance"
  1746. select BR2_PACKAGE_LIBV4L_UTILS
  1747. select BR2_LEGACY
  1748. help
  1749. This libv4l option has been deprecated and replaced by a single
  1750. option to build all the libv4l utilities.
  1751. config BR2_PACKAGE_LIBV4L_V4L2_CTL
  1752. bool "v4l2-ctl"
  1753. select BR2_PACKAGE_LIBV4L_UTILS
  1754. select BR2_LEGACY
  1755. help
  1756. This libv4l option has been deprecated and replaced by a single
  1757. option to build all the libv4l utilities.
  1758. config BR2_PACKAGE_LIBV4L_V4L2_DBG
  1759. bool "v4l2-dbg"
  1760. select BR2_PACKAGE_LIBV4L_UTILS
  1761. select BR2_LEGACY
  1762. help
  1763. This libv4l option has been deprecated and replaced by a single
  1764. option to build all the libv4l utilities.
  1765. ###############################################################################
  1766. comment "Legacy options removed in 2014.05"
  1767. config BR2_PACKAGE_EVTEST_CAPTURE
  1768. bool "evtest-capture support removed (dropped since evtest 1.31)"
  1769. select BR2_LEGACY
  1770. help
  1771. Support for evtest-capture has been removed (dropped from
  1772. evtest package since version 1.31), use evemu package
  1773. instead.
  1774. config BR2_KERNEL_HEADERS_3_6
  1775. bool "kernel headers version 3.6.x are no longer supported"
  1776. select BR2_KERNEL_HEADERS_3_4
  1777. select BR2_LEGACY
  1778. help
  1779. Version 3.6.x of the Linux kernel headers have been deprecated
  1780. for more than four buildroot releases and are now removed.
  1781. As an alternative, version 3.4.x of the headers have been
  1782. automatically selected in your configuration.
  1783. config BR2_KERNEL_HEADERS_3_7
  1784. bool "kernel headers version 3.7.x are no longer supported"
  1785. select BR2_KERNEL_HEADERS_3_4
  1786. select BR2_LEGACY
  1787. help
  1788. Version 3.7.x of the Linux kernel headers have been deprecated
  1789. for more than four buildroot releases and are now removed.
  1790. As an alternative, version 3.4.x of the headers have been
  1791. automatically selected in your configuration.
  1792. config BR2_PACKAGE_VALA
  1793. bool "vala target package has been removed"
  1794. select BR2_LEGACY
  1795. help
  1796. The 'vala' target package has been removed since it has been
  1797. deprecated for more than four buildroot releases.
  1798. Note: the host vala package still exists.
  1799. config BR2_TARGET_TZ_ZONELIST
  1800. default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
  1801. config BR2_PACKAGE_TZDATA_ZONELIST
  1802. string "tzdata: the timezone list option has been renamed"
  1803. help
  1804. The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
  1805. BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
  1806. menu. You'll need to select BR2_TARGET_TZ_INFO.
  1807. config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
  1808. bool
  1809. default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
  1810. select BR2_LEGACY
  1811. config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
  1812. bool "Lua command-line editing none has been renamed"
  1813. select BR2_LEGACY
  1814. help
  1815. The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
  1816. renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
  1817. it in the corresponding choice.
  1818. config BR2_PACKAGE_LUA_INTERPRETER_READLINE
  1819. bool "Lua command-line editing using readline has been renamed"
  1820. select BR2_LEGACY
  1821. help
  1822. The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
  1823. renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
  1824. it in the corresponding choice.
  1825. config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
  1826. bool "Lua command-line editing using linenoise has been renamed"
  1827. select BR2_LEGACY
  1828. help
  1829. The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
  1830. renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
  1831. it in the corresponding choice.
  1832. config BR2_PACKAGE_DVB_APPS_UTILS
  1833. bool "dvb-apps utilities now built by default"
  1834. select BR2_LEGACY
  1835. help
  1836. The dvb-apps utilities are now always built when the dvb-apps
  1837. package is selected.
  1838. config BR2_KERNEL_HEADERS_SNAP
  1839. bool "Local Linux snapshot support removed"
  1840. select BR2_LEGACY
  1841. help
  1842. Support for using a custom snapshot to install the Linux
  1843. kernel headers has been removed.
  1844. config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
  1845. bool "/dev management by udev removed"
  1846. select BR2_LEGACY
  1847. help
  1848. The 'udev' package has been converted to a virtual package.
  1849. The providers for this feature are: 'eudev', 'systemd'.
  1850. Therefore, if you are not using 'systemd' as init system, you
  1851. must choose 'Dynamic using eudev' in the '/dev management'
  1852. menu to get the same behaviour as in your old configuration.
  1853. If you are using 'systemd', its internal implementation of
  1854. 'udev' will be used automatically.
  1855. You must also check the packages depending on 'udev' are still
  1856. selected.
  1857. config BR2_PACKAGE_UDEV
  1858. bool "udev is now a virtual package"
  1859. select BR2_LEGACY
  1860. select BR2_PACKAGE_HAS_UDEV
  1861. help
  1862. The 'udev' package has been converted to a virtual package.
  1863. The providers for this feature are: 'eudev', 'systemd'.
  1864. Your old configuration refers to packages depending on 'udev',
  1865. either for build or at runtime.
  1866. Check that a 'udev' provider is selected. If you are not using
  1867. 'systemd' as init system, 'eudev' should be selected, which is
  1868. the case if '/dev management' is set to 'Dynamic using eudev'.
  1869. If you are using 'systemd', its internal implementation of 'udev'
  1870. is used.
  1871. config BR2_PACKAGE_UDEV_RULES_GEN
  1872. bool "udev rules generation handled by provider"
  1873. select BR2_LEGACY
  1874. select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
  1875. select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
  1876. help
  1877. The 'udev' package has been converted to a virtual package.
  1878. The providers for this feature are: 'eudev', 'systemd'.
  1879. If you are not using 'systemd' as init system, udev rules
  1880. generation will be handled by 'eudev'. Check that
  1881. '/dev management' is set to 'Dynamic using eudev' to get
  1882. the same behaviour as in your old configuration.
  1883. If you are using 'systemd', it internal implementation of 'udev'
  1884. will generate the rules.
  1885. config BR2_PACKAGE_UDEV_ALL_EXTRAS
  1886. bool "udev extras removed"
  1887. select BR2_LEGACY
  1888. help
  1889. The 'udev' package has been converted to a virtual package.
  1890. The providers for this feature are: 'eudev', 'systemd'.
  1891. The option to enable the extra features of 'udev' (gudev, ...)
  1892. has been removed. These features are automatically enabled in
  1893. the 'udev' providers if the dependencies are selected. For
  1894. example, selecting 'libglib2' will trigger the build of gudev.
  1895. config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
  1896. bool "xlib-libpthread-stubs option has been renamed"
  1897. depends on BR2_PACKAGE_XORG7
  1898. select BR2_LEGACY
  1899. select BR2_PACKAGE_LIBPTHREAD_STUBS
  1900. help
  1901. The pthread stubs neither depend on X11 nor Xlib. Thus the
  1902. package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
  1903. ###############################################################################
  1904. comment "Legacy options removed in 2014.02"
  1905. config BR2_sh2
  1906. bool "sh2 support removed"
  1907. select BR2_LEGACY
  1908. help
  1909. Due to an inexistent user base and generally poor Linux
  1910. support, the support for the SH2 architecture was removed.
  1911. config BR2_sh3
  1912. bool "sh3 support removed"
  1913. select BR2_LEGACY
  1914. help
  1915. Due to an inexistent user base and generally poor Linux
  1916. support, the support for the SH3 architecture was removed.
  1917. config BR2_sh3eb
  1918. bool "sh3eb support removed"
  1919. select BR2_LEGACY
  1920. help
  1921. Due to an inexistent user base and generally poor Linux
  1922. support, the support for the SH3eb architecture was removed.
  1923. config BR2_KERNEL_HEADERS_3_1
  1924. bool "kernel headers version 3.1.x are no longer supported"
  1925. select BR2_KERNEL_HEADERS_3_2
  1926. select BR2_LEGACY
  1927. help
  1928. Version 3.1.x of the Linux kernel headers have been deprecated
  1929. for more than four buildroot releases and are now removed.
  1930. As an alternative, version 3.2.x of the headers have been
  1931. automatically selected in your configuration.
  1932. config BR2_KERNEL_HEADERS_3_3
  1933. bool "kernel headers version 3.3.x are no longer supported"
  1934. select BR2_KERNEL_HEADERS_3_2
  1935. select BR2_LEGACY
  1936. help
  1937. Version 3.3.x of the Linux kernel headers have been deprecated
  1938. for more than four buildroot releases and are now removed.
  1939. As an alternative, version 3.2.x of the headers have been
  1940. automatically selected in your configuration.
  1941. config BR2_KERNEL_HEADERS_3_5
  1942. bool "kernel headers version 3.5.x are no longer supported"
  1943. select BR2_KERNEL_HEADERS_3_4
  1944. select BR2_LEGACY
  1945. help
  1946. Version 3.5.x of the Linux kernel headers have been deprecated
  1947. for more than four buildroot releases and are now removed.
  1948. As an alternative, version 3.4.x of the headers have been
  1949. automatically selected in your configuration.
  1950. config BR2_GDB_VERSION_7_2
  1951. bool "gdb 7.2.x is no longer supported"
  1952. select BR2_GDB_VERSION_7_6
  1953. select BR2_LEGACY
  1954. help
  1955. Version 7.2.x of gdb has been deprecated for more than four
  1956. buildroot releases and is now removed. As an alternative, gdb
  1957. 7.5.x has been automatically selected in your configuration.
  1958. config BR2_GDB_VERSION_7_3
  1959. bool "gdb 7.3.x is no longer supported"
  1960. select BR2_GDB_VERSION_7_6
  1961. select BR2_LEGACY
  1962. help
  1963. Version 7.3.x of gdb has been deprecated for more than four
  1964. buildroot releases and is now removed. As an alternative, gdb
  1965. 7.5.x has been automatically selected in your configuration.
  1966. config BR2_PACKAGE_CCACHE
  1967. bool "ccache target package has been removed"
  1968. select BR2_LEGACY
  1969. help
  1970. The 'ccache' target package has been removed since it has been
  1971. deprecated for more than four buildroot releases.
  1972. Note: using ccache for speeding up builds is still supported.
  1973. config BR2_HAVE_DOCUMENTATION
  1974. bool "support for documentation on target has been removed"
  1975. select BR2_LEGACY
  1976. help
  1977. Support for documentation on target has been removed since it has
  1978. been deprecated for more than four buildroot releases.
  1979. config BR2_PACKAGE_AUTOMAKE
  1980. bool "automake target package has been removed"
  1981. select BR2_LEGACY
  1982. help
  1983. The 'automake' target package has been removed since it has been
  1984. deprecated for more than four buildroot releases.
  1985. Note: the host automake still exists.
  1986. config BR2_PACKAGE_AUTOCONF
  1987. bool "autoconf target package has been removed"
  1988. select BR2_LEGACY
  1989. help
  1990. The 'autoconf' target package has been removed since it has been
  1991. deprecated for more than four buildroot releases.
  1992. Note: the host autoconf still exists.
  1993. config BR2_PACKAGE_XSTROKE
  1994. bool "xstroke has been removed"
  1995. select BR2_LEGACY
  1996. help
  1997. The 'xstroke' package has been removed since it has been
  1998. deprecated for more than four buildroot releases.
  1999. config BR2_PACKAGE_LZMA
  2000. bool "lzma target package has been removed"
  2001. select BR2_LEGACY
  2002. help
  2003. The 'lzma' target package has been removed since it has been
  2004. deprecated for more than four buildroot releases.
  2005. Note: generating lzma-compressed rootfs images is still supported.
  2006. config BR2_PACKAGE_TTCP
  2007. bool "ttcp has been removed"
  2008. select BR2_LEGACY
  2009. help
  2010. The 'ttcp' package has been removed since it has been
  2011. deprecated for more than four buildroot releases.
  2012. config BR2_PACKAGE_LIBNFC_LLCP
  2013. bool "libnfc-llcp has been replaced by libllcp"
  2014. select BR2_LEGACY
  2015. select BR2_PACKAGE_LIBLLCP
  2016. help
  2017. The 'libnfc-llcp' package has been removed since upstream renamed
  2018. to 'libllcp'. We have added a new package for 'libllcp' and bumped
  2019. the version at the same time.
  2020. config BR2_PACKAGE_MYSQL_CLIENT
  2021. bool "MySQL client renamed to MySQL"
  2022. select BR2_LEGACY
  2023. select BR2_PACKAGE_MYSQL
  2024. help
  2025. The option has been renamed BR2_PACKAGE_MYSQL
  2026. config BR2_PACKAGE_SQUASHFS3
  2027. bool "squashfs3 has been removed"
  2028. select BR2_LEGACY
  2029. select BR2_PACKAGE_SQUASHFS
  2030. help
  2031. The 'squashfs3' package has been removed since it has been
  2032. deprecated for more than four buildroot releases. Package
  2033. 'squashfs' (4) has been selected automatically as replacement.
  2034. config BR2_TARGET_ROOTFS_SQUASHFS3
  2035. bool "squashfs3 rootfs support has been removed"
  2036. select BR2_LEGACY
  2037. help
  2038. Together with the removal of the squashfs3 package, support
  2039. for squashfs3 root filesystems has been removed too. Squashfs
  2040. root filesystems will automatically use squashfs4 now.
  2041. config BR2_PACKAGE_NETKITBASE
  2042. bool "netkitbase has been removed"
  2043. select BR2_LEGACY
  2044. help
  2045. The 'netkitbase' package has been removed since it has been
  2046. deprecated since 2012.11. This package provided 'inetd'
  2047. which is replaced by 'xinet' and 'ping' which is replaced by
  2048. 'busybox' or 'fping'.
  2049. config BR2_PACKAGE_NETKITTELNET
  2050. bool "netkittelnet has been removed"
  2051. select BR2_LEGACY
  2052. help
  2053. The 'netkittelnet' package has been removed since it has
  2054. been deprecated since 2012.11. 'busybox' provides a telnet
  2055. client and should be used instead.
  2056. config BR2_PACKAGE_LUASQL
  2057. bool "luasql has been replaced by luasql-sqlite3"
  2058. select BR2_PACKAGE_LUASQL_SQLITE3
  2059. select BR2_LEGACY
  2060. help
  2061. The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
  2062. config BR2_PACKAGE_LUACJSON
  2063. bool "luacjson has been replaced by lua-cjson"
  2064. select BR2_PACKAGE_LUA_CJSON
  2065. select BR2_LEGACY
  2066. help
  2067. The option has been renamed BR2_PACKAGE_LUA_CJSON.
  2068. ###############################################################################
  2069. comment "Legacy options removed in 2013.11"
  2070. config BR2_PACKAGE_LVM2_DMSETUP_ONLY
  2071. bool "lvm2's 'dmsetup only' option removed"
  2072. select BR2_LEGACY
  2073. help
  2074. The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
  2075. led to problems with other packages that need the full lvm2
  2076. suite. Therefore, the option has been replaced with the positive
  2077. BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
  2078. # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
  2079. # in order to automatically propagate old configs
  2080. config BR2_PACKAGE_QT_JAVASCRIPTCORE
  2081. bool "qt javascriptcore option removed"
  2082. select BR2_LEGACY
  2083. help
  2084. The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
  2085. force the activation or disabling of the JIT compiler in the
  2086. Qt Javascript interpreter. However, the JIT compiler is not
  2087. available for all architectures, so forcing its activation
  2088. does not always work. Moreover, Qt knows by itself for which
  2089. architectures JIT support is possible, and will
  2090. automatically enable it if possible.
  2091. Therefore, this option was in fact useless, and causing
  2092. build problems when enabled on architectures for which the
  2093. JIT support was not available. It has been removed, and
  2094. there is no replacement: Qt will enable JIT at compile time
  2095. when possible.
  2096. config BR2_PACKAGE_MODULE_INIT_TOOLS
  2097. bool "module-init-tools replaced by kmod"
  2098. select BR2_PACKAGE_KMOD
  2099. select BR2_PACKAGE_KMOD_TOOLS
  2100. select BR2_LEGACY
  2101. help
  2102. The 'module-init-tools' package has been removed, since it
  2103. has been depracated upstream and replaced by 'kmod'.
  2104. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
  2105. string "u-boot: the git repository URL option has been renamed"
  2106. help
  2107. The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
  2108. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
  2109. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
  2110. bool
  2111. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
  2112. select BR2_LEGACY
  2113. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
  2114. # boot/uboot/Config.in
  2115. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
  2116. string "u-boot: the git repository version option has been renamed"
  2117. help
  2118. The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
  2119. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
  2120. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
  2121. bool
  2122. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
  2123. select BR2_LEGACY
  2124. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
  2125. # boot/uboot/Config.in
  2126. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
  2127. string "linux: the git repository URL option has been renamed"
  2128. help
  2129. The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
  2130. been renamed to
  2131. BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
  2132. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
  2133. bool
  2134. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
  2135. select BR2_LEGACY
  2136. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
  2137. # linux/Config.in
  2138. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
  2139. string "linux: the git repository version option has been renamed"
  2140. help
  2141. The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
  2142. been renamed to
  2143. BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
  2144. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
  2145. bool
  2146. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
  2147. select BR2_LEGACY
  2148. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
  2149. # linux/Config.in
  2150. ###############################################################################
  2151. comment "Legacy options removed in 2013.08"
  2152. config BR2_ARM_OABI
  2153. bool "ARM OABI support has been removed"
  2154. select BR2_LEGACY
  2155. help
  2156. The support for the ARM OABI was deprecated since a while,
  2157. and has been removed completely from Buildroot. It is also
  2158. deprecated in upstream gcc, since gcc 4.7. People should
  2159. switch to EABI instead, which should not be a problem as
  2160. long as you don't have pre-built OABI binaries in your
  2161. system that you can't recompile.
  2162. config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
  2163. bool "dosfstools dosfsck renamed to fsck.fat"
  2164. select BR2_LEGACY
  2165. select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
  2166. help
  2167. dosfsck was renamed upstream to fsck.fat for consistency.
  2168. config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
  2169. bool "dosfstools dosfslabel renamed to fatlabel"
  2170. select BR2_LEGACY
  2171. select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
  2172. help
  2173. doslabel was renamed upstream to fatlabel for consistency.
  2174. config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
  2175. bool "dosfstools mkdosfs renamed to mkfs.fat"
  2176. select BR2_LEGACY
  2177. select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
  2178. help
  2179. mkdosfs was renamed upstream to mkfs.fat for consistency.
  2180. config BR2_ELF2FLT
  2181. bool "the elf2flt option has been renamed"
  2182. select BR2_LEGACY
  2183. help
  2184. The BR2_ELF2FLT option has been renamed to
  2185. BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
  2186. the package infrastructure.
  2187. config BR2_VFP_FLOAT
  2188. bool "the ARM VFP floating point option has been renamed"
  2189. select BR2_LEGACY
  2190. help
  2191. Due to a major refactoring of the floating-point handling of
  2192. the ARM architecture support, the BR2_VFP_FLOAT option has
  2193. been replaced with a choice of options that allows to select
  2194. between various VFP versions/capabilities.
  2195. config BR2_PACKAGE_GCC_TARGET
  2196. bool "gcc on the target filesystem has been removed"
  2197. select BR2_LEGACY
  2198. help
  2199. The support for gcc in the target filesystem was deprecated
  2200. since a while, and has been removed completely from Buildroot.
  2201. See Buildroot's documentation for more explanations.
  2202. config BR2_HAVE_DEVFILES
  2203. bool "development files in target filesystem has been removed"
  2204. select BR2_LEGACY
  2205. help
  2206. The installation of the development files in the target
  2207. filesystem was deprecated since a while, and has been removed
  2208. completely from Buildroot.
  2209. See Buildroot's documentation for more explanations.
  2210. ###############################################################################
  2211. comment "Legacy options removed in 2013.05"
  2212. config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
  2213. bool "Realtek 8192 replaced by Realtek 81xx"
  2214. select BR2_LEGACY
  2215. select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
  2216. help
  2217. Now covers the whole Realtek 81xx familly: 8188/8192.
  2218. config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
  2219. bool "Realtek 8712 replaced by Realtek 87xx"
  2220. select BR2_LEGACY
  2221. select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
  2222. help
  2223. Now covers the whole Realtek 87xx familly: 8712/8723.
  2224. ###############################################################################
  2225. comment "Legacy options removed in 2013.02"
  2226. config BR2_sa110
  2227. bool "sa110 ARM target switched to strongarm"
  2228. select BR2_LEGACY
  2229. select BR2_strongarm
  2230. help
  2231. The SA110 is the same as a generic StrongARM, it just differs
  2232. in speed, peripherals and cache.
  2233. config BR2_sa1100
  2234. bool "sa1100 ARM target switched to strongarm"
  2235. select BR2_LEGACY
  2236. select BR2_strongarm
  2237. help
  2238. The SA1100 is the same as a generic StrongARM, it just differs
  2239. in speed, peripherals and cache.
  2240. config BR2_PACKAGE_GDISK
  2241. bool "gdisk has been replaced by gptfdisk"
  2242. select BR2_LEGACY
  2243. select BR2_PACKAGE_GPTFDISK
  2244. help
  2245. The option has been renamed BR2_PACKAGE_GPTFDISK.
  2246. config BR2_PACKAGE_GDISK_GDISK
  2247. bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
  2248. select BR2_LEGACY
  2249. select BR2_PACKAGE_GPTFDISK
  2250. select BR2_PACKAGE_GPTFDISK_GDISK
  2251. help
  2252. The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
  2253. config BR2_PACKAGE_GDISK_SGDISK
  2254. bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
  2255. select BR2_LEGACY
  2256. select BR2_PACKAGE_GPTFDISK
  2257. select BR2_PACKAGE_GPTFDISK_SGDISK
  2258. help
  2259. The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
  2260. config BR2_PACKAGE_GDB_HOST
  2261. bool "gdb for the host option has been renamed"
  2262. select BR2_PACKAGE_HOST_GDB
  2263. select BR2_LEGACY
  2264. help
  2265. Due to the conversion of gdb to the package infrastructure,
  2266. the BR2_PACKAGE_GDB_HOST option has been renamed
  2267. BR2_PACKAGE_HOST_GDB.
  2268. config BR2_PACKAGE_DIRECTB_DITHER_RGB16
  2269. bool "DirectFB RGB16 dithering option has been renamed"
  2270. select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
  2271. select BR2_LEGACY
  2272. help
  2273. The option has been renamed
  2274. BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
  2275. config BR2_PACKAGE_DIRECTB_TESTS
  2276. bool "DirectFB Tests option has been renamed"
  2277. select BR2_PACKAGE_DIRECTFB_TESTS
  2278. select BR2_LEGACY
  2279. help
  2280. The option has been renamed
  2281. BR2_PACKAGE_DIRECTFB_TESTS.
  2282. ###############################################################################
  2283. comment "Legacy options removed in 2012.11"
  2284. config BR2_PACKAGE_CUSTOMIZE
  2285. bool "customize package has been removed"
  2286. select BR2_LEGACY
  2287. help
  2288. The 'customize' special package has been removed. Instead,
  2289. we recommend to create either your own packages, or use a
  2290. post-build script to customize your root filesystem. See
  2291. Buildroot's documentation for more details.
  2292. config BR2_PACKAGE_XSERVER_xorg
  2293. bool "X.org modular server"
  2294. select BR2_LEGACY
  2295. select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
  2296. help
  2297. The option has been renamed
  2298. BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
  2299. config BR2_PACKAGE_XSERVER_tinyx
  2300. bool "KDrive / TinyX server"
  2301. select BR2_LEGACY
  2302. select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
  2303. help
  2304. The option has been renamed
  2305. BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
  2306. config BR2_PACKAGE_PTHREAD_STUBS
  2307. bool "pthread-stubs option has been renamed"
  2308. select BR2_LEGACY
  2309. select BR2_PACKAGE_LIBPTHREAD_STUBS
  2310. help
  2311. For consistency reason, the pthread-stubs package has been
  2312. renamed to libpthread-stubs.
  2313. ###############################################################################
  2314. comment "Legacy options removed in 2012.08"
  2315. config BR2_PACKAGE_GETTEXT_STATIC
  2316. bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
  2317. select BR2_LEGACY
  2318. help
  2319. To build a static gettext library, select BR2_PREFER_STATIC_LIB.
  2320. config BR2_PACKAGE_LIBINTL
  2321. bool "libintl"
  2322. select BR2_LEGACY
  2323. select BR2_PACKAGE_GETTEXT
  2324. help
  2325. libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
  2326. only installs the library, not the executables.
  2327. config BR2_PACKAGE_INPUT_TOOLS_EVTEST
  2328. bool "input-tools evtest is now a separate package evtest"
  2329. select BR2_LEGACY
  2330. select BR2_PACKAGE_EVTEST
  2331. help
  2332. The evtest program from input-tools is now a separate package.
  2333. config BR2_BFIN_FDPIC
  2334. bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
  2335. select BR2_BINFMT_FDPIC
  2336. select BR2_LEGACY
  2337. config BR2_BFIN_FLAT
  2338. bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
  2339. select BR2_BINFMT_FLAT
  2340. select BR2_LEGACY
  2341. endmenu
  2342. endif # !SKIP_LEGACY