summaryrefslogtreecommitdiffstats
path: root/qemu/roms/openbios/kernel/Kconfig
diff options
context:
space:
mode:
authorRajithaY <rajithax.yerrumsetty@intel.com>2017-04-25 03:31:15 -0700
committerRajitha Yerrumchetty <rajithax.yerrumsetty@intel.com>2017-05-22 06:48:08 +0000
commitbb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch)
treeca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/roms/openbios/kernel/Kconfig
parenta14b48d18a9ed03ec191cf16b162206998a895ce (diff)
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to kvmfornfv repo and make use of the updated latest qemu for the execution of all testcase Change-Id: I1280af507a857675c7f81d30c95255635667bdd7 Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/roms/openbios/kernel/Kconfig')
-rw-r--r--qemu/roms/openbios/kernel/Kconfig88
1 files changed, 0 insertions, 88 deletions
diff --git a/qemu/roms/openbios/kernel/Kconfig b/qemu/roms/openbios/kernel/Kconfig
deleted file mode 100644
index 32831f737..000000000
--- a/qemu/roms/openbios/kernel/Kconfig
+++ /dev/null
@@ -1,88 +0,0 @@
-menu "Kernel Debugging"
-
-config DEBUG
- bool "Kernel Debugging"
- default y
- help
- Kernel Debugging
-
-config DEBUG_BOOT
- bool "Boot messages"
- depends on DEBUG
- default y
- help
- early boot code (multiboot parsing etc)
-
-config DEBUG_DSTACK
- bool "dstack messages"
- depends on DEBUG
- default n
- help
- stack debugging. warning: heavy output!
-
-config DEBUG_RSTACK
- bool "rstack messages"
- depends on DEBUG
- default n
- help
- stack debugging. warning: heavy output!
-
-config DEBUG_DICTIONARY
- bool "Dictionary loading/dumping"
- depends on DEBUG
- default n
- help
- print few additional information on dictionary loading/dumping
-
-config DEBUG_INTERNAL
- bool "Prime Words"
- depends on DEBUG
- default n
- help
- print additional information for some prime words, like branches
-
-config DEBUG_INTERPRETER
- bool "Interpreter"
- depends on DEBUG
- default n
- help
- additional information about the unix.c builtin C interpreter
- and some other places where it actually does not belong.
-
-config DEBUG_CONSOLE
- bool "Console"
- default y
- help
- use builtin C console code for user interaction. There is no
- real alternative to this until someone writes a display/kbd or
- serial driver in forth.
-
-config DEBUG_CONSOLE_SERIAL
- bool "Serial Console"
- depends on DEBUG_CONSOLE
- default y
- help
- use serial console.
-
-config SERIAL_PORT
- int "Serial Port"
- depends on DEBUG_CONSOLE_SERIAL
- default "1"
- help
- 0 for none, 1 for ttyS0, 2 for ttyS1
-
-config SERIAL_SPEED
- int "Serial line speed"
- depends on DEBUG_CONSOLE_SERIAL
- default "115200"
- help
- supported speeds are: 115200, 57600, 38400, 19200, 9600
-
-config DEBUG_CONSOLE_VGA
- bool "VGA Console"
- depends on DEBUG_CONSOLE
- default y
- help
- use vga textmode and keyboard console
-
-endmenu