Changeset 5206


Ignore:
Timestamp:
Mar 13, 2010 11:07:15 PM (3 years ago)
Author:
oxygene
Message:

Fix llshell

Signed-off-by: Stefan Reinauer <stepan@…>
Acked-by: Patrick Georgi <patrick.georgi@…>

Location:
trunk/src
Files:
4 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/Kconfig

    r5185 r5206  
    794794          If unsure, say N. 
    795795 
     796config LLSHELL 
     797        bool "Built-in low-level shell" 
     798        default n 
     799        help 
     800          If enabled, you will have a low level shell to examine your machine. 
     801          Put llshell() in your (romstage) code to start the shell. 
     802          See src/arch/i386/llshell/llshell.inc for details. 
     803 
    796804endmenu 
    797805 
  • trunk/src/arch/i386/Makefile.inc

    r5177 r5206  
    149149endif 
    150150endif 
     151 
     152ifeq ($(CONFIG_LLSHELL),y) 
     153crt0s += $(src)/arch/i386/llshell/llshell.inc 
     154endif 
     155 
    151156crt0s += $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc 
    152157 
  • trunk/src/arch/i386/llshell/llshell.inc

    r1727 r5206  
     1#include "console.inc" 
     2#include "pci.inc" 
     3#include "ramtest.inc" 
     4 
    15jmp llshell_out 
    26 
  • trunk/src/mainboard/thomson/ip1000/romstage.c

    r5177 r5206  
    2929#include <arch/romcc_io.h> 
    3030#include <arch/hlt.h> 
     31#include <arch/llshell.h> 
    3132#include "pc80/serial.c" 
    3233#include "pc80/udelay_io.c" 
     
    130131        sdram_initialize(); 
    131132 
     133#if CONFIG_LLSHELL 
     134        llshell(); 
     135#endif 
    132136        /* Check RAM. */ 
    133137        /* ram_check(0, 640 * 1024); */ 
Note: See TracChangeset for help on using the changeset viewer.