diff options
author | Greg Watson <jarrah@users.sourceforge.net> | 2003-06-24 16:07:07 +0000 |
---|---|---|
committer | Greg Watson <jarrah@users.sourceforge.net> | 2003-06-24 16:07:07 +0000 |
commit | 51305ee6cc36300c44cc1f3d4b2c365223b0762e (patch) | |
tree | d1a3ad3d6a3f4d2349f40bc3e21698786ed829e1 /src/config | |
parent | 03b59864dfd3d1d06b056fcf530da8ca328fa99c (diff) | |
download | coreboot-51305ee6cc36300c44cc1f3d4b2c365223b0762e.tar.xz |
For new config.g
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@903 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/Config.lb | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/src/config/Config.lb b/src/config/Config.lb index 27c599fe7b..86c58d0654 100644 --- a/src/config/Config.lb +++ b/src/config/Config.lb @@ -1,10 +1,6 @@ ## This is Architecture independant part of the makefile -option LINUXBIOS_VERSION="1.1.0" - -option CC="$(CROSS_COMPILE)gcc" -option HOSTCC="$(CROSS_COMPILE)gcc" -option OBJCOPY="objcopy" +uses HAVE_OPTION_TABLE makedefine CPP:= $(CC) -no-gcc -x assembler-with-cpp -DASSEMBLY -E makedefine LIBGCC_FILE_NAME := $(shell $(CC) -print-libgcc-file-name) @@ -16,15 +12,6 @@ makedefine CFLAGS := $(CPU_OPT) $(CPPFLAGS) -Os -nostdinc -nostdlib -fno-builtin makedefine HOSTCFLAGS:= -Os -Wall -option LINUXBIOS_BUILD = "$(shell date) " -option LINUXBIOS_COMPILE_TIME = "$(shell date +%T)" -option LINUXBIOS_COMPILE_BY = "$(shell whoami)" -option LINUXBIOS_COMPILE_HOST = "$(shell hostname)" -option LINUXBIOS_COMPILE_DOMAIN = "$(shell dnsdomainname)" -option LINUXBIOS_COMPILER = "$(shell $(CC) $(CFLAGS) -v 2>&1 | tail -n 1)" -option LINUXBIOS_LINKER = "$(shell $(CC) -Wl,-v 2>&1 | grep version | tail -n 1)" -option LINUXBIOS_ASSEMBLER = "$(shell touch dummy.s ; $(CC) -c -Wa,-v dummy.s 2>&1; rm -f dummy.s dummy.o )" - makerule ldscript.ld dep "ldoptions $(LDSUBSCRIPTS-1)" act " echo \"INCLUDE ldoptions\" > $@ ; for file in $(LDSUBSCRIPTS-1) ; do echo \"INCLUDE $$file\" >> $@ ; done" makerule cpuflags dep "Makefile.settings" act " perl -e 'print \"CPUFLAGS :=\n\"; foreach $$var (split(\" \", $$ENV{VARIABLES})) { if (exists($$ENV{$$var})) { print \"CPUFLAGS += -D$$var\" . (length($$ENV{$$var})?\"=\x27$$ENV{$$var}\x27\":\"\") .\"\n\"} else { print \"CPUFLAGS += -U$$var\n\"} }' > $@" @@ -41,8 +28,6 @@ makerule linuxbios_c dep "linuxbios_c.o $(TOP)/src/config/linuxbios_c.ld ldopti ## ## By default compress the C part of linuxbios ## -option CONFIG_COMPRESS=1 -option CONFIG_UNCOMPRESSED=!CONFIG_COMPRESS makedefine LINUXBIOS_PAYLOAD-$(CONFIG_COMPRESS):=linuxbios_payload.nrv2b makedefine LINUXBIOS_PAYLOAD-$(CONFIG_UNCOMPRESSED):=linuxbios_payload.bin @@ -56,7 +41,6 @@ addaction linuxbios "$(CROSS_COMPILE)nm -n linuxbios | sort > linuxbios.map" makerule linuxbios.a dep "$(OBJECTS-1) " act "rm -f linuxbios.a" addaction linuxbios.a "ar cr linuxbios.a $(OBJECTS-1)" -option CRT0="$(TOP)/src/arch/$(ARCH)/config/crt0.base" makerule crt0.S dep "$(CRT0) " act "cp $< $@" # the buildrom tool |