Changeset 61c0402 in mainline for boot/arch/ia64
- Timestamp:
- 2010-01-15T19:36:53Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 92bee46
- Parents:
- 50f9c3a (diff), 963462af (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/ia64
- Files:
-
- 5 edited
-
Makefile.inc (modified) (1 diff)
-
loader/Makefile (modified) (3 diffs)
-
loader/Makefile.build (modified) (2 diffs)
-
loader/Makefile.common (modified) (2 diffs)
-
loader/Makefile.toolchain (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ia64/Makefile.inc
r50f9c3a r61c0402 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
r50f9c3a r61c0402 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
r50f9c3a r61c0402 49 49 boot.S 50 50 51 COMPONENTS = \52 $(KERNELDIR)/kernel.bin \53 $(USPACEDIR)/srv/ns/ns \54 $(USPACEDIR)/srv/loader/loader \55 $(USPACEDIR)/app/init/init \56 $(USPACEDIR)/srv/devmap/devmap \57 $(USPACEDIR)/srv/bd/rd/rd \58 $(USPACEDIR)/srv/vfs/vfs59 ifeq ($(RDFMT),tmpfs)60 COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs61 endif62 ifeq ($(RDFMT),fat)63 COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat64 endif65 66 51 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) 67 52 COMPONENT_OBJECTS := $(addsuffix .co,$(basename $(notdir $(COMPONENTS)))) $(INITRD).co … … 81 66 %.o: %.S $(DEPEND) 82 67 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@ 68 ifeq ($(PRECHECK),y) 69 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__ 70 endif 83 71 84 72 %.o: %.c $(DEPEND) 85 73 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 74 ifeq ($(PRECHECK),y) 75 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) 76 endif 86 77 87 78 $(DEPEND): -
boot/arch/ia64/loader/Makefile.common
r50f9c3a r61c0402 31 31 # 32 32 33 include ../../../../Makefile.config 34 include ../../../Makefile.common 35 33 36 DEPEND = Makefile.depend 34 37 DEPEND_PREV = $(DEPEND).prev 38 JOB = image.job 35 39 OUTPUT = image.boot 36 40 HELLO = hello.efi … … 38 42 LINK = _link.ld 39 43 COMPS = _components 40 INITRD = initrd41 44 42 45 KERNELDIR = ../../../../kernel 43 46 USPACEDIR = ../../../../uspace 44 47 45 RD_SRVS = \ 46 $(USPACEDIR)/srv/fb/fb \ 47 $(USPACEDIR)/srv/kbd/kbd \ 48 $(USPACEDIR)/srv/console/console \ 49 $(USPACEDIR)/srv/fs/devfs/devfs \ 50 $(USPACEDIR)/srv/fs/tmpfs/tmpfs \ 51 $(USPACEDIR)/srv/fs/fat/fat \ 52 $(USPACEDIR)/srv/bd/file_bd/file_bd \ 53 $(USPACEDIR)/srv/part/mbr_part/mbr_part 54 55 RD_APPS = \ 56 $(USPACEDIR)/app/edit/edit \ 57 $(USPACEDIR)/app/getvc/getvc \ 58 $(USPACEDIR)/app/redir/redir \ 59 $(USPACEDIR)/app/tetris/tetris \ 60 $(USPACEDIR)/app/tester/tester \ 61 $(USPACEDIR)/app/trace/trace \ 62 $(USPACEDIR)/app/klog/klog \ 63 $(USPACEDIR)/app/bdsh/bdsh 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
r50f9c3a r61c0402 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
Note:
See TracChangeset
for help on using the changeset viewer.
