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/mainboard/thomson/ip1000 | |
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/mainboard/thomson/ip1000')
-rw-r--r-- | src/mainboard/thomson/ip1000/romstage.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/thomson/ip1000/romstage.c b/src/mainboard/thomson/ip1000/romstage.c index 8b70d9ffc7..362f04e992 100644 --- a/src/mainboard/thomson/ip1000/romstage.c +++ b/src/mainboard/thomson/ip1000/romstage.c @@ -28,6 +28,7 @@ #include <device/pnp_def.h> #include <arch/romcc_io.h> #include <arch/hlt.h> +#include <arch/llshell.h> #include "pc80/serial.c" #include "pc80/udelay_io.c" #include "arch/i386/lib/console.c" @@ -129,6 +130,9 @@ static void main(unsigned long bist) /* Initialize memory */ sdram_initialize(); +#if CONFIG_LLSHELL + llshell(); +#endif /* Check RAM. */ /* ram_check(0, 640 * 1024); */ /* ram_check(64512 * 1024, 65536 * 1024); */ |