diff options
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/Config.lb | 4 | ||||
-rw-r--r-- | src/config/Options.lb | 12 |
2 files changed, 13 insertions, 3 deletions
diff --git a/src/config/Config.lb b/src/config/Config.lb index 279fe8c9b8..ee617c9a60 100644 --- a/src/config/Config.lb +++ b/src/config/Config.lb @@ -7,7 +7,7 @@ makedefine LIBGCC_FILE_NAME := $(shell $(CC) -print-libgcc-file-name) makedefine GCC_INC_DIR := $(shell $(CC) -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp") makedefine CPPFLAGS := -I$(TOP)/src/include -I$(TOP)/src/arch/$(ARCH)/include -I$(GCC_INC_DIR) $(CPUFLAGS) -makedefine ROMCCPPFLAGS := -D__ROMCC__=0 -D__ROMCC_MINOR__=23 +makedefine ROMCCPPFLAGS := -D__ROMCC__=0 -D__ROMCC_MINOR__=34 makedefine CFLAGS := $(CPU_OPT) $(CPPFLAGS) -Os -nostdinc -nostdlib -fno-builtin -Wall makedefine HOSTCFLAGS:= -Os -Wall @@ -116,7 +116,7 @@ end makerule ./romcc depends "$(TOP)/util/romcc/romcc.c" - action "$(HOSTCC) -g $(HOSTCFLAGS) -DVERSION='\"0.21\"' -DRELEASE_DATE='\"7 april 2003\"' $< -o $@" + action "$(HOSTCC) -g $(HOSTCFLAGS) -DVERSION='\"0.34\"' -DRELEASE_DATE='\"4 July 2003\"' $< -o $@" end makerule build_opt_tbl 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 |