Changeset fa024ce in mainline for boot/arch/arm32
- Timestamp:
- 2009-02-12T20:12:08Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 98a4e76
- Parents:
- fcd7053
- Location:
- boot/arch/arm32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/Makefile.inc
rfcd7053 rfa024ce 29 29 build: $(BASE)/image.boot 30 30 31 $(BASE)/image.boot: depend arch/$( ARCH)/loader/image.boot32 cp arch/$( ARCH)/loader/image.boot $(BASE)/image.boot31 $(BASE)/image.boot: depend arch/$(BARCH)/loader/image.boot 32 cp arch/$(BARCH)/loader/image.boot $(BASE)/image.boot 33 33 34 34 depend: 35 -rm arch/$( ARCH)/loader/image.boot35 -rm arch/$(BARCH)/loader/image.boot 36 36 37 arch/$( ARCH)/loader/image.boot:38 make -C arch/$( ARCH)/loader COMPILER=$(COMPILER) KERNELDIR=../../../$(KERNELDIR) USPACEDIR=../../../$(USPACEDIR) IMAGE=$(IMAGE)37 arch/$(BARCH)/loader/image.boot: 38 make -C arch/$(BARCH)/loader COMPILER=$(COMPILER) KERNELDIR=../../../$(KERNELDIR) USPACEDIR=../../../$(USPACEDIR) 39 39 40 40 clean: 41 make -C arch/$( ARCH)/loader clean COMPILER=$(COMPILER) KERNELDIR=../../../$(KERNELDIR) USPACEDIR=../../../$(USPACEDIR) IMAGE=$(IMAGE)41 make -C arch/$(BARCH)/loader clean COMPILER=$(COMPILER) KERNELDIR=../../../$(KERNELDIR) USPACEDIR=../../../$(USPACEDIR) 42 42 -rm -f $(BASE)/image.boot -
boot/arch/arm32/loader/Makefile
rfcd7053 rfa024ce 28 28 29 29 include ../../../../version 30 include ../../../../Makefile.config30 -include ../../../../Makefile.config 31 31 32 32 ## Toolchain configuration … … 58 58 endif 59 59 60 CFLAGS = -DRELEASE=\"$(RELEASE)\" -I. -I../../../generic -I../../.. -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -pipe 61 62 ifdef REVISION 63 CFLAGS += "-DREVISION=\"$(REVISION)\"" 64 endif 65 66 ifdef TIMESTAMP 67 CFLAGS += "-DTIMESTAMP=\"$(TIMESTAMP)\"" 68 endif 69 70 ifdef MACHINE 71 CFLAGS += "-DMACHINE=$(MACHINE)" 72 endif 60 CFLAGS = -DRELEASE=$(RELEASE) -I. -I../../../generic -I../../.. -imacros ../../../../config.h -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -pipe 73 61 74 62 SOURCES = \ -
boot/arch/arm32/loader/main.c
rfcd7053 rfa024ce 36 36 37 37 38 #include "main.h" 38 #include "main.h" 39 39 #include "asm.h" 40 40 #include "_components.h" 41 41 #include <printf.h> 42 #include <macros.h> 42 43 43 44 #include "mm.h" … … 47 48 48 49 49 char *release = RELEASE;50 char *release = STRING(RELEASE); 50 51 51 52 #ifdef REVISION 52 char *revision = ", revision " REVISION;53 char *revision = ", revision " STRING(REVISION); 53 54 #else 54 55 char *revision = ""; … … 56 57 57 58 #ifdef TIMESTAMP 58 char *timestamp = "\nBuilt on " TIMESTAMP;59 char *timestamp = "\nBuilt on " STRING(TIMESTAMP); 59 60 #else 60 61 char *timestamp = "";
Note:
See TracChangeset
for help on using the changeset viewer.