diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2003-07-30 03:05:20 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2003-07-30 03:05:20 +0000 |
commit | 57ffeb0578db71b1c57d9e4137def42aac34fe18 (patch) | |
tree | c130080b5a000b31b04639535d22274b256f6b65 /src/config/Options.lb | |
parent | b265254e1c50af2e3b84c0628016dda4ccf253d7 (diff) |
updates from YhLu, plus fixes for PPC/K8 issues.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1059 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/config/Options.lb')
-rw-r--r-- | src/config/Options.lb | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/config/Options.lb b/src/config/Options.lb index fdd87e56b7..6170ea28a1 100644 --- a/src/config/Options.lb +++ b/src/config/Options.lb @@ -121,6 +121,11 @@ define LINUXBIOS_VERSION export always comment "LinuxBIOS version" end +define LINUXBIOS_EXTRA_VERSION + default "" + export used + comment "LinuxBIOS extra version" +end define LINUXBIOS_BUILD default "$(shell date)" export always @@ -249,7 +254,7 @@ define HEAP_SIZE comment "Default heap size" end define _RAMBASE - default 0x4000 + default none format "0x%x" export always comment "Base address of LinuxBIOS in RAM" @@ -406,6 +411,11 @@ define CONFIG_SMP export always comment "Define if we support SMP" end +define CONFIG_MAX_CPUS + default 1 + export always + comment "Config CPU count for this machine" +end define MAX_CPUS default 1 export always |