From a0725a74a877f7ee7ea781aae255637f935571ad Mon Sep 17 00:00:00 2001 From: Greg Watson Date: Sun, 9 Nov 2003 23:02:54 +0000 Subject: [PATCH] not needed when using init git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1265 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/ppc/lib/c_start.S | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/arch/ppc/lib/c_start.S b/src/arch/ppc/lib/c_start.S index e88ce67f8c..a3b963dbc6 100644 --- a/src/arch/ppc/lib/c_start.S +++ b/src/arch/ppc/lib/c_start.S @@ -15,6 +15,7 @@ .globl _start _start: +#if CONFIG_USE_INIT == 0 /* * init stack pointer to real ram now that memory is on */ @@ -106,3 +107,4 @@ __DTOR_LIST__: .globl __DTOR_END__ __DTOR_END__: blr +#endif