diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-01-18 15:08:58 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-01-18 15:08:58 +0000 |
commit | f8ee1806ac524bc782c93eccc59ee3c929abddb9 (patch) | |
tree | 7daab6b3aa82476a10d38fbf68068f4a409d2ce9 /src/config/Config.lb | |
parent | 7e61e45402aba2b90997f4f02ca8266cf65a229a (diff) |
Rename almost all occurences of LinuxBIOS to coreboot.
Due to the automatic nature of this update, I am self-acking. It worked in
abuild.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3053 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/config/Config.lb')
-rw-r--r-- | src/config/Config.lb | 116 |
1 files changed, 58 insertions, 58 deletions
diff --git a/src/config/Config.lb b/src/config/Config.lb index 37852e1d15..76b44b7c65 100644 --- a/src/config/Config.lb +++ b/src/config/Config.lb @@ -27,102 +27,102 @@ end # action "perl -e 'foreach $$var (split(\" \", $$ENV{VARIABLES})) { if ($$ENV{$$var} =~ m/^(0x[0-9a-fA-F]+|0[0-7]+|[0-9]+)$$/) { print \"$$var = $$ENV{$$var};\n\"; }}' > $@" #end -makerule linuxbios.strip - depends "linuxbios" - action "$(OBJCOPY) -O binary linuxbios linuxbios.strip" +makerule coreboot.strip + depends "coreboot" + action "$(OBJCOPY) -O binary coreboot coreboot.strip" end -makerule linuxbios.a +makerule coreboot.a depends "$(OBJECTS)" - action "rm -f linuxbios.a" - action "ar cr linuxbios.a $(OBJECTS)" + action "rm -f coreboot.a" + action "ar cr coreboot.a $(OBJECTS)" end -makerule linuxbios_ram.o - depends "$(DRIVER) linuxbios.a $(LIBGCC_FILE_NAME)" - action "$(CC) -nostdlib -r -o $@ c_start.o $(DRIVER) linuxbios.a $(LIBGCC_FILE_NAME)" +makerule coreboot_ram.o + depends "$(DRIVER) coreboot.a $(LIBGCC_FILE_NAME)" + action "$(CC) -nostdlib -r -o $@ c_start.o $(DRIVER) coreboot.a $(LIBGCC_FILE_NAME)" end -makerule linuxbios_ram - depends "linuxbios_ram.o $(TOP)/src/config/linuxbios_ram.ld ldoptions" - action "$(CC) -nostdlib -nostartfiles -static -o $@ -T $(TOP)/src/config/linuxbios_ram.ld linuxbios_ram.o" - action "$(CROSS_COMPILE)nm -n linuxbios_ram | sort > linuxbios_ram.map" +makerule coreboot_ram + depends "coreboot_ram.o $(TOP)/src/config/linuxbios_ram.ld ldoptions" + action "$(CC) -nostdlib -nostartfiles -static -o $@ -T $(TOP)/src/config/linuxbios_ram.ld coreboot_ram.o" + action "$(CROSS_COMPILE)nm -n coreboot_ram | sort > coreboot_ram.map" end ## -## By default compress the part of linuxbios that runs from RAM +## By default compress the part of coreboot that runs from RAM ## -makedefine LINUXBIOS_RAM-$(CONFIG_COMPRESS):=linuxbios_ram.nrv2b -makedefine LINUXBIOS_RAM-$(CONFIG_UNCOMPRESSED):=linuxbios_ram.bin +makedefine COREBOOT_RAM-$(CONFIG_COMPRESS):=coreboot_ram.nrv2b +makedefine COREBOOT_RAM-$(CONFIG_UNCOMPRESSED):=coreboot_ram.bin -makerule linuxbios_ram.bin - depends "linuxbios_ram" +makerule coreboot_ram.bin + depends "coreboot_ram" action "$(OBJCOPY) -O binary $< $@" end -makerule linuxbios_ram.nrv2b - depends "linuxbios_ram.bin nrv2b" +makerule coreboot_ram.nrv2b + depends "coreboot_ram.bin nrv2b" action "./nrv2b e $< $@" end -makerule linuxbios_ram.rom - depends "$(LINUXBIOS_RAM-1)" - action "cp $(LINUXBIOS_RAM-1) linuxbios_ram.rom" +makerule coreboot_ram.rom + depends "$(COREBOOT_RAM-1)" + action "cp $(COREBOOT_RAM-1) coreboot_ram.rom" end -makedefine LINUXBIOS_APC:= +makedefine COREBOOT_APC:= if CONFIG_AP_CODE_IN_CAR #for ap code in cache - makerule linuxbios_apc.a + makerule coreboot_apc.a depends "apc_auto.o" - action "rm -f linuxbios_apc.a" - action "ar cr linuxbios_apc.a apc_auto.o" + action "rm -f coreboot_apc.a" + action "ar cr coreboot_apc.a apc_auto.o" end - makerule linuxbios_apc.o - depends "linuxbios_apc.a c_start.o $(LIBGCC_FILE_NAME)" - action "$(CC) -nostdlib -r -o $@ c_start.o linuxbios_apc.a $(LIBGCC_FILE_NAME)" + makerule coreboot_apc.o + depends "coreboot_apc.a c_start.o $(LIBGCC_FILE_NAME)" + action "$(CC) -nostdlib -r -o $@ c_start.o coreboot_apc.a $(LIBGCC_FILE_NAME)" end - makerule linuxbios_apc - depends "linuxbios_apc.o $(TOP)/src/config/linuxbios_apc.ld ldoptions" - action "$(CC) -nostdlib -nostartfiles -static -o $@ -T $(TOP)/src/config/linuxbios_apc.ld linuxbios_apc.o" - action "$(CROSS_COMPILE)nm -n linuxbios_apc | sort > linuxbios_apc.map" + makerule coreboot_apc + depends "coreboot_apc.o $(TOP)/src/config/linuxbios_apc.ld ldoptions" + action "$(CC) -nostdlib -nostartfiles -static -o $@ -T $(TOP)/src/config/linuxbios_apc.ld coreboot_apc.o" + action "$(CROSS_COMPILE)nm -n coreboot_apc | sort > coreboot_apc.map" end ## - ## By default compress the part of linuxbios that runs from cache as ram + ## By default compress the part of coreboot that runs from cache as ram ## - makedefine LINUXBIOS_APC-$(CONFIG_COMPRESS):=linuxbios_apc.nrv2b - makedefine LINUXBIOS_APC-$(CONFIG_UNCOMPRESSED):=linuxbios_apc.bin + makedefine COREBOOT_APC-$(CONFIG_COMPRESS):=coreboot_apc.nrv2b + makedefine COREBOOT_APC-$(CONFIG_UNCOMPRESSED):=coreboot_apc.bin - makerule linuxbios_apc.bin - depends "linuxbios_apc" + makerule coreboot_apc.bin + depends "coreboot_apc" action "$(OBJCOPY) -O binary $< $@" end - makerule linuxbios_apc.nrv2b - depends "linuxbios_apc.bin nrv2b" + makerule coreboot_apc.nrv2b + depends "coreboot_apc.bin nrv2b" action "./nrv2b e $< $@" end - makerule linuxbios_apc.rom - depends "$(LINUXBIOS_APC-1)" - action "cp $(LINUXBIOS_APC-1) linuxbios_apc.rom" + makerule coreboot_apc.rom + depends "$(COREBOOT_APC-1)" + action "cp $(COREBOOT_APC-1) coreboot_apc.rom" end - makedefine LINUXBIOS_APC:=linuxbios_apc.rom + makedefine COREBOOT_APC:=coreboot_apc.rom end -makedefine LINUXBIOS_RAM_ROM:=linuxbios_ram.rom +makedefine COREBOOT_RAM_ROM:=coreboot_ram.rom -makerule linuxbios - depends "crt0.o $(INIT-OBJECTS) $(LINUXBIOS_APC) $(LINUXBIOS_RAM_ROM) ldscript.ld" +makerule coreboot + depends "crt0.o $(INIT-OBJECTS) $(COREBOOT_APC) $(COREBOOT_RAM_ROM) ldscript.ld" action "$(CC) -nostdlib -nostartfiles -static -o $@ -T ldscript.ld crt0.o $(INIT-OBJECTS)" - action "$(CROSS_COMPILE)nm -n linuxbios | sort > linuxbios.map" + action "$(CROSS_COMPILE)nm -n coreboot | sort > coreboot.map" end #makerule crt0.S @@ -158,14 +158,14 @@ makerule tags depends "$(SOURCES)" action "ctags $(SOURCES)" end -makerule LinuxBIOSDoc.config - depends "$(TOP)/src/config/LinuxBIOSDoc.config" - action "cat $(TOP)/src/config/LinuxBIOSDoc.config > LinuxBIOSDoc.config" - action "echo 'INPUT=$(SOURCES)' >> LinuxBIOSDoc.config" +makerule corebootDoc.config + depends "$(TOP)/src/config/corebootDoc.config" + action "cat $(TOP)/src/config/corebootDoc.config > corebootDoc.config" + action "echo 'INPUT=$(SOURCES)' >> corebootDoc.config" end makerule documentation - depends "LinuxBIOSDoc.config" - action "doxygen LinuxBIOSDoc.config" + depends "corebootDoc.config" + action "doxygen corebootDoc.config" end makerule ./romcc @@ -204,12 +204,12 @@ object ./option_table.o end makerule clean - action "rm -f linuxbios.* *~" - action "rm -f linuxbios" + action "rm -f coreboot.* *~" + action "rm -f coreboot" action "rm -f ldscript.ld" action "rm -f a.out *.s *.l *.o *.E *.inc" action "rm -f TAGS tags romcc*" - action "rm -f docipl buildrom* chips.c *chip.c linuxbios_apc* linuxbios_ram* linuxbios_pay*" + action "rm -f docipl buildrom* chips.c *chip.c coreboot_apc* coreboot_ram* coreboot_pay*" action "rm -f build_opt_tbl* nrv2b* option_table.c crt0.S" end |