diff options
author | Greg Watson <jarrah@users.sourceforge.net> | 2003-11-09 23:02:54 +0000 |
---|---|---|
committer | Greg Watson <jarrah@users.sourceforge.net> | 2003-11-09 23:02:54 +0000 |
commit | a0725a74a877f7ee7ea781aae255637f935571ad (patch) | |
tree | a346a0ba38fecc1dc7ff8e567cb6900d3b5566de /src | |
parent | 43f74f7e4aadb4cc4c119ab9a018cdc5d0fd00f0 (diff) |
not needed when using init
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1265 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/ppc/lib/c_start.S | 2 |
1 files changed, 2 insertions, 0 deletions
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 |