Config.in.legacy 73 KB

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