/linux-2.4.37.9/arch/m68k/ |
D | Makefile | 28 LINKFLAGS = -T $(TOPDIR)/arch/m68k/vmlinux.lds 30 LINKFLAGS = -T $(TOPDIR)/arch/m68k/vmlinux-sun3.lds -N 137 lilo: vmlinux 138 …if [ -f $(INSTALL_PATH)/vmlinux ]; then mv -f $(INSTALL_PATH)/vmlinux $(INSTALL_PATH)/vmlinux.old;… 140 cat vmlinux > $(INSTALL_PATH)/vmlinux 144 zImage compressed: vmlinux.gz 146 vmlinux.gz: vmlinux 149 cp vmlinux vmlinux.tmp 150 $(STRIP) vmlinux.tmp 151 gzip -9c vmlinux.tmp >vmlinux.gz [all …]
|
/linux-2.4.37.9/arch/alpha/boot/ |
D | Makefile | 36 TARGETS = vmlinux.gz tools/objstrip # also needed by aboot & milo 37 VMLINUX = $(TOPDIR)/vmlinux 41 @echo Ready to install kernel in $(shell pwd)/vmlinux.gz 44 rawboot: vmlinux.nh tools/lxboot tools/bootlx 46 msb: tools/lxboot tools/bootlx vmlinux.nh 47 ( cat tools/lxboot tools/bootlx vmlinux.nh ) > /dev/rz0a 50 bootimage: tools/mkbb tools/lxboot tools/bootlx vmlinux.nh 51 ( cat tools/lxboot tools/bootlx vmlinux.nh ) > bootimage 54 bootpfile: tools/bootph vmlinux.nh 55 cat tools/bootph vmlinux.nh > bootpfile [all …]
|
/linux-2.4.37.9/arch/ppc64/boot/ |
D | Makefile | 35 …--defsym _vmlinux_memsize=0x`$(CROSS_COMPILE)nm -n $(TOPDIR)/vmlinux | sed '$$s/^........\([^ ]*\)… 36 --defsym _vmlinux_filesize=0x`ls -l $(TOPDIR)/vmlinux | awk '{ printf "%x\n", $$5 }'` 57 all: vmlinux.sm 72 vmlinux.sm: $(TOPDIR)/vmlinux addSystemMap 73 ./addSystemMap $(TOPDIR)/System.map $(TOPDIR)/vmlinux vmlinux.sm 79 vmlinux.initrd: $(TOPDIR)/vmlinux addRamDisk ramdisk.image.gz $(TOPDIR)/System.map 80 ./addRamDisk ramdisk.image.gz $(TOPDIR)/System.map $(TOPDIR)/vmlinux vmlinux.initrd 82 vmlinux.sminitrd: vmlinux.sm addRamDisk ramdisk.image.gz $(TOPDIR)/System.map 83 ./addRamDisk ramdisk.image.gz $(TOPDIR)/System.map vmlinux.sm vmlinux.sminitrd 95 zImage.o: $(TOPDIR)/vmlinux [all …]
|
D | zImage.c | 64 struct addr_range vmlinux = {0, 0, 0}; variable 121 vmlinux.addr = (unsigned long)(void *)-1; in start() 123 vmlinux.size = PAGE_ALIGN(vmlinux_filesize); in start() 124 vmlinux.memsize = (unsigned long)&_vmlinux_memsize; in start() 126 claim_size = vmlinux.memsize /* PPPBBB: + fudge for bi_recs */; in start() 131 vmlinux.addr = (unsigned long)claim(claim_addr, claim_size, 0); in start() 132 if ((void *)vmlinux.addr != (void *)-1) break; in start() 134 if ((void *)vmlinux.addr == (void *)-1) { in start() 145 vmlinux.addr, vmlinuz.addr, vmlinuz.addr+vmlinuz.size); in start() 146 gunzip((void *)vmlinux.addr, vmlinux.size, in start() [all …]
|
/linux-2.4.37.9/arch/mips/boot/ |
D | Makefile | 28 VMLINUX = $(TOPDIR)/vmlinux 32 boot: vmlinux.ecoff vmlinux.srec addinitrd 34 vmlinux.ecoff: $(CONFIGURE) elf2ecoff $(VMLINUX) 35 ./elf2ecoff $(VMLINUX) vmlinux.ecoff $(E2EFLAGS) 40 vmlinux.srec: $(CONFIGURE) $(VMLINUX) 41 $(OBJCOPY) -S -O srec $(strip-flags) $(VMLINUX) vmlinux.srec 50 rm -f vmlinux.ecoff vmlinux.srec 53 rm -f vmlinux.ecoff vmlinux.srec addinitrd elf2ecoff
|
/linux-2.4.37.9/arch/ppc/boot/pmac/ |
D | Makefile | 36 image.o: ../images/vmlinux.gz ../common/dummy.o 38 --add-section=.image=../images/vmlinux.gz \ 46 znetboot: vmlinux.coff vmlinux.elf-pmac zImage 47 cp ../images/vmlinux.coff $(TFTPIMAGE) 48 cp ../images/vmlinux.elf-pmac $(TFTPIMAGE).elf 50 znetboot.initrd: vmlinux.initrd.coff vmlinux.initrd.elf-pmac 51 cp ../images/vmlinux.initrd.coff $(TFTPIMAGE) 52 cp ../images/vmlinux.initrd.elf-pmac $(TFTPIMAGE).elf 54 miboot.image: ../common/dummy.o ../images/vmlinux.gz 55 $(OBJCOPY) $(OBJCOPY_ARGS) --add-section=image=../images/vmlinux.gz \ [all …]
|
/linux-2.4.37.9/arch/mips64/boot/ |
D | Makefile | 28 VMLINUX = $(TOPDIR)/vmlinux 32 boot: vmlinux.ecoff vmlinux.srec addinitrd 34 vmlinux.ecoff: $(CONFIGURE) elf2ecoff $(VMLINUX) 35 ./elf2ecoff $(VMLINUX) vmlinux.ecoff $(E2EFLAGS) 40 vmlinux.srec: $(CONFIGURE) $(VMLINUX) 41 $(OBJCOPY) -S -O srec $(strip-flags) $(VMLINUX) vmlinux.srec 50 rm -f vmlinux.ecoff vmlinux.srec 53 rm -f vmlinux.ecoff vmlinux.srec addinitrd elf2ecoff
|
/linux-2.4.37.9/arch/sh64/boot/compressed/ |
D | Makefile | 22 SYSTEM = $(TOPDIR)/vmlinux 26 ZLDFLAGS = -e startup -T vmlinux.lds 36 all: vmlinux 38 vmlinux.lds: vmlinux.lds.S 39 $(CPP) -traditional -C -P -I$(HPATH) -Ush vmlinux.lds.S >vmlinux.lds 41 vmlinux: piggy.o $(OBJECTS) vmlinux.lds target 42 $(LD) $(ZLINKFLAGS) $(EXTRAFLAGS) -o vmlinux $(OBJECTS) piggy.o 57 rm -f vmlinux _tmp_*
|
/linux-2.4.37.9/arch/ia64/ |
D | Makefile | 16 LINKFLAGS = -static -T arch/$(ARCH)/vmlinux.lds 123 vmlinux: arch/$(ARCH)/vmlinux.lds target 125 arch/$(ARCH)/vmlinux.lds: arch/$(ARCH)/vmlinux.lds.S FORCE 127 -traditional arch/$(ARCH)/vmlinux.lds.S > $@ 131 compressed: vmlinux 132 $(OBJCOPY) --strip-all vmlinux vmlinux-tmp 133 gzip vmlinux-tmp 134 mv vmlinux-tmp.gz vmlinux.gz 155 check: vmlinux 156 arch/ia64/scripts/unwcheck.sh vmlinux [all …]
|
/linux-2.4.37.9/arch/ppc/boot/ |
D | Makefile | 25 images/vmlinux.gz: $(TOPDIR)/vmlinux 26 $(MAKE) -C images vmlinux.gz 57 $(BOOT_TARGETS): vmapus lib/zlib.a images/vmlinux.gz makeof1275 maketools 62 vmapus: $(TOPDIR)/vmlinux 64 $(STRIP) $(TOPDIR)/vmlinux -o images/vmapus 69 uImage: $(MKIMAGE) images/vmlinux.gz 73 -d images/vmlinux.gz images/vmlinux.UBoot 74 ln -sf vmlinux.UBoot images/uImage
|
/linux-2.4.37.9/arch/sh64/ |
D | Makefile | 40 LINKFLAGS += -T arch/$(ARCH)/vmlinux.lds $(ENTRY_POINT) 69 vmlinux: arch/$(ARCH)/vmlinux.lds target 71 arch/$(ARCH)/vmlinux.lds: arch/$(ARCH)/vmlinux.lds.S FORCE 72 …OOLCHAIN) $(AFLAGS) -C -P -I$(HPATH) -U$(ARCH) arch/$(ARCH)/vmlinux.lds.S >arch/$(ARCH)/vmlinux.lds 76 zImage: vmlinux 81 zdisk: vmlinux 88 rm -f arch/$(ARCH)/vmlinux.lds
|
/linux-2.4.37.9/arch/cris/ |
D | Makefile | 76 vmlinux.bin: vmlinux 77 $(OBJCOPY) vmlinux vmlinux.bin 79 timage: vmlinux.bin 80 cat vmlinux.bin cramfs.img >timage 83 cp vmlinux.bin simvmlinux.bin 91 cat vmlinux.bin cramfs.img >timage 93 clinux: vmlinux.bin decompress.bin rescue.bin 101 zImage: vmlinux.bin 109 rm -f timage vmlinux.bin cramfs.img
|
/linux-2.4.37.9/arch/sh/boot/ |
D | Makefile | 11 SYSTEM =$(TOPDIR)/vmlinux 16 zImage: $(CONFIGURE) compressed/vmlinux 17 $(OBJCOPY) compressed/vmlinux zImage 19 compressed/vmlinux: $(TOPDIR)/vmlinux 20 $(MAKE) -C compressed vmlinux 32 rm -f setup bootsect zImage compressed/vmlinux.out
|
/linux-2.4.37.9/arch/sh64/boot/ |
D | Makefile | 11 SYSTEM =$(TOPDIR)/vmlinux 16 zImage: $(CONFIGURE) compressed/vmlinux 17 $(OBJCOPY) compressed/vmlinux zImage 19 compressed/vmlinux: $(TOPDIR)/vmlinux 20 $(MAKE) -C compressed vmlinux 32 rm -f setup bootsect zImage compressed/vmlinux.out
|
/linux-2.4.37.9/arch/ppc/boot/images/ |
D | Makefile | 7 vmlinux.gz: $(TOPDIR)/vmlinux 8 $(OBJCOPY) --strip-all -S -O binary $(TOPDIR)/vmlinux vmlinux 9 gzip -vf9 vmlinux 12 rm -f sImage vmapus vmlinux* miboot* zImage* zvmlinux* uImage
|
/linux-2.4.37.9/arch/sh/ |
D | Makefile | 61 LINKSCRIPT = arch/sh/vmlinux.lds 86 vmlinux: arch/sh/vmlinux.lds target 88 arch/sh/vmlinux.lds: arch/sh/vmlinux.lds.S FORCE 89 $(CPP) -traditional -C -P -I$(HPATH) -Ush arch/sh/vmlinux.lds.S >arch/sh/vmlinux.lds 93 zImage: vmlinux 98 zdisk: vmlinux 108 rm -f arch/sh/vmlinux.lds
|
/linux-2.4.37.9/arch/ppc64/ |
D | Makefile | 29 LINKFLAGS = -T arch/ppc64/vmlinux.lds -Bstatic \ 64 BOOT_TARGETS = vmlinux.sminitrd vmlinux.initrd vmlinux.sm 67 $(BOOT_TARGETS): vmlinux 70 znetboot: vmlinux 72 cp -f vmlinux /tftpboot/vmlinux.smp 74 cp -f vmlinux /tftpboot/vmlinux
|
/linux-2.4.37.9/arch/mips64/ |
D | Makefile | 364 vmlinux-32 = vmlinux.32 365 vmlinux-64 = vmlinux 371 vmlinux-32 = vmlinux 372 vmlinux-64 = vmlinux.64 391 MAKEBOOT = $(MAKE) -C arch/$(ARCH)/boot VMLINUX=$(TOPDIR)/$(vmlinux-32) 396 vmlinux: $(LOADSCRIPT) target 403 vmlinux.32: vmlinux 410 vmlinux.64: vmlinux 414 boot: $(vmlinux-32) 418 boot: $(vmlinux-64) [all …]
|
/linux-2.4.37.9/arch/arm/boot/compressed/ |
D | Makefile | 14 ZLDFLAGS = -p -X -T vmlinux.lds 78 all: vmlinux 80 vmlinux: $(HEAD) $(OBJS) piggy.o vmlinux.lds target 81 $(LD) $(ZLDFLAGS) $(HEAD) $(OBJS) piggy.o $(LIBGCC) -o vmlinux 98 vmlinux.lds: vmlinux.lds.in Makefile $(TOPDIR)/arch/$(ARCH)/boot/Makefile $(TOPDIR)/.config 99 @sed "$(SEDFLAGS)" < vmlinux.lds.in > $@ 101 clean:; rm -f vmlinux core piggy* vmlinux.lds
|
/linux-2.4.37.9/arch/sh/boot/compressed/ |
D | Makefile | 8 SYSTEM = $(TOPDIR)/vmlinux 16 ZLDFLAGS = -e startup -T $(TOPDIR)/arch/sh/vmlinux.lds 25 all: vmlinux 27 vmlinux: piggy.o $(OBJECTS) target 28 $(LD) $(ZLINKFLAGS) -o vmlinux $(OBJECTS) piggy.o 43 rm -f vmlinux _tmp_*
|
/linux-2.4.37.9/arch/i386/ |
D | Makefile | 22 LINKFLAGS =-T $(TOPDIR)/arch/i386/vmlinux.lds $(LDFLAGS) 126 vmlinux: arch/i386/vmlinux.lds target 133 zImage: vmlinux 136 bzImage: vmlinux 141 zlilo: vmlinux 146 bzlilo: vmlinux 149 zdisk: vmlinux 152 bzdisk: vmlinux 155 install: vmlinux
|
/linux-2.4.37.9/arch/i386/boot/ |
D | Makefile | 15 zImage: $(CONFIGURE) bootsect setup compressed/vmlinux tools/build 16 $(OBJCOPY) compressed/vmlinux compressed/vmlinux.out 17 tools/build bootsect setup compressed/vmlinux.out $(ROOT_DEV) > zImage 23 compressed/vmlinux: $(TOPDIR)/vmlinux 24 @$(MAKE) -C compressed vmlinux 26 compressed/bvmlinux: $(TOPDIR)/vmlinux 85 rm -f setup bootsect zImage compressed/vmlinux.out
|
/linux-2.4.37.9/arch/x86_64/boot/ |
D | Makefile | 15 zImage: $(CONFIGURE) bootsect setup compressed/vmlinux tools/build 16 $(OBJCOPY) compressed/vmlinux compressed/vmlinux.out 17 tools/build bootsect setup compressed/vmlinux.out $(ROOT_DEV) > zImage 26 compressed/vmlinux: $(TOPDIR)/vmlinux 27 @$(MAKE) -C compressed vmlinux 29 compressed/bvmlinux: $(TOPDIR)/vmlinux 88 rm -f setup bootsect zImage compressed/vmlinux.out
|
/linux-2.4.37.9/arch/s390x/boot/ |
D | Makefile | 25 image: $(CONFIGURE) $(TOPDIR)/vmlinux \ 27 $(OBJCOPY) -O binary $(TOPDIR)/vmlinux image 28 …$(NM) $(TOPDIR)/vmlinux | grep -v '\(compiled\)\|\( [aUw] \)\|\(\.\)\|\(LASH[RL]DI\)' | sort > $(T… 30 listing: ../../../vmlinux 31 $(OBJDUMP) --disassemble --disassemble-all --disassemble-zeroes --reloc $(TOPDIR)/vmlinux > listing
|
/linux-2.4.37.9/arch/s390/boot/ |
D | Makefile | 25 image: $(CONFIGURE) $(TOPDIR)/vmlinux \ 27 $(OBJCOPY) -O binary $(TOPDIR)/vmlinux image 28 …$(NM) $(TOPDIR)/vmlinux | grep -v '\(compiled\)\|\( [aUw] \)\|\(\.\)\|\(LASH[RL]DI\)' | sort > $(T… 30 listing: ../../../vmlinux 31 $(OBJDUMP) --disassemble --disassemble-all --disassemble-zeroes --reloc $(TOPDIR)/vmlinux > listing
|