Config.in.legacy 69 KB

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