Config.in.legacy 76 KB

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