diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-03-13 22:07:15 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-03-13 22:07:15 +0000 |
commit | 5c503927f482cc167ebe245ac6d4a394179ea6e2 (patch) | |
tree | 9b53ebd38ebb51434f0ebacd117b85357d0a40fb /src/arch/i386/include | |
parent | 53c7276bd1a18160f022c468b7ce021c5386577c (diff) | |
download | coreboot-5c503927f482cc167ebe245ac6d4a394179ea6e2.tar.xz |
Fix llshell
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5206 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386/include')
-rw-r--r-- | src/arch/i386/include/arch/llshell.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/arch/i386/include/arch/llshell.h b/src/arch/i386/include/arch/llshell.h new file mode 100644 index 0000000000..556df7d046 --- /dev/null +++ b/src/arch/i386/include/arch/llshell.h @@ -0,0 +1,11 @@ +#ifndef __ARCH_LLSHELL__ +#define __ARCH_LLSHELL__ + + +#if CONFIG_LLSHELL +#define llshell() asm("jmp low_level_shell"); +#else +#define llshell() print_debug("LLSHELL not active.\n"); +#endif + +#endif |