Use copy_triple only on non-flattened nodes.
[coreboot.git] / src / Kconfig
index 96413ffd3f012969e7987b099cec4c61c01f2143..1e1de895dfc16fd9fea75e54ab984d8f8b3b5770 100644 (file)
@@ -46,6 +46,20 @@ config CBFS_PREFIX
          Select the prefix to all files put into the image. It's "fallback"
          by default, "normal" is a common alternative.
 
+config SCANBUILD_ENABLE
+       bool "build with scan-build for static analysis"
+       default n
+       help
+         Changes the build process to scan-build is used.
+         Requires scan-build in path.
+
+config SCANBUILD_REPORT_LOCATION
+       string "directory to put scan-build report in"
+       default ""
+       depends on SCANBUILD_ENABLE
+       help
+         Where the scan-build report should be stored
+
 endmenu
 
 source src/mainboard/Kconfig
@@ -269,28 +283,6 @@ config HAVE_HARD_RESET
          This variable specifies whether a given board has a hard_reset
          function, no matter if it's provided by board code or chipset code.
 
-config BOARD_HAS_HARD_RESET
-       bool
-       default n
-       help
-         This variable specifies whether a given board has a reset.c
-         file containing a hard_reset() function.
-
-config BOARD_HAS_FADT
-       bool
-       default n
-       help
-         This variable specifies whether a given board has a board-local
-         FADT in fadt.c. Long-term, those should be moved to appropriate
-         chipset components (eg. southbridge)
-
-config HAVE_BUS_CONFIG
-       bool
-       default n
-       help
-         This variable specifies whether a given board has a get_bus_conf.c
-         file containing bus configuration data.
-
 config HAVE_INIT_TIMER
        bool
        default n if UDELAY_IO
@@ -793,6 +785,14 @@ config X86EMU_DEBUG_IO
 
          If unsure, say N.
 
+config LLSHELL
+       bool "Built-in low-level shell"
+       default n
+       help
+         If enabled, you will have a low level shell to examine your machine.
+         Put llshell() in your (romstage) code to start the shell.
+         See src/arch/i386/llshell/llshell.inc for details.
+
 endmenu
 
 config LIFT_BSP_APIC_ID
@@ -819,3 +819,5 @@ config WARNINGS_ARE_ERRORS
 config ID_SECTION_OFFSET
        hex
        default 0x10
+
+source src/Kconfig.deprecated_options