Config.in.legacy 99 KB

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