diff options
author | Stefan Reinauer <stepan@openbios.org> | 2006-08-22 13:21:39 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2006-08-22 13:21:39 +0000 |
commit | 60902ed3a1155f062a78baa5962ca7903ec1d621 (patch) | |
tree | a780c319d7a49e605a7748cccb7ac1696f66ff0b /util/extensions/legacybios/include/config.h | |
parent | 1ac1cf527d8d83a6eeffbd79c87a83d1ee59151c (diff) | |
download | coreboot-60902ed3a1155f062a78baa5962ca7903ec1d621.tar.xz |
drop extensions directory. it has never been used.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2382 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/extensions/legacybios/include/config.h')
-rw-r--r-- | util/extensions/legacybios/include/config.h | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/util/extensions/legacybios/include/config.h b/util/extensions/legacybios/include/config.h deleted file mode 100644 index c6df62f531..0000000000 --- a/util/extensions/legacybios/include/config.h +++ /dev/null @@ -1,55 +0,0 @@ -/* tag: compile time configuration options - * - * Copyright (C) 2003 Patrick Mauritz, Stefan Reinauer - * - * See the file "COPYING" for further information about - * the copyright and warranty status of this work. - */ - -#ifndef __CONFIG_H -#define __CONFIG_H - -/* Console options - * - * DEBUG_CONSOLE_VGA - * use vga textmode and keyboard console - * - * DEBUG_CONSOLE_SERIAL - * use serial console. If this is enabled, see - * options below. - * - * SERIAL_PORT: - * 0 for none, 1 for ttyS0, 2 for ttyS1 - * - * SERIAL_SPEED: - * supported speeds are: 115200, 57600, 38400, 19200, 9600 - */ - -#define DEBUG_CONSOLE_SERIAL -// #define DEBUG_CONSOLE_VGA - -#define SERIAL_PORT 1 -#define SERIAL_SPEED 115200 - - -/* Debugging switches - * - * these switches enable debugging code snippets spread all over - * the code. You should not need to change these settings unless - * you know what you are doing. - * - * DEBUG_BOOT: - * early boot code (multiboot parsing etc) - * - * DEBUG_CONSOLE: - * 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. - */ - -#if 0 -#define DEBUG_BOOT -#endif -#define DEBUG_CONSOLE - -#endif |