diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-05-27 14:57:53 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-05-27 14:57:53 +0000 |
commit | f2a4e63f926a59759309d93e1af60e3c3f7d5c13 (patch) | |
tree | 9ba46ee4cd88b2b1f908feb8bab3908512d133c6 /src/arch | |
parent | a034dca42cc1638e4917e38b98e7dc6b434f2357 (diff) | |
download | coreboot-f2a4e63f926a59759309d93e1af60e3c3f7d5c13.tar.xz |
Trivial, but brown paper bag worthy:
#ifdef CONFIG_foo
is a bad idea with our build system
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4316 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/i386/init/crt0.S.lb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/i386/init/crt0.S.lb b/src/arch/i386/init/crt0.S.lb index dd51899441..cf7c2ab5e9 100644 --- a/src/arch/i386/init/crt0.S.lb +++ b/src/arch/i386/init/crt0.S.lb @@ -73,7 +73,7 @@ __main: movl $0x4000000, %esp movl %esp, %ebp pushl %esi -#ifdef CONFIG_CBFS +#if CONFIG_CBFS == 1 pushl $str_coreboot_ram_name call cbfs_and_run_core #else |