Config.in.legacy 97 KB

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