Fix the the build of r5494 on Asus A8V-E SE. The K8M890 and K8T890
[coreboot.git] / src / Kconfig.deprecated_options
1 # Options in this file are meant to be deprecated. Avoid their use
2 # if possible, and if you find the time, or touch the general area
3 # for other purposes, please consider removing their uses.
4
5 # It might be possible to consolidate hard_reset() to southbridges,
6 # given that it (usually) uses its registers.
7 # The long term goal would be to eliminate hard_reset from boards.
8 config BOARD_HAS_HARD_RESET
9         bool
10         default n
11         help
12           This variable specifies whether a given board has a reset.c
13           file containing a hard_reset() function.
14
15 # It might be possible to consolidate FADTs to southbridges. This would
16 # improve code reuse in the tree.
17 config BOARD_HAS_FADT
18         bool
19         default n
20         help
21           This variable specifies whether a given board has a board-local
22           FADT in fadt.c. Long-term, those should be moved to appropriate
23           chipset components (eg. southbridge)
24
25 # There ought to be a better place to put data than code. Also, make this
26 # (or a similar) framework more universally usable, so all boards benefit
27 # from sharing data between the various tables.
28 config HAVE_BUS_CONFIG
29         bool
30         default n
31         help
32           This variable specifies whether a given board has a get_bus_conf.c
33           file containing information about bus routing.