Config.in.legacy 95 KB

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