From: Kenn H. <ke...@us...> - 2003-06-14 18:22:55
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory sc8-pr-cvs1:/tmp/cvs-serv7863 Modified Files: Makefile Log Message: Allow DEFAULT_CMDLINE to be passed from make command line Index: Makefile =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/Makefile,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- Makefile 11 May 2003 17:35:15 -0000 1.19 +++ Makefile 14 Jun 2003 18:22:52 -0000 1.20 @@ -37,7 +37,7 @@ TOOLSDIR := $(TOPDIR)/arch/vax/boot/tools MKBOOTBLK := $(TOOLSDIR)/mkbootblk -DEFAULT_CMDLINE := "root=/dev/nfs nfsroot=/home/disk_vax/vaxroot ip=bootp rw debug" +DEFAULT_CMDLINE := root=/dev/nfs nfsroot=/home/disk_vax/vaxroot ip=bootp rw debug SETCMDLINE := $(TOOLSDIR)/setcmdline SHOWCMDLINE := $(TOOLSDIR)/showcmdline @@ -72,7 +72,7 @@ vmlinux.SYS: vmlinux.bin TOOLS dd if=/dev/zero bs=512 count=1 of=$@ 2>/dev/null cat $< >> $@ - $(SETCMDLINE) $@ $(DEFAULT_CMDLINE) + $(SETCMDLINE) $@ "$(DEFAULT_CMDLINE)" vmlinux.dsk: vmlinux.bin TOOLS $(MKBOOTBLK) $< > $@ |