|
From: Jan-Benedict G. <jb...@us...> - 2005-04-20 10:13:20
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22341 Modified Files: Makefile Log Message: - Just sorting out some diffs to HEAD. No real changes here... Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/Makefile,v retrieving revision 1.35 retrieving revision 1.36 diff -u -d -r1.35 -r1.36 --- Makefile 7 Apr 2005 22:56:26 -0000 1.35 +++ Makefile 20 Apr 2005 10:13:11 -0000 1.36 @@ -21,12 +21,11 @@ # in the top-level Makefile. We want -O1, not -O2. CFLAGS := $(subst -O2,-O1,$(CFLAGS) ) - + # These flags are used by the top-level makefile when linking # the kernel -LDFLAGS_vmlinux=-N -nostartfiles -nostdlib \ - -noinhibit-exec -warn-once \ - -Map vmlinux.map -cref +LDFLAGS_vmlinux=-N -nostartfiles -nostdlib -noinhibit-exec -warn-once \ + -Map vmlinux.map -cref # Tell the top-level makefile about the addition arch-specific # stuff that's needed @@ -52,13 +51,14 @@ TOOLS: $(Q)$(MAKE) $(build)=$(TOOLSDIR) +# # This will make a disk-bootable image. dd this directly to a -# disk and then tell your VAX to boot from this disk +# disk and then tell your VAX to boot from this disk. # -# NOTE: +# NOTE: # If you want to keep a partition table on the disk, and use # a boot loader to load the kernel from a file system, then -# use the vmlinux.SYS and something like asbl. Dont forget to +# use the vmlinux.SYS and something like asbl. Don't forget to # set the command line to something useful like "root=/dev/sda1" # diskboot: vmlinux.dsk @@ -87,17 +87,17 @@ vmlinux.dsk: vmlinux.bin TOOLS $(call cmd,mkdsk) $(call cmd,setcmd) - -# this is helpful for low level debuggery -listfile: + +# This is helpful for low level debuggery +listfile: rm -f vmlinux.lst - $(OBJDUMP) -D vmlinux > vmlinux.lst + $(OBJDUMP) -D vmlinux > vmlinux.lst CLEAN_FILES += include/asm-$(ARCH)/asm_offsets.h prepare: include/asm-$(ARCH)/asm_offsets.h arch/$(ARCH)/kernel/asm-offsets.s: include/asm include/linux/version.h \ - include/config/MARKER + include/config/MARKER include/asm-$(ARCH)/asm_offsets.h: arch/$(ARCH)/kernel/asm-offsets.s $(call filechk,gen-asm-offsets) @@ -106,14 +106,14 @@ @rm -f vmlinux.* vmlinux @cd $(TOPDIR)/arch/vax ; rm -f *.out TEST.BIN TEST.SYS @cd $(TOOLSDIR) ; rm -f setcmdline showcmdline mkbootblk - + archmrproper: define archhelp - echo '* mopboot - MOP-bootable kernel image (vmlinux.SYS)' - echo '* diskboot - HDD bootable kernel image (vmlinux.dsk)' - echo '' - echo 'Notice: module support is not complete right now' + echo '* mopboot - MOP-bootable kernel image (vmlinux.SYS)' + echo '* diskboot - HDD bootable kernel image (vmlinux.dsk)' + echo '' + echo 'Notice: module support is not complete right now' endef clean: archclean |