summaryrefslogtreecommitdiff
path: root/util/extensions/legacybios/kernel/legacybios.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@openbios.org>2006-08-22 13:21:39 +0000
committerStefan Reinauer <stepan@openbios.org>2006-08-22 13:21:39 +0000
commit60902ed3a1155f062a78baa5962ca7903ec1d621 (patch)
treea780c319d7a49e605a7748cccb7ac1696f66ff0b /util/extensions/legacybios/kernel/legacybios.c
parent1ac1cf527d8d83a6eeffbd79c87a83d1ee59151c (diff)
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/kernel/legacybios.c')
-rw-r--r--util/extensions/legacybios/kernel/legacybios.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/util/extensions/legacybios/kernel/legacybios.c b/util/extensions/legacybios/kernel/legacybios.c
deleted file mode 100644
index 08579619ef..0000000000
--- a/util/extensions/legacybios/kernel/legacybios.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/* tag: legacybios environment, executable code
- *
- * Copyright (C) 2003 Stefan Reinauer
- *
- * See the file "COPYING" for further information about
- * the copyright and warranty status of this work.
- */
-
-#include "config.h"
-#include "types.h"
-
-void printk(const char *fmt, ...);
-void cls(void);
-#ifdef DEBUG_CONSOLE
-int uart_init(int port, unsigned long speed);
-#endif
-
-
-void legacybios(ucell romstart, ucell romend)
-{
-#ifdef DEBUG_CONSOLE
- uart_init(SERIAL_PORT, SERIAL_SPEED);
- /* Clear the screen. */
- cls();
-#endif
-
-#ifdef DEBUG_BOOT
- printk("LegacyBIOS started.\n");
-#endif
-
- return;
-}