Config.in.legacy 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926
  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. #
  20. # For string options, it is not possible to directly select another symbol. In
  21. # this case, a hidden wrap bool option has to be added, that defaults to y if
  22. # the old string is not set at its default value. The wrap symbol should select
  23. # BR2_LEGACY.
  24. # If the original symbol has been renamed, the new symbol should use the value
  25. # of the old symbol as default. This requires a change outside of
  26. # Config.in.legacy, and this should be clearly marked as such below, so that
  27. # removal of legacy options also include the removal of these external
  28. # references.
  29. #
  30. # [Example: renaming a string option from FOO to BAR]
  31. # original symbol:
  32. # config BR2_FOO_STRING
  33. # string "Some foo string"
  34. #
  35. # becomes:
  36. # config BR2_BAR_STRING
  37. # string "Some bar string"
  38. # default BR2_FOO_STRING if BR2_FOO_STRING != "" # legacy
  39. #
  40. # and in Config.in.legacy:
  41. # config BR2_FOO_STRING
  42. # string "The foo string has been renamed"
  43. # help
  44. # <suitable help text>
  45. #
  46. # config BR2_FOO_STRING_WRAP
  47. # bool
  48. # default y if BR2_FOO_STRING != ""
  49. # select BR2_LEGACY
  50. #
  51. # # Note: BR2_FOO_STRING is still referenced from package/foo/Config.in
  52. #
  53. # [End of example]
  54. config BR2_LEGACY
  55. bool
  56. help
  57. This option is selected automatically when your old .config uses an
  58. option that no longer exists in current buildroot. In that case, the
  59. build will fail. Look for config options which are selected in the
  60. menu below: they no longer exist and should be replaced by something
  61. else.
  62. # This comment fits exactly in a 80-column display
  63. comment "Legacy detected: check the content of the menu below"
  64. depends on BR2_LEGACY
  65. menu "Legacy config options"
  66. if BR2_LEGACY
  67. comment "----------------------------------------------------"
  68. comment "Your old configuration uses legacy options that no "
  69. comment "longer exist in buildroot, as indicated in the menu "
  70. comment "below. As long as these options stay selected, or in"
  71. comment "case of string options are non-empty, the build "
  72. comment "will fail. "
  73. comment "* "
  74. comment "Where possible, an automatic conversion from old to "
  75. comment "new symbols has been performed. Before making any "
  76. comment "change in this legacy menu, make sure to exit the "
  77. comment "configuration editor a first time and save the "
  78. comment "configuration. Otherwise, the automatic conversion "
  79. comment "of symbols will be lost. "
  80. comment "* "
  81. comment "After this initial save, reopen the configuration "
  82. comment "editor, inspect the options selected below, read "
  83. comment "their help texts, and verify/update the new "
  84. comment "configuration in the corresponding configuration "
  85. comment "menus. When everything is ok, you can disable the "
  86. comment "legacy options in the menu below. Once you have "
  87. comment "disabled all legacy options, this text will "
  88. comment "disappear and you will be able to start the build. "
  89. comment "* "
  90. comment "Note: at some point in the future, the oldest legacy"
  91. comment "options will be removed, and configuration files "
  92. comment "that still have those options set, will fail to "
  93. comment "build, or run, in unpredictable ways. "
  94. comment "----------------------------------------------------"
  95. endif
  96. ###############################################################################
  97. comment "Legacy options removed in 2014.08"
  98. config BR2_KERNEL_HEADERS_3_8
  99. bool "kernel headers version 3.8.x are no longer supported"
  100. select BR2_KERNEL_HEADERS_3_9
  101. select BR2_LEGACY
  102. help
  103. Version 3.8.x of the Linux kernel headers have been deprecated
  104. for more than four buildroot releases and are now removed.
  105. As an alternative, version 3.9.x of the headers have been
  106. automatically selected in your configuration.
  107. config BR2_PACKAGE_GETTEXT_TOOLS
  108. bool "support for gettext-tools on target has been removed"
  109. select BR2_LEGACY
  110. help
  111. The option to install the gettext utilities on the target
  112. has been removed. This is not necessary as Buildroot is not
  113. designed to provide a full development environment on the
  114. target. gettext tools should be used on the build machine
  115. instead.
  116. config BR2_PACKAGE_PROCPS
  117. bool "procps has been replaced by procps-ng"
  118. select BR2_PACKAGE_PROCPS_NG
  119. select BR2_LEGACY
  120. help
  121. The procps package has been replaced by the equivalent procps-ng.
  122. config BR2_BINUTILS_VERSION_2_20_1
  123. bool "binutils 2.20.1 has been removed"
  124. select BR2_LEGACY
  125. help
  126. The 2.20.1 version of binutils has been removed. Use a newer
  127. version instead.
  128. config BR2_BINUTILS_VERSION_2_21
  129. bool "binutils 2.21 has been removed"
  130. select BR2_LEGACY
  131. help
  132. The 2.21 version of binutils has been removed. Use a newer
  133. version instead.
  134. config BR2_BINUTILS_VERSION_2_23_1
  135. bool "binutils 2.23.1 has been removed"
  136. select BR2_LEGACY
  137. help
  138. The 2.23.1 version of binutils has been removed. Use a newer
  139. version instead.
  140. config BR2_UCLIBC_VERSION_0_9_32
  141. bool "uclibc 0.9.32 has been removed"
  142. select BR2_LEGACY
  143. help
  144. The 0.9.32 version of uClibc has been removed. Use a newer
  145. version instead.
  146. config BR2_GCC_VERSION_4_3_X
  147. bool "gcc 4.3.x has been removed"
  148. select BR2_LEGACY
  149. help
  150. The 4.3.x version of gcc has been removed. Use a newer
  151. version instead.
  152. config BR2_GCC_VERSION_4_6_X
  153. bool "gcc 4.6.x has been removed"
  154. select BR2_LEGACY
  155. help
  156. The 4.6.x version of gcc has been removed. Use a newer
  157. version instead.
  158. config BR2_GDB_VERSION_7_4
  159. bool "gdb 7.4 has been removed"
  160. select BR2_LEGACY
  161. help
  162. The 7.4 version of gdb has been removed. Use a newer version
  163. instead.
  164. config BR2_GDB_VERSION_7_5
  165. bool "gdb 7.5 has been removed"
  166. select BR2_LEGACY
  167. help
  168. The 7.5 version of gdb has been removed. Use a newer version
  169. instead.
  170. config BR2_BUSYBOX_VERSION_1_19_X
  171. bool "busybox version selection has been removed"
  172. select BR2_LEGACY
  173. help
  174. The possibility of selecting the Busybox version has been
  175. removed. Use the latest version provided by the Busybox
  176. package instead.
  177. config BR2_BUSYBOX_VERSION_1_20_X
  178. bool "busybox version selection has been removed"
  179. select BR2_LEGACY
  180. help
  181. The possibility of selecting the Busybox version has been
  182. removed. Use the latest version provided by the Busybox
  183. package instead.
  184. config BR2_BUSYBOX_VERSION_1_21_X
  185. bool "busybox version selection has been removed"
  186. select BR2_LEGACY
  187. help
  188. The possibility of selecting the Busybox version has been
  189. removed. Use the latest version provided by the Busybox
  190. package instead.
  191. config BR2_PACKAGE_LIBV4L_DECODE_TM6000
  192. bool "decode_tm6000"
  193. select BR2_PACKAGE_LIBV4L_UTILS
  194. select BR2_LEGACY
  195. help
  196. This libv4l option has been deprecated and replaced by a single
  197. option to build all the libv4l utilities.
  198. config BR2_PACKAGE_LIBV4L_IR_KEYTABLE
  199. bool "ir-keytable"
  200. select BR2_PACKAGE_LIBV4L_UTILS
  201. select BR2_LEGACY
  202. help
  203. This libv4l option has been deprecated and replaced by a single
  204. option to build all the libv4l utilities.
  205. config BR2_PACKAGE_LIBV4L_V4L2_COMPLIANCE
  206. bool "v4l2-compliance"
  207. select BR2_PACKAGE_LIBV4L_UTILS
  208. select BR2_LEGACY
  209. help
  210. This libv4l option has been deprecated and replaced by a single
  211. option to build all the libv4l utilities.
  212. config BR2_PACKAGE_LIBV4L_V4L2_CTL
  213. bool "v4l2-ctl"
  214. select BR2_PACKAGE_LIBV4L_UTILS
  215. select BR2_LEGACY
  216. help
  217. This libv4l option has been deprecated and replaced by a single
  218. option to build all the libv4l utilities.
  219. config BR2_PACKAGE_LIBV4L_V4L2_DBG
  220. bool "v4l2-dbg"
  221. select BR2_PACKAGE_LIBV4L_UTILS
  222. select BR2_LEGACY
  223. help
  224. This libv4l option has been deprecated and replaced by a single
  225. option to build all the libv4l utilities.
  226. ###############################################################################
  227. comment "Legacy options removed in 2014.05"
  228. config BR2_PACKAGE_EVTEST_CAPTURE
  229. bool "evtest-capture support removed (dropped since evtest 1.31)"
  230. select BR2_LEGACY
  231. help
  232. Support for evtest-capture has been removed (dropped from
  233. evtest package since version 1.31), use evemu package
  234. instead.
  235. config BR2_KERNEL_HEADERS_3_6
  236. bool "kernel headers version 3.6.x are no longer supported"
  237. select BR2_KERNEL_HEADERS_3_9
  238. select BR2_LEGACY
  239. help
  240. Version 3.6.x of the Linux kernel headers have been deprecated
  241. for more than four buildroot releases and are now removed.
  242. As an alternative, version 3.8.x of the headers have been
  243. automatically selected in your configuration.
  244. config BR2_KERNEL_HEADERS_3_7
  245. bool "kernel headers version 3.7.x are no longer supported"
  246. select BR2_KERNEL_HEADERS_3_9
  247. select BR2_LEGACY
  248. help
  249. Version 3.7.x of the Linux kernel headers have been deprecated
  250. for more than four buildroot releases and are now removed.
  251. As an alternative, version 3.8.x of the headers have been
  252. automatically selected in your configuration.
  253. config BR2_PACKAGE_VALA
  254. bool "vala target package has been removed"
  255. select BR2_LEGACY
  256. help
  257. The 'vala' target package has been removed since it has been
  258. deprecated for more than four buildroot releases.
  259. Note: the host vala package still exists.
  260. config BR2_TARGET_TZ_ZONELIST
  261. default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
  262. config BR2_PACKAGE_TZDATA_ZONELIST
  263. string "tzdata: the timezone list option has been renamed"
  264. help
  265. The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
  266. BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
  267. menu. You'll need to select BR2_TARGET_TZ_INFO.
  268. config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
  269. bool
  270. default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
  271. select BR2_LEGACY
  272. config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
  273. bool "Lua command-line editing none has been renamed"
  274. select BR2_LEGACY
  275. help
  276. The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
  277. renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
  278. it in the corresponding choice.
  279. config BR2_PACKAGE_LUA_INTERPRETER_READLINE
  280. bool "Lua command-line editing using readline has been renamed"
  281. select BR2_LEGACY
  282. help
  283. The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
  284. renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
  285. it in the corresponding choice.
  286. config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
  287. bool "Lua command-line editing using linenoise has been renamed"
  288. select BR2_LEGACY
  289. help
  290. The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
  291. renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
  292. it in the corresponding choice.
  293. config BR2_PACKAGE_DVB_APPS_UTILS
  294. bool "dvb-apps utilities now built by default"
  295. select BR2_LEGACY
  296. help
  297. The dvb-apps utilities are now always built when the dvb-apps
  298. package is selected.
  299. config BR2_KERNEL_HEADERS_SNAP
  300. bool "Local Linux snapshot support removed"
  301. select BR2_LEGACY
  302. help
  303. Support for using a custom snapshot to install the Linux
  304. kernel headers has been removed.
  305. config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
  306. bool "/dev management by udev removed"
  307. select BR2_LEGACY
  308. help
  309. The 'udev' package has been converted to a virtual package.
  310. The providers for this feature are: 'eudev', 'systemd'.
  311. Therefore, if you are not using 'systemd' as init system, you
  312. must choose 'Dynamic using eudev' in the '/dev management'
  313. menu to get the same behaviour as in your old configuration.
  314. If you are using 'systemd', its internal implementation of
  315. 'udev' will be used automatically.
  316. You must also check the packages depending on 'udev' are still
  317. selected.
  318. config BR2_PACKAGE_UDEV
  319. bool "udev is now a virtual package"
  320. select BR2_LEGACY
  321. select BR2_PACKAGE_HAS_UDEV
  322. help
  323. The 'udev' package has been converted to a virtual package.
  324. The providers for this feature are: 'eudev', 'systemd'.
  325. Your old configuration refers to packages depending on 'udev',
  326. either for build or at runtime.
  327. Check that a 'udev' provider is selected. If you are not using
  328. 'systemd' as init system, 'eudev' should be selected, which is
  329. the case if '/dev management' is set to 'Dynamic using eudev'.
  330. If you are using 'systemd', its internal implementation of 'udev'
  331. is used.
  332. config BR2_PACKAGE_UDEV_RULES_GEN
  333. bool "udev rules generation handled by provider"
  334. select BR2_LEGACY
  335. select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
  336. select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
  337. help
  338. The 'udev' package has been converted to a virtual package.
  339. The providers for this feature are: 'eudev', 'systemd'.
  340. If you are not using 'systemd' as init system, udev rules
  341. generation will be handled by 'eudev'. Check that
  342. '/dev management' is set to 'Dynamic using eudev' to get
  343. the same behaviour as in your old configuration.
  344. If you are using 'systemd', it internal implementation of 'udev'
  345. will generate the rules.
  346. config BR2_PACKAGE_UDEV_ALL_EXTRAS
  347. bool "udev extras removed"
  348. select BR2_LEGACY
  349. help
  350. The 'udev' package has been converted to a virtual package.
  351. The providers for this feature are: 'eudev', 'systemd'.
  352. The option to enable the extra features of 'udev' (gudev, ...)
  353. has been removed. These features are automatically enabled in
  354. the 'udev' providers if the dependencies are selected. For
  355. example, selecting 'libglib2' will trigger the build of gudev.
  356. config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
  357. bool "xlib-libpthread-stubs option has been renamed"
  358. depends on BR2_PACKAGE_XORG7
  359. select BR2_LEGACY
  360. select BR2_PACKAGE_LIBPTHREAD_STUBS
  361. help
  362. The pthread stubs neither depend on X11 nor Xlib. Thus the
  363. package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
  364. ###############################################################################
  365. comment "Legacy options removed in 2014.02"
  366. config BR2_sh2
  367. bool "sh2 support removed"
  368. help
  369. Due to an inexistent user base and generally poor Linux
  370. support, the support for the SH2 architecture was removed.
  371. config BR2_sh3
  372. bool "sh3 support removed"
  373. help
  374. Due to an inexistent user base and generally poor Linux
  375. support, the support for the SH3 architecture was removed.
  376. config BR2_sh3eb
  377. bool "sh3eb support removed"
  378. help
  379. Due to an inexistent user base and generally poor Linux
  380. support, the support for the SH3eb architecture was removed.
  381. config BR2_KERNEL_HEADERS_3_1
  382. bool "kernel headers version 3.1.x are no longer supported"
  383. select BR2_KERNEL_HEADERS_3_2
  384. select BR2_LEGACY
  385. help
  386. Version 3.1.x of the Linux kernel headers have been deprecated
  387. for more than four buildroot releases and are now removed.
  388. As an alternative, version 3.2.x of the headers have been
  389. automatically selected in your configuration.
  390. config BR2_KERNEL_HEADERS_3_3
  391. bool "kernel headers version 3.3.x are no longer supported"
  392. select BR2_KERNEL_HEADERS_3_4
  393. select BR2_LEGACY
  394. help
  395. Version 3.3.x of the Linux kernel headers have been deprecated
  396. for more than four buildroot releases and are now removed.
  397. As an alternative, version 3.4.x of the headers have been
  398. automatically selected in your configuration.
  399. config BR2_KERNEL_HEADERS_3_5
  400. bool "kernel headers version 3.5.x are no longer supported"
  401. select BR2_KERNEL_HEADERS_3_9
  402. select BR2_LEGACY
  403. help
  404. Version 3.5.x of the Linux kernel headers have been deprecated
  405. for more than four buildroot releases and are now removed.
  406. As an alternative, version 3.8.x of the headers have been
  407. automatically selected in your configuration.
  408. config BR2_GDB_VERSION_7_2
  409. bool "gdb 7.2.x is no longer supported"
  410. select BR2_GDB_VERSION_7_6
  411. select BR2_LEGACY
  412. help
  413. Version 7.2.x of gdb has been deprecated for more than four
  414. buildroot releases and is now removed. As an alternative, gdb
  415. 7.5.x has been automatically selected in your configuration.
  416. config BR2_GDB_VERSION_7_3
  417. bool "gdb 7.3.x is no longer supported"
  418. select BR2_GDB_VERSION_7_6
  419. select BR2_LEGACY
  420. help
  421. Version 7.3.x of gdb has been deprecated for more than four
  422. buildroot releases and is now removed. As an alternative, gdb
  423. 7.5.x has been automatically selected in your configuration.
  424. config BR2_PACKAGE_CCACHE
  425. bool "ccache target package has been removed"
  426. select BR2_LEGACY
  427. help
  428. The 'ccache' target package has been removed since it has been
  429. deprecated for more than four buildroot releases.
  430. Note: using ccache for speeding up builds is still supported.
  431. config BR2_HAVE_DOCUMENTATION
  432. bool "support for documentation on target has been removed"
  433. select BR2_LEGACY
  434. help
  435. Support for documentation on target has been removed since it has
  436. been deprecated for more than four buildroot releases.
  437. config BR2_PACKAGE_AUTOMAKE
  438. bool "automake target package has been removed"
  439. select BR2_LEGACY
  440. help
  441. The 'automake' target package has been removed since it has been
  442. deprecated for more than four buildroot releases.
  443. Note: the host automake still exists.
  444. config BR2_PACKAGE_AUTOCONF
  445. bool "autoconf target package has been removed"
  446. select BR2_LEGACY
  447. help
  448. The 'autoconf' target package has been removed since it has been
  449. deprecated for more than four buildroot releases.
  450. Note: the host autoconf still exists.
  451. config BR2_PACKAGE_XSTROKE
  452. bool "xstroke has been removed"
  453. select BR2_LEGACY
  454. help
  455. The 'xstroke' package has been removed since it has been
  456. deprecated for more than four buildroot releases.
  457. config BR2_PACKAGE_LZMA
  458. bool "lzma target package has been removed"
  459. select BR2_LEGACY
  460. help
  461. The 'lzma' target package has been removed since it has been
  462. deprecated for more than four buildroot releases.
  463. Note: generating lzma-compressed rootfs images is still supported.
  464. config BR2_PACKAGE_TTCP
  465. bool "ttcp has been removed"
  466. select BR2_LEGACY
  467. help
  468. The 'ttcp' package has been removed since it has been
  469. deprecated for more than four buildroot releases.
  470. config BR2_PACKAGE_LIBNFC_LLCP
  471. bool "libnfc-llcp has been replaced by libllcp"
  472. select BR2_LEGACY
  473. select BR2_PACKAGE_LIBLLCP
  474. help
  475. The 'libnfc-llcp' package has been removed since upstream renamed
  476. to 'libllcp'. We have added a new package for 'libllcp' and bumped
  477. the version at the same time.
  478. config BR2_PACKAGE_MYSQL_CLIENT
  479. bool "MySQL client renamed to MySQL"
  480. select BR2_LEGACY
  481. select BR2_PACKAGE_MYSQL
  482. help
  483. The option has been renamed BR2_PACKAGE_MYSQL
  484. config BR2_PACKAGE_SQUASHFS3
  485. bool "squashfs3 has been removed"
  486. select BR2_LEGACY
  487. select BR2_PACKAGE_SQUASHFS
  488. help
  489. The 'squashfs3' package has been removed since it has been
  490. deprecated for more than four buildroot releases. Package
  491. 'squashfs' (4) has been selected automatically as replacement.
  492. config BR2_TARGET_ROOTFS_SQUASHFS3
  493. bool "squashfs3 rootfs support has been removed"
  494. select BR2_LEGACY
  495. help
  496. Together with the removal of the squashfs3 package, support
  497. for squashfs3 root filesystems has been removed too. Squashfs
  498. root filesystems will automatically use squashfs4 now.
  499. config BR2_PACKAGE_NETKITBASE
  500. bool "netkitbase has been removed"
  501. select BR2_LEGACY
  502. help
  503. The 'netkitbase' package has been removed since it has been
  504. deprecated since 2012.11. This package provided 'inetd'
  505. which is replaced by 'xinet' and 'ping' which is replaced by
  506. 'busybox' or 'fping'.
  507. config BR2_PACKAGE_NETKITTELNET
  508. bool "netkittelnet has been removed"
  509. select BR2_LEGACY
  510. help
  511. The 'netkittelnet' package has been removed since it has
  512. been deprecated since 2012.11. 'busybox' provides a telnet
  513. client and should be used instead.
  514. config BR2_PACKAGE_LUASQL
  515. bool "luasql has been replaced by luasql-sqlite3"
  516. select BR2_PACKAGE_LUASQL_SQLITE3
  517. select BR2_LEGACY
  518. help
  519. The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
  520. config BR2_PACKAGE_LUACJSON
  521. bool "luacjson has been replaced by lua-cjson"
  522. select BR2_PACKAGE_LUA_CJSON
  523. select BR2_LEGACY
  524. help
  525. The option has been renamed BR2_PACKAGE_LUA_CJSON.
  526. ###############################################################################
  527. comment "Legacy options removed in 2013.11"
  528. config BR2_PACKAGE_LVM2_DMSETUP_ONLY
  529. bool "lvm2's 'dmsetup only' option removed"
  530. select BR2_LEGACY
  531. help
  532. The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
  533. led to problems with other packages that need the full lvm2
  534. suite. Therefore, the option has been replaced with the positive
  535. BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
  536. # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
  537. # in order to automatically propagate old configs
  538. config BR2_PACKAGE_QT_JAVASCRIPTCORE
  539. bool "qt javascriptcore option removed"
  540. select BR2_LEGACY
  541. help
  542. The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
  543. force the activation or disabling of the JIT compiler in the
  544. Qt Javascript interpreter. However, the JIT compiler is not
  545. available for all architectures, so forcing its activation
  546. does not always work. Moreover, Qt knows by itself for which
  547. architectures JIT support is possible, and will
  548. automatically enable it if possible.
  549. Therefore, this option was in fact useless, and causing
  550. build problems when enabled on architectures for which the
  551. JIT support was not available. It has been removed, and
  552. there is no replacement: Qt will enable JIT at compile time
  553. when possible.
  554. config BR2_PACKAGE_MODULE_INIT_TOOLS
  555. bool "module-init-tools replaced by kmod"
  556. select BR2_PACKAGE_KMOD
  557. select BR2_PACKAGE_KMOD_TOOLS
  558. select BR2_LEGACY
  559. help
  560. The 'module-init-tools' package has been removed, since it
  561. has been depracated upstream and replaced by 'kmod'.
  562. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
  563. string "u-boot: the git repository URL option has been renamed"
  564. help
  565. The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
  566. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
  567. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
  568. bool
  569. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
  570. select BR2_LEGACY
  571. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
  572. # boot/uboot/Config.in
  573. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
  574. string "u-boot: the git repository version option has been renamed"
  575. help
  576. The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
  577. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
  578. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
  579. bool
  580. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
  581. select BR2_LEGACY
  582. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
  583. # boot/uboot/Config.in
  584. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
  585. string "linux: the git repository URL option has been renamed"
  586. help
  587. The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
  588. been renamed to
  589. BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
  590. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
  591. bool
  592. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
  593. select BR2_LEGACY
  594. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
  595. # linux/Config.in
  596. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
  597. string "linux: the git repository version option has been renamed"
  598. help
  599. The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
  600. been renamed to
  601. BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
  602. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
  603. bool
  604. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
  605. select BR2_LEGACY
  606. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
  607. # linux/Config.in
  608. ###############################################################################
  609. comment "Legacy options removed in 2013.08"
  610. config BR2_ARM_OABI
  611. bool "ARM OABI support has been removed"
  612. select BR2_LEGACY
  613. help
  614. The support for the ARM OABI was deprecated since a while,
  615. and has been removed completely from Buildroot. It is also
  616. deprecated in upstream gcc, since gcc 4.7. People should
  617. switch to EABI instead, which should not be a problem as
  618. long as you don't have pre-built OABI binaries in your
  619. system that you can't recompile.
  620. config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
  621. bool "dosfstools dosfsck renamed to fsck.fat"
  622. select BR2_LEGACY
  623. select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
  624. help
  625. dosfsck was renamed upstream to fsck.fat for consistency.
  626. config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
  627. bool "dosfstools dosfslabel renamed to fatlabel"
  628. select BR2_LEGACY
  629. select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
  630. help
  631. doslabel was renamed upstream to fatlabel for consistency.
  632. config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
  633. bool "dosfstools mkdosfs renamed to mkfs.fat"
  634. select BR2_LEGACY
  635. select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
  636. help
  637. mkdosfs was renamed upstream to mkfs.fat for consistency.
  638. config BR2_ELF2FLT
  639. bool "the elf2flt option has been renamed"
  640. select BR2_LEGACY
  641. help
  642. The BR2_ELF2FLT option has been renamed to
  643. BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
  644. the package infrastructure.
  645. config BR2_VFP_FLOAT
  646. bool "the ARM VFP floating point option has been renamed"
  647. select BR2_LEGACY
  648. help
  649. Due to a major refactoring of the floating-point handling of
  650. the ARM architecture support, the BR2_VFP_FLOAT option has
  651. been replaced with a choice of options that allows to select
  652. between various VFP versions/capabilities.
  653. config BR2_PACKAGE_GCC_TARGET
  654. bool "gcc on the target filesystem has been removed"
  655. select BR2_LEGACY
  656. help
  657. The support for gcc in the target filesystem was deprecated
  658. since a while, and has been removed completely from Buildroot.
  659. See Buildroot's documentation for more explanations.
  660. config BR2_HAVE_DEVFILES
  661. bool "development files in target filesystem has been removed"
  662. select BR2_LEGACY
  663. help
  664. The installation of the development files in the target
  665. filesystem was deprecated since a while, and has been removed
  666. completely from Buildroot.
  667. See Buildroot's documentation for more explanations.
  668. ###############################################################################
  669. comment "Legacy options removed in 2013.05"
  670. config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
  671. bool "Realtek 8192 replaced by Realtek 81xx"
  672. select BR2_LEGACY
  673. select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
  674. help
  675. Now covers the whole Realtek 81xx familly: 8188/8192.
  676. config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
  677. bool "Realtek 8712 replaced by Realtek 87xx"
  678. select BR2_LEGACY
  679. select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
  680. help
  681. Now covers the whole Realtek 87xx familly: 8712/8723.
  682. ###############################################################################
  683. comment "Legacy options removed in 2013.02"
  684. config BR2_sa110
  685. bool "sa110 ARM target switched to strongarm"
  686. select BR2_LEGACY
  687. select BR2_strongarm
  688. help
  689. The SA110 is the same as a generic StrongARM, it just differs
  690. in speed, peripherals and cache.
  691. config BR2_sa1100
  692. bool "sa1100 ARM target switched to strongarm"
  693. select BR2_LEGACY
  694. select BR2_strongarm
  695. help
  696. The SA1100 is the same as a generic StrongARM, it just differs
  697. in speed, peripherals and cache.
  698. config BR2_PACKAGE_GDISK
  699. bool "gdisk has been replaced by gptfdisk"
  700. select BR2_LEGACY
  701. select BR2_PACKAGE_GPTFDISK
  702. help
  703. The option has been renamed BR2_PACKAGE_GPTFDISK.
  704. config BR2_PACKAGE_GDISK_GDISK
  705. bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
  706. select BR2_LEGACY
  707. select BR2_PACKAGE_GPTFDISK
  708. select BR2_PACKAGE_GPTFDISK_GDISK
  709. help
  710. The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
  711. config BR2_PACKAGE_GDISK_SGDISK
  712. bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
  713. select BR2_LEGACY
  714. select BR2_PACKAGE_GPTFDISK
  715. select BR2_PACKAGE_GPTFDISK_SGDISK
  716. help
  717. The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
  718. config BR2_PACKAGE_GDB_HOST
  719. bool "gdb for the host option has been renamed"
  720. select BR2_PACKAGE_HOST_GDB
  721. select BR2_LEGACY
  722. help
  723. Due to the conversion of gdb to the package infrastructure,
  724. the BR2_PACKAGE_GDB_HOST option has been renamed
  725. BR2_PACKAGE_HOST_GDB.
  726. config BR2_PACKAGE_DIRECTB_DITHER_RGB16
  727. bool "DirectFB RGB16 dithering option has been renamed"
  728. select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
  729. select BR2_LEGACY
  730. help
  731. The option has been renamed
  732. BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
  733. config BR2_PACKAGE_DIRECTB_TESTS
  734. bool "DirectFB Tests option has been renamed"
  735. select BR2_PACKAGE_DIRECTFB_TESTS
  736. select BR2_LEGACY
  737. help
  738. The option has been renamed
  739. BR2_PACKAGE_DIRECTFB_TESTS.
  740. ###############################################################################
  741. comment "Legacy options removed in 2012.11"
  742. config BR2_PACKAGE_CUSTOMIZE
  743. bool "customize package has been removed"
  744. select BR2_LEGACY
  745. help
  746. The 'customize' special package has been removed. Instead,
  747. we recommend to create either your own packages, or use a
  748. post-build script to customize your root filesystem. See
  749. Buildroot's documentation for more details.
  750. config BR2_PACKAGE_XSERVER_xorg
  751. bool "X.org modular server"
  752. select BR2_LEGACY
  753. select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
  754. help
  755. The option has been renamed
  756. BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
  757. config BR2_PACKAGE_XSERVER_tinyx
  758. bool "KDrive / TinyX server"
  759. select BR2_LEGACY
  760. select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
  761. help
  762. The option has been renamed
  763. BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
  764. config BR2_PACKAGE_PTHREAD_STUBS
  765. bool "pthread-stubs option has been renamed"
  766. select BR2_LEGACY
  767. select BR2_PACKAGE_LIBPTHREAD_STUBS
  768. help
  769. For consistency reason, the pthread-stubs package has been
  770. renamed to libpthread-stubs.
  771. ###############################################################################
  772. comment "Legacy options removed in 2012.08"
  773. config BR2_PACKAGE_GETTEXT_STATIC
  774. bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
  775. select BR2_LEGACY
  776. help
  777. To build a static gettext library, select BR2_PREFER_STATIC_LIB.
  778. config BR2_PACKAGE_LIBINTL
  779. bool "libintl"
  780. select BR2_LEGACY
  781. select BR2_PACKAGE_GETTEXT
  782. help
  783. libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
  784. only installs the library, not the executables.
  785. config BR2_PACKAGE_INPUT_TOOLS_EVTEST
  786. bool "input-tools evtest is now a separate package evtest"
  787. select BR2_LEGACY
  788. select BR2_PACKAGE_EVTEST
  789. help
  790. The evtest program from input-tools is now a separate package.
  791. config BR2_BFIN_FDPIC
  792. bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
  793. select BR2_BINFMT_FDPIC
  794. select BR2_LEGACY
  795. config BR2_BFIN_FLAT
  796. bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
  797. select BR2_BINFMT_FLAT
  798. select BR2_LEGACY
  799. endmenu