Changeset 5206
- Timestamp:
- Mar 13, 2010 11:07:15 PM (3 years ago)
- Location:
- trunk/src
- Files:
-
- 4 added
- 4 edited
-
Kconfig (modified) (1 diff)
-
arch/i386/Makefile.inc (modified) (1 diff)
-
arch/i386/include/arch/llshell.h (added)
-
arch/i386/llshell/console.inc (added)
-
arch/i386/llshell/llshell.inc (modified) (1 diff)
-
arch/i386/llshell/pci.inc (added)
-
arch/i386/llshell/ramtest.inc (added)
-
mainboard/thomson/ip1000/romstage.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Kconfig
r5185 r5206 794 794 If unsure, say N. 795 795 796 config 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 796 804 endmenu 797 805 -
trunk/src/arch/i386/Makefile.inc
r5177 r5206 149 149 endif 150 150 endif 151 152 ifeq ($(CONFIG_LLSHELL),y) 153 crt0s += $(src)/arch/i386/llshell/llshell.inc 154 endif 155 151 156 crt0s += $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc 152 157 -
trunk/src/arch/i386/llshell/llshell.inc
r1727 r5206 1 #include "console.inc" 2 #include "pci.inc" 3 #include "ramtest.inc" 4 1 5 jmp llshell_out 2 6 -
trunk/src/mainboard/thomson/ip1000/romstage.c
r5177 r5206 29 29 #include <arch/romcc_io.h> 30 30 #include <arch/hlt.h> 31 #include <arch/llshell.h> 31 32 #include "pc80/serial.c" 32 33 #include "pc80/udelay_io.c" … … 130 131 sdram_initialize(); 131 132 133 #if CONFIG_LLSHELL 134 llshell(); 135 #endif 132 136 /* Check RAM. */ 133 137 /* ram_check(0, 640 * 1024); */
Note: See TracChangeset
for help on using the changeset viewer.
