diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2011-01-26 21:19:25 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2011-01-29 09:44:33 -0500 |
commit | 713be89d5c60ea1e41a64c123a735ab9dc0dae99 (patch) | |
tree | eb2c1ca9b81a2a1cd3304c2edce540fe05dbe941 /src/config.h | |
parent | b623e7c56883d69049d3060d148c5b0c9d71fafc (diff) | |
download | seabios-713be89d5c60ea1e41a64c123a735ab9dc0dae99.tar.gz |
Start using Kconfig to configure SeaBIOS settings.
Create autoconf.h during the build.
Move a couple of config settings from config.h to Kconfig.
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/config.h b/src/config.h index db3e578a..63569419 100644 --- a/src/config.h +++ b/src/config.h @@ -1,6 +1,8 @@ #ifndef __CONFIG_H #define __CONFIG_H +#include "../out/autoconf.h" + // Configuration definitions. //#define CONFIG_APPNAME "QEMU" @@ -12,13 +14,6 @@ #define CONFIG_APPNAME6 "BOCHS " #define CONFIG_APPNAME4 "BXPC" -// Configure as a coreboot payload. -#define CONFIG_COREBOOT 0 - -// Control how verbose debug output is. -#define CONFIG_DEBUG_LEVEL 1 -// Send debugging information to serial port -#define CONFIG_DEBUG_SERIAL 0 // Screen writes are also sent to debug ports. #define CONFIG_SCREEN_AND_DEBUG 1 @@ -119,8 +114,6 @@ #define CONFIG_UUID_BACKDOOR 1 // Support generation of ACPI tables (for emulators) #define CONFIG_ACPI 1 -// Support bios callbacks specific to via vgabios. -#define CONFIG_VGAHOOKS 0 // Support S3 resume handler. #define CONFIG_S3_RESUME 1 // Run the vga rom during S3 resume. |