- Timestamp:
- 2010-01-15T18:30:25Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eeb643d
- Parents:
- 387416b (diff), 563d6077 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- boot/arch
- Files:
-
- 26 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/amd64/Makefile.inc
r387416b r99de22b 30 30 31 31 RD_SRVS += \ 32 $(USPACEDIR)/srv/pci/pci \ 33 $(USPACEDIR)/srv/bd/ata_bd/ata_bd 32 $(USPACEDIR)/srv/bd/ata_bd/ata_bd \ 33 $(USPACEDIR)/srv/hw/char/i8042/i8042 \ 34 $(USPACEDIR)/srv/hw/bus/pci/pci \ 35 $(USPACEDIR)/srv/hid/c_mouse/c_mouse 34 36 35 37 MODULES := $(notdir $(COMPONENTS)) … … 47 49 echo " root (cd)" >> $(TMP)/boot/grub/menu.lst 48 50 for module in $(MODULES) $(INITRD).img ; do \ 49 if [ $$module = =kernel.bin ] ; then \51 if [ $$module = kernel.bin ] ; then \ 50 52 echo " kernel /boot/$$module" >> $(TMP)/boot/grub/menu.lst ; \ 51 53 else \ -
boot/arch/arm32/Makefile.inc
r387416b r99de22b 30 30 31 31 $(BASE)/image.boot: 32 $(MAKE) -C arch/$(BARCH)/loader 32 $(MAKE) -C arch/$(BARCH)/loader PRECHECK=$(PRECHECK) 33 33 cp arch/$(BARCH)/loader/image.boot $@ 34 34 -
boot/arch/arm32/loader/Makefile
r387416b r99de22b 34 34 all: ../../../../version ../../../../Makefile.config ../../../../config.h ../../../../config.defs 35 35 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 36 $(MAKE) -f Makefile.build 36 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 37 37 38 38 clean: … … 43 43 rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \ 44 44 done 45 rm -f $(DEPEND) $(DEPEND_PREV) $( OUTPUT) $(COMPS).h $(COMPS).c $(LINK) $(INITRD).img $(INITRD).fs45 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(COMPS).h $(COMPS).c $(LINK) $(INITRD).img $(INITRD).fs 46 46 find . -name '*.o' -follow -exec rm \{\} \; 47 47 find . -name '*.co' -follow -exec rm \{\} \; -
boot/arch/arm32/loader/Makefile.build
r387416b r99de22b 65 65 %.o: %.S $(DEPEND) 66 66 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@ 67 ifeq ($(PRECHECK),y) 68 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__ 69 endif 67 70 68 71 %.o: %.c $(DEPEND) 69 72 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 73 ifeq ($(PRECHECK),y) 74 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) 75 endif 70 76 71 77 $(DEPEND): -
boot/arch/arm32/loader/Makefile.common
r387416b r99de22b 35 35 DEPEND = Makefile.depend 36 36 DEPEND_PREV = $(DEPEND).prev 37 JOB = image.job 37 38 OUTPUT = image.boot 38 39 -
boot/arch/arm32/loader/Makefile.toolchain
r387416b r99de22b 39 39 TOOLCHAIN_DIR = $(CROSS_PREFIX)/arm32/bin 40 40 41 JOBFILE = ../../../../tools/jobfile.py 42 41 43 ifeq ($(COMPILER),gcc_native) 42 44 CC = gcc -
boot/arch/ia64/Makefile.inc
r387416b r99de22b 30 30 31 31 $(BASE)/image.boot: 32 $(MAKE) -C arch/$(BARCH)/loader 32 $(MAKE) -C arch/$(BARCH)/loader PRECHECK=$(PRECHECK) 33 33 cp arch/$(BARCH)/loader/image.boot $@ 34 34 -
boot/arch/ia64/loader/Makefile
r387416b r99de22b 29 29 30 30 include Makefile.common 31 include ../../../../Makefile.config 31 32 32 33 .PHONY: all clean … … 34 35 all: ../../../../version ../../../../Makefile.config ../../../../config.h ../../../../config.defs 35 36 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 36 $(MAKE) -f Makefile.build 37 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 37 38 38 39 clean: … … 45 46 rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \ 46 47 done 47 rm -f $(DEPEND) $(DEPEND_PREV) $( OUTPUT) $(HELLO) $(COMPS).h $(COMPS).c $(LINK) $(INITRD).img $(INITRD).fs48 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(HELLO) $(COMPS).h $(COMPS).c $(LINK) $(INITRD).img $(INITRD).fs 48 49 find . -name '*.o' -follow -exec rm \{\} \; 49 50 find . -name '*.co' -follow -exec rm \{\} \; -
boot/arch/ia64/loader/Makefile.build
r387416b r99de22b 66 66 %.o: %.S $(DEPEND) 67 67 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@ 68 ifeq ($(PRECHECK),y) 69 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__ 70 endif 68 71 69 72 %.o: %.c $(DEPEND) 70 73 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 74 ifeq ($(PRECHECK),y) 75 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) 76 endif 71 77 72 78 $(DEPEND): -
boot/arch/ia64/loader/Makefile.common
r387416b r99de22b 31 31 # 32 32 33 include ../../../../Makefile.config 33 34 include ../../../Makefile.common 34 35 35 36 DEPEND = Makefile.depend 36 37 DEPEND_PREV = $(DEPEND).prev 38 JOB = image.job 37 39 OUTPUT = image.boot 38 40 HELLO = hello.efi … … 43 45 KERNELDIR = ../../../../kernel 44 46 USPACEDIR = ../../../../uspace 47 48 ifeq ($(MACHINE),i460GX) 49 RD_SRVS += \ 50 $(USPACEDIR)/srv/hw/char/i8042/i8042 \ 51 $(USPACEDIR)/srv/hid/c_mouse/c_mouse 52 endif -
boot/arch/ia64/loader/Makefile.toolchain
r387416b r99de22b 39 39 TOOLCHAIN_DIR = $(CROSS_PREFIX)/ia64/bin 40 40 41 JOBFILE = ../../../../tools/jobfile.py 42 41 43 ifeq ($(COMPILER),gcc_native) 42 44 CC = gcc -
boot/arch/mips32/Makefile.inc
r387416b r99de22b 30 30 31 31 $(BASE)/image.boot: 32 $(MAKE) -C arch/$(BARCH)/loader 32 $(MAKE) -C arch/$(BARCH)/loader PRECHECK=$(PRECHECK) 33 33 cp arch/$(BARCH)/loader/image.boot $@ 34 34 -
boot/arch/mips32/loader/Makefile
r387416b r99de22b 34 34 all: ../../../../version ../../../../Makefile.config ../../../../config.h ../../../../config.defs 35 35 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 36 $(MAKE) -f Makefile.build 36 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 37 37 38 38 clean: … … 43 43 rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \ 44 44 done 45 rm -f $(DEPEND) $(DEPEND_PREV) $( OUTPUT) $(RAW) $(COMPS).h $(COMPS).c $(LINK) $(INITRD).img $(INITRD).fs45 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(RAW) $(COMPS).h $(COMPS).c $(LINK) $(INITRD).img $(INITRD).fs 46 46 find . -name '*.o' -follow -exec rm \{\} \; 47 47 find . -name '*.co' -follow -exec rm \{\} \; -
boot/arch/mips32/loader/Makefile.build
r387416b r99de22b 66 66 %.o: %.S $(DEPEND) 67 67 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@ 68 ifeq ($(PRECHECK),y) 69 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__ 70 endif 68 71 69 72 %.o: %.c $(DEPEND) 70 73 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 74 ifeq ($(PRECHECK),y) 75 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) 76 endif 71 77 72 78 $(DEPEND): -
boot/arch/mips32/loader/Makefile.common
r387416b r99de22b 36 36 DEPEND_PREV = $(DEPEND).prev 37 37 RAW = image.raw 38 JOB = image.job 38 39 OUTPUT = image.boot 39 40 -
boot/arch/mips32/loader/Makefile.toolchain
r387416b r99de22b 37 37 TARGET = mipsel-linux-gnu 38 38 TOOLCHAIN_DIR = $(CROSS_PREFIX)/mips32/bin 39 40 JOBFILE = ../../../../tools/jobfile.py 39 41 40 42 ifeq ($(MACHINE),lgxemul) -
boot/arch/ppc32/Makefile.inc
r387416b r99de22b 42 42 43 43 arch/$(BARCH)/loader/image.boot: 44 $(MAKE) -C arch/$(BARCH)/loader 44 $(MAKE) -C arch/$(BARCH)/loader PRECHECK=$(PRECHECK) 45 45 46 46 clean: generic_clean -
boot/arch/ppc32/loader/Makefile
r387416b r99de22b 34 34 all: ../../../../version ../../../../Makefile.config ../../../../config.h ../../../../config.defs 35 35 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 36 $(MAKE) -f Makefile.build 36 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 37 37 38 38 clean: … … 43 43 rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \ 44 44 done 45 rm -f $(DEPEND) $(DEPEND_PREV) $( OUTPUT) $(COMPS).h $(COMPS).c $(LINK) $(INITRD).img $(INITRD).fs45 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(COMPS).h $(COMPS).c $(LINK) $(INITRD).img $(INITRD).fs 46 46 find . -name '*.o' -follow -exec rm \{\} \; 47 47 find . -name '*.co' -follow -exec rm \{\} \; -
boot/arch/ppc32/loader/Makefile.build
r387416b r99de22b 66 66 %.o: %.S $(DEPEND) 67 67 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@ 68 ifeq ($(PRECHECK),y) 69 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__ 70 endif 68 71 69 72 %.o: %.c $(DEPEND) 70 73 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 74 ifeq ($(PRECHECK),y) 75 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) 76 endif 71 77 72 78 $(DEPEND): -
boot/arch/ppc32/loader/Makefile.common
r387416b r99de22b 35 35 DEPEND = Makefile.depend 36 36 DEPEND_PREV = $(DEPEND).prev 37 JOB = image.job 37 38 OUTPUT = image.boot 38 39 -
boot/arch/ppc32/loader/Makefile.toolchain
r387416b r99de22b 39 39 TOOLCHAIN_DIR = $(CROSS_PREFIX)/ppc32/bin 40 40 41 JOBFILE = ../../../../tools/jobfile.py 42 41 43 ifeq ($(COMPILER),gcc_native) 42 44 CC = gcc -
boot/arch/sparc64/Makefile.inc
r387416b r99de22b 55 55 56 56 arch/$(BARCH)/loader/image.boot: 57 $(MAKE) -C arch/$(BARCH)/loader 57 $(MAKE) -C arch/$(BARCH)/loader PRECHECK=$(PRECHECK) 58 58 59 59 clean: generic_clean -
boot/arch/sparc64/loader/Makefile
r387416b r99de22b 34 34 all: ../../../../version ../../../../Makefile.config ../../../../config.h ../../../../config.defs 35 35 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 36 $(MAKE) -f Makefile.build 36 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 37 37 38 38 clean: … … 43 43 rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \ 44 44 done 45 rm -f $(DEPEND) $(DEPEND_PREV) $( OUTPUT) $(COMPS).h $(COMPS).c $(LINK) $(INITRD).img $(INITRD).fs45 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(OUTPUT) $(COMPS).h $(COMPS).c $(LINK) $(INITRD).img $(INITRD).fs 46 46 find . -name '*.o' -follow -exec rm \{\} \; 47 47 find . -name '*.co' -follow -exec rm \{\} \; -
boot/arch/sparc64/loader/Makefile.build
r387416b r99de22b 77 77 %.o: %.S $(DEPEND) 78 78 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@ 79 ifeq ($(PRECHECK),y) 80 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__ 81 endif 79 82 80 83 %.o: %.c $(DEPEND) 81 84 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 85 ifeq ($(PRECHECK),y) 86 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) 87 endif 82 88 83 89 $(DEPEND): -
boot/arch/sparc64/loader/Makefile.common
r387416b r99de22b 35 35 DEPEND = Makefile.depend 36 36 DEPEND_PREV = $(DEPEND).prev 37 JOB = image.job 37 38 OUTPUT = image.boot 38 39 … … 45 46 RD_SRVS_GENERIC = \ 46 47 $(USPACEDIR)/srv/fs/fat/fat \ 47 $(USPACEDIR)/srv/ cir/fhc/fhc \48 $(USPACEDIR)/srv/ cir/obio/obio48 $(USPACEDIR)/srv/hw/cir/fhc/fhc \ 49 $(USPACEDIR)/srv/hw/cir/obio/obio 49 50 50 51 RD_APPS_GENERIC = \ -
boot/arch/sparc64/loader/Makefile.toolchain
r387416b r99de22b 39 39 TOOLCHAIN_DIR = $(CROSS_PREFIX)/sparc64/bin 40 40 41 JOBFILE = ../../../../tools/jobfile.py 42 41 43 ifeq ($(COMPILER),gcc_native) 42 44 CC = gcc
Note:
See TracChangeset
for help on using the changeset viewer.