Config.in.legacy 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776
  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.05"
  98. config BR2_PACKAGE_EVTEST_CAPTURE
  99. bool "evtest-capture support removed (dropped since evtest 1.31)"
  100. select BR2_LEGACY
  101. help
  102. Support for evtest-capture has been removed (dropped from
  103. evtest package since version 1.31), use evemu package
  104. instead.
  105. config BR2_KERNEL_HEADERS_3_6
  106. bool "kernel headers version 3.6.x are no longer supported"
  107. select BR2_KERNEL_HEADERS_3_8
  108. select BR2_LEGACY
  109. help
  110. Version 3.6.x of the Linux kernel headers have been deprecated
  111. for more than four buildroot releases and are now removed.
  112. As an alternative, version 3.8.x of the headers have been
  113. automatically selected in your configuration.
  114. config BR2_KERNEL_HEADERS_3_7
  115. bool "kernel headers version 3.7.x are no longer supported"
  116. select BR2_KERNEL_HEADERS_3_8
  117. select BR2_LEGACY
  118. help
  119. Version 3.7.x of the Linux kernel headers have been deprecated
  120. for more than four buildroot releases and are now removed.
  121. As an alternative, version 3.8.x of the headers have been
  122. automatically selected in your configuration.
  123. config BR2_PACKAGE_VALA
  124. bool "vala target package has been removed"
  125. select BR2_LEGACY
  126. help
  127. The 'vala' target package has been removed since it has been
  128. deprecated for more than four buildroot releases.
  129. Note: the host vala package still exists.
  130. config BR2_TARGET_TZ_ZONELIST
  131. default BR2_PACKAGE_TZDATA_ZONELIST if BR2_PACKAGE_TZDATA_ZONELIST != ""
  132. config BR2_PACKAGE_TZDATA_ZONELIST
  133. string "tzdata: the timezone list option has been renamed"
  134. help
  135. The option BR2_PACKAGE_TZDATA_ZONELIST has been renamed to
  136. BR2_TARGET_TZ_ZONELIST, and moved to the "System configuration"
  137. menu. You'll need to select BR2_TARGET_TZ_INFO.
  138. config BR2_PACKAGE_TZDATA_ZONELIST_WRAP
  139. bool
  140. default y if BR2_PACKAGE_TZDATA_ZONELIST != ""
  141. select BR2_LEGACY
  142. config BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE
  143. bool "Lua command-line editing none has been renamed"
  144. select BR2_LEGACY
  145. help
  146. The BR2_PACKAGE_LUA_INTERPRETER_EDITING_NONE option has been
  147. renamed to BR2_PACKAGE_LUA_EDITING_NONE. You will have to select
  148. it in the corresponding choice.
  149. config BR2_PACKAGE_LUA_INTERPRETER_READLINE
  150. bool "Lua command-line editing using readline has been renamed"
  151. select BR2_LEGACY
  152. help
  153. The BR2_PACKAGE_LUA_INTERPRETER_READLINE option has been
  154. renamed to BR2_PACKAGE_LUA_READLINE. You will have to select
  155. it in the corresponding choice.
  156. config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
  157. bool "Lua command-line editing using linenoise has been renamed"
  158. select BR2_LEGACY
  159. help
  160. The BR2_PACKAGE_LUA_INTERPRETER_LINENOISE option has been
  161. renamed to BR2_PACKAGE_LUA_LINENOISE. You will have to select
  162. it in the corresponding choice.
  163. config BR2_PACKAGE_DVB_APPS_UTILS
  164. bool "dvb-apps utilities now built by default"
  165. select BR2_LEGACY
  166. help
  167. The dvb-apps utilities are now always built when the dvb-apps
  168. package is selected.
  169. config BR2_KERNEL_HEADERS_SNAP
  170. bool "Local Linux snapshot support removed"
  171. select BR2_LEGACY
  172. help
  173. Support for using a custom snapshot to install the Linux
  174. kernel headers has been removed.
  175. config BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
  176. bool "/dev management by udev removed"
  177. select BR2_LEGACY
  178. help
  179. The 'udev' package has been converted to a virtual package.
  180. The providers for this feature are: 'eudev', 'systemd'.
  181. Therefore, if you are not using 'systemd' as init system, you
  182. must choose 'Dynamic using eudev' in the '/dev management'
  183. menu to get the same behaviour as in your old configuration.
  184. If you are using 'systemd', its internal implementation of
  185. 'udev' will be used automatically.
  186. You must also check the packages depending on 'udev' are still
  187. selected.
  188. config BR2_PACKAGE_UDEV
  189. bool "udev is now a virtual package"
  190. select BR2_LEGACY
  191. select BR2_PACKAGE_HAS_UDEV
  192. help
  193. The 'udev' package has been converted to a virtual package.
  194. The providers for this feature are: 'eudev', 'systemd'.
  195. Your old configuration refers to packages depending on 'udev',
  196. either for build or at runtime.
  197. Check that a 'udev' provider is selected. If you are not using
  198. 'systemd' as init system, 'eudev' should be selected, which is
  199. the case if '/dev management' is set to 'Dynamic using eudev'.
  200. If you are using 'systemd', its internal implementation of 'udev'
  201. is used.
  202. config BR2_PACKAGE_UDEV_RULES_GEN
  203. bool "udev rules generation handled by provider"
  204. select BR2_LEGACY
  205. select BR2_PACKAGE_EUDEV if !BR2_INIT_SYSTEMD
  206. select BR2_PACKAGE_EUDEV_RULES_GEN if !BR2_INIT_SYSTEMD
  207. help
  208. The 'udev' package has been converted to a virtual package.
  209. The providers for this feature are: 'eudev', 'systemd'.
  210. If you are not using 'systemd' as init system, udev rules
  211. generation will be handled by 'eudev'. Check that
  212. '/dev management' is set to 'Dynamic using eudev' to get
  213. the same behaviour as in your old configuration.
  214. If you are using 'systemd', it internal implementation of 'udev'
  215. will generate the rules.
  216. config BR2_PACKAGE_UDEV_ALL_EXTRAS
  217. bool "udev extras removed"
  218. select BR2_LEGACY
  219. help
  220. The 'udev' package has been converted to a virtual package.
  221. The providers for this feature are: 'eudev', 'systemd'.
  222. The option to enable the extra features of 'udev' (gudev, ...)
  223. has been removed. These features are automatically enabled in
  224. the 'udev' providers if the dependencies are selected. For
  225. example, selecting 'libglib2' will trigger the build of gudev.
  226. config BR2_PACKAGE_XLIB_LIBPTHREAD_STUBS
  227. bool "xlib-libpthread-stubs option has been renamed"
  228. depends on BR2_PACKAGE_XORG7
  229. select BR2_LEGACY
  230. select BR2_PACKAGE_LIBPTHREAD_STUBS
  231. help
  232. The pthread stubs neither depend on X11 nor Xlib. Thus the
  233. package has been renamed BR2_PACKAGE_LIBPTHREAD_STUBS
  234. ###############################################################################
  235. comment "Legacy options removed in 2014.02"
  236. config BR2_sh2
  237. bool "sh2 support removed"
  238. help
  239. Due to an inexistent user base and generally poor Linux
  240. support, the support for the SH2 architecture was removed.
  241. config BR2_sh3
  242. bool "sh3 support removed"
  243. help
  244. Due to an inexistent user base and generally poor Linux
  245. support, the support for the SH3 architecture was removed.
  246. config BR2_sh3eb
  247. bool "sh3eb support removed"
  248. help
  249. Due to an inexistent user base and generally poor Linux
  250. support, the support for the SH3eb architecture was removed.
  251. config BR2_KERNEL_HEADERS_3_1
  252. bool "kernel headers version 3.1.x are no longer supported"
  253. select BR2_KERNEL_HEADERS_3_2
  254. select BR2_LEGACY
  255. help
  256. Version 3.1.x of the Linux kernel headers have been deprecated
  257. for more than four buildroot releases and are now removed.
  258. As an alternative, version 3.2.x of the headers have been
  259. automatically selected in your configuration.
  260. config BR2_KERNEL_HEADERS_3_3
  261. bool "kernel headers version 3.3.x are no longer supported"
  262. select BR2_KERNEL_HEADERS_3_4
  263. select BR2_LEGACY
  264. help
  265. Version 3.3.x of the Linux kernel headers have been deprecated
  266. for more than four buildroot releases and are now removed.
  267. As an alternative, version 3.4.x of the headers have been
  268. automatically selected in your configuration.
  269. config BR2_KERNEL_HEADERS_3_5
  270. bool "kernel headers version 3.5.x are no longer supported"
  271. select BR2_KERNEL_HEADERS_3_8
  272. select BR2_LEGACY
  273. help
  274. Version 3.5.x of the Linux kernel headers have been deprecated
  275. for more than four buildroot releases and are now removed.
  276. As an alternative, version 3.8.x of the headers have been
  277. automatically selected in your configuration.
  278. config BR2_GDB_VERSION_7_2
  279. bool "gdb 7.2.x is no longer supported"
  280. select BR2_GDB_VERSION_7_5
  281. select BR2_LEGACY
  282. help
  283. Version 7.2.x of gdb has been deprecated for more than four
  284. buildroot releases and is now removed. As an alternative, gdb
  285. 7.5.x has been automatically selected in your configuration.
  286. config BR2_GDB_VERSION_7_3
  287. bool "gdb 7.3.x is no longer supported"
  288. select BR2_GDB_VERSION_7_5
  289. select BR2_LEGACY
  290. help
  291. Version 7.3.x of gdb has been deprecated for more than four
  292. buildroot releases and is now removed. As an alternative, gdb
  293. 7.5.x has been automatically selected in your configuration.
  294. config BR2_PACKAGE_CCACHE
  295. bool "ccache target package has been removed"
  296. select BR2_LEGACY
  297. help
  298. The 'ccache' target package has been removed since it has been
  299. deprecated for more than four buildroot releases.
  300. Note: using ccache for speeding up builds is still supported.
  301. config BR2_HAVE_DOCUMENTATION
  302. bool "support for documentation on target has been removed"
  303. select BR2_LEGACY
  304. help
  305. Support for documentation on target has been removed since it has
  306. been deprecated for more than four buildroot releases.
  307. config BR2_PACKAGE_AUTOMAKE
  308. bool "automake target package has been removed"
  309. select BR2_LEGACY
  310. help
  311. The 'automake' target package has been removed since it has been
  312. deprecated for more than four buildroot releases.
  313. Note: the host automake still exists.
  314. config BR2_PACKAGE_AUTOCONF
  315. bool "autoconf target package has been removed"
  316. select BR2_LEGACY
  317. help
  318. The 'autoconf' target package has been removed since it has been
  319. deprecated for more than four buildroot releases.
  320. Note: the host autoconf still exists.
  321. config BR2_PACKAGE_XSTROKE
  322. bool "xstroke has been removed"
  323. select BR2_LEGACY
  324. help
  325. The 'xstroke' package has been removed since it has been
  326. deprecated for more than four buildroot releases.
  327. config BR2_PACKAGE_LZMA
  328. bool "lzma target package has been removed"
  329. select BR2_LEGACY
  330. help
  331. The 'lzma' target package has been removed since it has been
  332. deprecated for more than four buildroot releases.
  333. Note: generating lzma-compressed rootfs images is still supported.
  334. config BR2_PACKAGE_TTCP
  335. bool "ttcp has been removed"
  336. select BR2_LEGACY
  337. help
  338. The 'ttcp' package has been removed since it has been
  339. deprecated for more than four buildroot releases.
  340. config BR2_PACKAGE_LIBNFC_LLCP
  341. bool "libnfc-llcp has been replaced by libllcp"
  342. select BR2_LEGACY
  343. select BR2_PACKAGE_LIBLLCP
  344. help
  345. The 'libnfc-llcp' package has been removed since upstream renamed
  346. to 'libllcp'. We have added a new package for 'libllcp' and bumped
  347. the version at the same time.
  348. config BR2_PACKAGE_MYSQL_CLIENT
  349. bool "MySQL client renamed to MySQL"
  350. select BR2_LEGACY
  351. select BR2_PACKAGE_MYSQL
  352. help
  353. The option has been renamed BR2_PACKAGE_MYSQL
  354. config BR2_PACKAGE_SQUASHFS3
  355. bool "squashfs3 has been removed"
  356. select BR2_LEGACY
  357. select BR2_PACKAGE_SQUASHFS
  358. help
  359. The 'squashfs3' package has been removed since it has been
  360. deprecated for more than four buildroot releases. Package
  361. 'squashfs' (4) has been selected automatically as replacement.
  362. config BR2_TARGET_ROOTFS_SQUASHFS3
  363. bool "squashfs3 rootfs support has been removed"
  364. select BR2_LEGACY
  365. help
  366. Together with the removal of the squashfs3 package, support
  367. for squashfs3 root filesystems has been removed too. Squashfs
  368. root filesystems will automatically use squashfs4 now.
  369. config BR2_PACKAGE_NETKITBASE
  370. bool "netkitbase has been removed"
  371. select BR2_LEGACY
  372. help
  373. The 'netkitbase' package has been removed since it has been
  374. deprecated since 2012.11. This package provided 'inetd'
  375. which is replaced by 'xinet' and 'ping' which is replaced by
  376. 'busybox' or 'fping'.
  377. config BR2_PACKAGE_NETKITTELNET
  378. bool "netkittelnet has been removed"
  379. select BR2_LEGACY
  380. help
  381. The 'netkittelnet' package has been removed since it has
  382. been deprecated since 2012.11. 'busybox' provides a telnet
  383. client and should be used instead.
  384. config BR2_PACKAGE_LUASQL
  385. bool "luasql has been replaced by luasql-sqlite3"
  386. select BR2_PACKAGE_LUASQL_SQLITE3
  387. select BR2_LEGACY
  388. help
  389. The option has been renamed BR2_PACKAGE_LUASQL_SQLITE3.
  390. config BR2_PACKAGE_LUACJSON
  391. bool "luacjson has been replaced by lua-cjson"
  392. select BR2_PACKAGE_LUA_CJSON
  393. select BR2_LEGACY
  394. help
  395. The option has been renamed BR2_PACKAGE_LUA_CJSON.
  396. ###############################################################################
  397. comment "Legacy options removed in 2013.11"
  398. config BR2_PACKAGE_LVM2_DMSETUP_ONLY
  399. bool "lvm2's 'dmsetup only' option removed"
  400. select BR2_LEGACY
  401. help
  402. The BR2_PACKAGE_LVM2_DMSETUP_ONLY was a negative option, which
  403. led to problems with other packages that need the full lvm2
  404. suite. Therefore, the option has been replaced with the positive
  405. BR2_PACKAGE_LVM2_STANDARD_INSTALL option.
  406. # Note: BR2_PACKAGE_LVM2_DMSETUP_ONLY is still referenced in package/lvm2/Config.in
  407. # in order to automatically propagate old configs
  408. config BR2_PACKAGE_QT_JAVASCRIPTCORE
  409. bool "qt javascriptcore option removed"
  410. select BR2_LEGACY
  411. help
  412. The BR2_PACKAGE_QT_JAVASCRIPTCORE option was available to
  413. force the activation or disabling of the JIT compiler in the
  414. Qt Javascript interpreter. However, the JIT compiler is not
  415. available for all architectures, so forcing its activation
  416. does not always work. Moreover, Qt knows by itself for which
  417. architectures JIT support is possible, and will
  418. automatically enable it if possible.
  419. Therefore, this option was in fact useless, and causing
  420. build problems when enabled on architectures for which the
  421. JIT support was not available. It has been removed, and
  422. there is no replacement: Qt will enable JIT at compile time
  423. when possible.
  424. config BR2_PACKAGE_MODULE_INIT_TOOLS
  425. bool "module-init-tools replaced by kmod"
  426. select BR2_PACKAGE_KMOD
  427. select BR2_PACKAGE_KMOD_TOOLS
  428. select BR2_LEGACY
  429. help
  430. The 'module-init-tools' package has been removed, since it
  431. has been depracated upstream and replaced by 'kmod'.
  432. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL
  433. string "u-boot: the git repository URL option has been renamed"
  434. help
  435. The option BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL has
  436. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_URL.
  437. config BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL_WRAP
  438. bool
  439. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL != ""
  440. select BR2_LEGACY
  441. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_REPO_URL is still referenced from
  442. # boot/uboot/Config.in
  443. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION
  444. string "u-boot: the git repository version option has been renamed"
  445. help
  446. The option BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION has
  447. been renamed to BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION.
  448. config BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION_WRAP
  449. bool
  450. default y if BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION != ""
  451. select BR2_LEGACY
  452. # Note: BR2_TARGET_UBOOT_CUSTOM_GIT_VERSION is still referenced from
  453. # boot/uboot/Config.in
  454. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL
  455. string "linux: the git repository URL option has been renamed"
  456. help
  457. The option BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL has
  458. been renamed to
  459. BR2_LINUX_KERNEL_CUSTOM_REPO_URL.
  460. config BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL_WRAP
  461. bool
  462. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL != ""
  463. select BR2_LEGACY
  464. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL is still referenced from
  465. # linux/Config.in
  466. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
  467. string "linux: the git repository version option has been renamed"
  468. help
  469. The option BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION has
  470. been renamed to
  471. BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION.
  472. config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION_WRAP
  473. bool
  474. default y if BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION != ""
  475. select BR2_LEGACY
  476. # Note: BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION is still referenced from
  477. # linux/Config.in
  478. ###############################################################################
  479. comment "Legacy options removed in 2013.08"
  480. config BR2_ARM_OABI
  481. bool "ARM OABI support has been removed"
  482. select BR2_LEGACY
  483. help
  484. The support for the ARM OABI was deprecated since a while,
  485. and has been removed completely from Buildroot. It is also
  486. deprecated in upstream gcc, since gcc 4.7. People should
  487. switch to EABI instead, which should not be a problem as
  488. long as you don't have pre-built OABI binaries in your
  489. system that you can't recompile.
  490. config BR2_PACKAGE_DOSFSTOOLS_DOSFSCK
  491. bool "dosfstools dosfsck renamed to fsck.fat"
  492. select BR2_LEGACY
  493. select BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT
  494. help
  495. dosfsck was renamed upstream to fsck.fat for consistency.
  496. config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
  497. bool "dosfstools dosfslabel renamed to fatlabel"
  498. select BR2_LEGACY
  499. select BR2_PACKAGE_DOSFSTOOLS_FATLABEL
  500. help
  501. doslabel was renamed upstream to fatlabel for consistency.
  502. config BR2_PACKAGE_DOSFSTOOLS_MKDOSFS
  503. bool "dosfstools mkdosfs renamed to mkfs.fat"
  504. select BR2_LEGACY
  505. select BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT
  506. help
  507. mkdosfs was renamed upstream to mkfs.fat for consistency.
  508. config BR2_ELF2FLT
  509. bool "the elf2flt option has been renamed"
  510. select BR2_LEGACY
  511. help
  512. The BR2_ELF2FLT option has been renamed to
  513. BR2_PACKAGE_HOST_ELF2FLT due to the conversion of elf2flt to
  514. the package infrastructure.
  515. config BR2_VFP_FLOAT
  516. bool "the ARM VFP floating point option has been renamed"
  517. select BR2_LEGACY
  518. help
  519. Due to a major refactoring of the floating-point handling of
  520. the ARM architecture support, the BR2_VFP_FLOAT option has
  521. been replaced with a choice of options that allows to select
  522. between various VFP versions/capabilities.
  523. config BR2_PACKAGE_GCC_TARGET
  524. bool "gcc on the target filesystem has been removed"
  525. select BR2_LEGACY
  526. help
  527. The support for gcc in the target filesystem was deprecated
  528. since a while, and has been removed completely from Buildroot.
  529. See Buildroot's documentation for more explanations.
  530. config BR2_HAVE_DEVFILES
  531. bool "development files in target filesystem has been removed"
  532. select BR2_LEGACY
  533. help
  534. The installation of the development files in the target
  535. filesystem was deprecated since a while, and has been removed
  536. completely from Buildroot.
  537. See Buildroot's documentation for more explanations.
  538. ###############################################################################
  539. comment "Legacy options removed in 2013.05"
  540. config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8192
  541. bool "Realtek 8192 replaced by Realtek 81xx"
  542. select BR2_LEGACY
  543. select BR2_PACKAGE_LINUX_FIRMWARE_RTL_81XX
  544. help
  545. Now covers the whole Realtek 81xx familly: 8188/8192.
  546. config BR2_PACKAGE_LINUX_FIRMWARE_RTL_8712
  547. bool "Realtek 8712 replaced by Realtek 87xx"
  548. select BR2_LEGACY
  549. select BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX
  550. help
  551. Now covers the whole Realtek 87xx familly: 8712/8723.
  552. ###############################################################################
  553. comment "Legacy options removed in 2013.02"
  554. config BR2_sa110
  555. bool "sa110 ARM target switched to strongarm"
  556. select BR2_LEGACY
  557. select BR2_strongarm
  558. help
  559. The SA110 is the same as a generic StrongARM, it just differs
  560. in speed, peripherals and cache.
  561. config BR2_sa1100
  562. bool "sa1100 ARM target switched to strongarm"
  563. select BR2_LEGACY
  564. select BR2_strongarm
  565. help
  566. The SA1100 is the same as a generic StrongARM, it just differs
  567. in speed, peripherals and cache.
  568. config BR2_PACKAGE_GDISK
  569. bool "gdisk has been replaced by gptfdisk"
  570. select BR2_LEGACY
  571. select BR2_PACKAGE_GPTFDISK
  572. help
  573. The option has been renamed BR2_PACKAGE_GPTFDISK.
  574. config BR2_PACKAGE_GDISK_GDISK
  575. bool "gdisk tool from gdisk has been replaced by gdisk in gptfdisk"
  576. select BR2_LEGACY
  577. select BR2_PACKAGE_GPTFDISK
  578. select BR2_PACKAGE_GPTFDISK_GDISK
  579. help
  580. The option has been renamed BR2_PACKAGE_GPTFDISK_GDISK.
  581. config BR2_PACKAGE_GDISK_SGDISK
  582. bool "sgdisk tool from gdisk has been replaced by sgdisk in gptfdisk"
  583. select BR2_LEGACY
  584. select BR2_PACKAGE_GPTFDISK
  585. select BR2_PACKAGE_GPTFDISK_SGDISK
  586. help
  587. The option has been renamed BR2_PACKAGE_GPTFDISK_SGDISK.
  588. config BR2_PACKAGE_GDB_HOST
  589. bool "gdb for the host option has been renamed"
  590. select BR2_PACKAGE_HOST_GDB
  591. select BR2_LEGACY
  592. help
  593. Due to the conversion of gdb to the package infrastructure,
  594. the BR2_PACKAGE_GDB_HOST option has been renamed
  595. BR2_PACKAGE_HOST_GDB.
  596. config BR2_PACKAGE_DIRECTB_DITHER_RGB16
  597. bool "DirectFB RGB16 dithering option has been renamed"
  598. select BR2_PACKAGE_DIRECTFB_DITHER_RGB16
  599. select BR2_LEGACY
  600. help
  601. The option has been renamed
  602. BR2_PACKAGE_DIRECTFB_DITHER_RGB16.
  603. config BR2_PACKAGE_DIRECTB_TESTS
  604. bool "DirectFB Tests option has been renamed"
  605. select BR2_PACKAGE_DIRECTFB_TESTS
  606. select BR2_LEGACY
  607. help
  608. The option has been renamed
  609. BR2_PACKAGE_DIRECTFB_TESTS.
  610. ###############################################################################
  611. comment "Legacy options removed in 2012.11"
  612. config BR2_PACKAGE_CUSTOMIZE
  613. bool "customize package has been removed"
  614. select BR2_LEGACY
  615. help
  616. The 'customize' special package has been removed. Instead,
  617. we recommend to create either your own packages, or use a
  618. post-build script to customize your root filesystem. See
  619. Buildroot's documentation for more details.
  620. config BR2_PACKAGE_XSERVER_xorg
  621. bool "X.org modular server"
  622. select BR2_LEGACY
  623. select BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
  624. help
  625. The option has been renamed
  626. BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR.
  627. config BR2_PACKAGE_XSERVER_tinyx
  628. bool "KDrive / TinyX server"
  629. select BR2_LEGACY
  630. select BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE
  631. help
  632. The option has been renamed
  633. BR2_PACKAGE_XSERVER_XORG_SERVER_KDRIVE.
  634. config BR2_PACKAGE_PTHREAD_STUBS
  635. bool "pthread-stubs option has been renamed"
  636. select BR2_LEGACY
  637. select BR2_PACKAGE_LIBPTHREAD_STUBS
  638. help
  639. For consistency reason, the pthread-stubs package has been
  640. renamed to libpthread-stubs.
  641. ###############################################################################
  642. comment "Legacy options removed in 2012.08"
  643. config BR2_PACKAGE_GETTEXT_STATIC
  644. bool "libgettext.a is now selected by BR2_PREFER_STATIC_LIB"
  645. select BR2_LEGACY
  646. help
  647. To build a static gettext library, select BR2_PREFER_STATIC_LIB.
  648. config BR2_PACKAGE_LIBINTL
  649. bool "libintl"
  650. select BR2_LEGACY
  651. select BR2_PACKAGE_GETTEXT
  652. help
  653. libintl is now installed by selecting BR2_PACKAGE_GETTEXT. This now
  654. only installs the library, not the executables.
  655. config BR2_PACKAGE_INPUT_TOOLS_EVTEST
  656. bool "input-tools evtest is now a separate package evtest"
  657. select BR2_LEGACY
  658. select BR2_PACKAGE_EVTEST
  659. help
  660. The evtest program from input-tools is now a separate package.
  661. config BR2_BFIN_FDPIC
  662. bool "BR2_BFIN_FDPIC is now BR2_BINFMT_FDPIC"
  663. select BR2_BINFMT_FDPIC
  664. select BR2_LEGACY
  665. config BR2_BFIN_FLAT
  666. bool "BR2_BFIN_FLAT is now BR2_BINFMT_FLAT"
  667. select BR2_BINFMT_FLAT
  668. select BR2_LEGACY
  669. endmenu