Config.in.legacy 97 KB

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