summaryrefslogtreecommitdiffstats
path: root/common/startup.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:02:09 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:02:09 +0200
commit9d0f3063a7c6e49e8a009cd3ad584083227ff1cc (patch)
treedf170cfdbe3ab927c9c417a74f5211721edb933a /common/startup.c
parent716336f1d460ba8be8ed6e2eba26ed7e145c0dc7 (diff)
downloadbarebox-9d0f3063a7c6e49e8a009cd3ad584083227ff1cc.tar.gz
barebox-9d0f3063a7c6e49e8a009cd3ad584083227ff1cc.tar.xz
svn_rev_604
no interrupts
Diffstat (limited to 'common/startup.c')
-rw-r--r--common/startup.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/common/startup.c b/common/startup.c
index c731672b30..0052ed4462 100644
--- a/common/startup.c
+++ b/common/startup.c
@@ -50,8 +50,6 @@
ulong load_addr = 0; /* Default Load Address */
-DECLARE_GLOBAL_DATA_PTR;
-
#ifndef CONFIG_IDENT_STRING
#define CONFIG_IDENT_STRING ""
#endif
@@ -115,7 +113,6 @@ void start_uboot (void)
/* compiler optimization barrier needed for GCC >= 3.4 */
// __asm__ __volatile__("": : :"memory");
-// serial_init(); /* serial communications setup */
for (initcall = __u_boot_initcalls_start; initcall < __u_boot_initcalls_end; initcall++) {
// PUTHEX_LL(*initcall);
// PUTC('\n');
@@ -126,9 +123,6 @@ void start_uboot (void)
display_banner();
- /* enable exceptions */
- enable_interrupts ();
-
run_command("mount none ramfs /", 0);
run_command("mkdir /dev", 0);
run_command("mkdir /env", 0);