Config.in.legacy 84 KB

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