Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/distrib Add MTREE?= to add Makefiles and use when running m...
details: https://anonhg.NetBSD.org/src/rev/03e2222d2b98
branches: trunk
changeset: 515997:03e2222d2b98
user: jmc <jmc%NetBSD.org@localhost>
date: Sat Oct 13 06:15:15 2001 +0000
description:
Add MTREE?= to add Makefiles and use when running mtree
diffstat:
distrib/alpha/instkernel/ramdisk/Makefile | 4 ++--
distrib/amiga/floppies/inst-common/Makefile.inc | 5 +++--
distrib/arm32/floppies/inst-common/Makefile.inc | 5 +++--
distrib/arm32/ramdisk/Makefile | 5 +++--
distrib/bebox/floppies/ramdisk/Makefile | 5 +++--
distrib/bebox/floppies/ramdisk/Makefile.inc | 5 +++--
distrib/i386/floppies/ramdisk-big/Makefile | 5 +++--
distrib/i386/floppies/ramdisk-rescuesmall/Makefile | 5 +++--
distrib/i386/floppies/ramdisk-rescuetiny/Makefile | 5 +++--
distrib/i386/floppies/ramdisk-small/Makefile | 5 +++--
distrib/i386/floppies/ramdisk-tiny/Makefile | 5 +++--
distrib/i386/floppies/ramdisk-tiny/Makefile.inc | 5 +++--
distrib/mac68k/instkernel/ramdisk/Makefile | 5 +++--
distrib/macppc/floppies/ramdisk/Makefile | 5 +++--
distrib/miniroot/Makefile | 5 +++--
distrib/mipsco/ramdisk/Makefile | 6 ++++--
distrib/mvme68k/ramdisk/Makefile | 5 +++--
distrib/news68k/floppies/ramdisk/Makefile | 5 +++--
distrib/newsmips/floppies/ramdisk/Makefile | 5 +++--
distrib/pc532/floppies/inst-common/Makefile.inc | 5 +++--
distrib/pmax/ramdisk/Makefile | 5 +++--
distrib/prep/floppies/ramdisk/Makefile | 5 +++--
distrib/sparc/ramdisk/Makefile | 5 +++--
distrib/sparc64/xminiroot/Makefile | 5 +++--
distrib/sun2/miniroot/Makefile | 6 ++++--
distrib/sun2/ramdisk/Makefile | 5 +++--
distrib/sun3/miniroot/Makefile | 5 +++--
distrib/sun3/ramdisk/Makefile | 5 +++--
distrib/vax/inst-common/Makefile.inc | 5 +++--
distrib/vax/ramdisk/Makefile | 5 +++--
distrib/vax/ramdisk/Makefile.inc | 5 +++--
distrib/x68k/floppies/ramdisk-common/Makefile.inc | 5 +++--
32 files changed, 97 insertions(+), 64 deletions(-)
diffs (truncated from 826 to 300 lines):
diff -r 0765bc9cadb3 -r 03e2222d2b98 distrib/alpha/instkernel/ramdisk/Makefile
--- a/distrib/alpha/instkernel/ramdisk/Makefile Sat Oct 13 06:11:06 2001 +0000
+++ b/distrib/alpha/instkernel/ramdisk/Makefile Sat Oct 13 06:15:15 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2001/10/10 05:13:51 enami Exp $
+# $NetBSD: Makefile,v 1.12 2001/10/13 06:15:15 jmc Exp $
TOP= ${.CURDIR}/..
@@ -29,7 +29,7 @@
# disklabel -rw ${VND_CDEV} ${DISKTYPE}
newfs -B le -m 0 -o space -i 5120 -c 20 ${VND_RDEV}
mount ${VND_DEV} ${MOUNT_POINT}
- mtree -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -u
+ ${MTREE} -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -u
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
KERNOBJDIR=${KERNOBJDIR} \
TARGDIR=${MOUNT_POINT} sh ${TOP}/src/runlist.sh ${.CURDIR}/${LISTS}
diff -r 0765bc9cadb3 -r 03e2222d2b98 distrib/amiga/floppies/inst-common/Makefile.inc
--- a/distrib/amiga/floppies/inst-common/Makefile.inc Sat Oct 13 06:11:06 2001 +0000
+++ b/distrib/amiga/floppies/inst-common/Makefile.inc Sat Oct 13 06:15:15 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.18 2001/10/10 05:13:51 enami Exp $
+# $NetBSD: Makefile.inc,v 1.19 2001/10/13 06:15:15 jmc Exp $
# TOP is assumed to be defined by Makefile including this one.
@@ -17,6 +17,7 @@
MTREECONF= ${COMMONDIR}/mtree.conf
CRUNCHGEN?= crunchgen
+MTREE?= mtree
DISKTYPE= miniroot
@@ -26,7 +27,7 @@
installboot ${MDEC}/xxboot ${VND_RDEV}
newfs -B be -c 64 -m 0 -o space ${VND_RDEV} ${DISKTYPE}
mount -t ffs ${VND_DEV} ${MOUNT_POINT}
- mtree -def ${MTREECONF} -p ${MOUNT_POINT}/ -u
+ ${MTREE} -def ${MTREECONF} -p ${MOUNT_POINT}/ -u
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
KERNOBJDIR=${KERNOBJDIR} \
TARGDIR=${MOUNT_POINT} sh ${TOP}/runlist.sh ${LISTS}
diff -r 0765bc9cadb3 -r 03e2222d2b98 distrib/arm32/floppies/inst-common/Makefile.inc
--- a/distrib/arm32/floppies/inst-common/Makefile.inc Sat Oct 13 06:11:06 2001 +0000
+++ b/distrib/arm32/floppies/inst-common/Makefile.inc Sat Oct 13 06:15:15 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.11 2001/10/10 05:13:51 enami Exp $
+# $NetBSD: Makefile.inc,v 1.12 2001/10/13 06:15:16 jmc Exp $
# TOP is assumed to be defined by Makefile including this one.
@@ -17,6 +17,7 @@
MTREECONF= ${COMMONDIR}/mtree.conf
CRUNCHGEN?= crunchgen
+MTREE?= mtree
DISKTYPE= floppy
@@ -25,7 +26,7 @@
vnconfig -t ${DISKTYPE} -v -c ${VND_DEV} ${IMAGE}
newfs -B le -O -m 0 -o space -i 5120 -c 80 ${VND_RDEV} ${DISKTYPE}
mount ${VND_DEV} ${MOUNT_POINT}
- mtree -def ${MTREECONF} -p ${MOUNT_POINT}/ -u
+ ${MTREE} -def ${MTREECONF} -p ${MOUNT_POINT}/ -u
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
KERNOBJDIR=${KERNOBJDIR} \
TARGDIR=${MOUNT_POINT} sh ${TOP}/runlist.sh ${LISTS}
diff -r 0765bc9cadb3 -r 03e2222d2b98 distrib/arm32/ramdisk/Makefile
--- a/distrib/arm32/ramdisk/Makefile Sat Oct 13 06:11:06 2001 +0000
+++ b/distrib/arm32/ramdisk/Makefile Sat Oct 13 06:15:15 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2001/10/10 05:13:52 enami Exp $
+# $NetBSD: Makefile,v 1.17 2001/10/13 06:15:16 jmc Exp $
TOP= ${.CURDIR}/..
@@ -24,6 +24,7 @@
MTREECONF= mtree.conf
CRUNCHGEN?= crunchgen
+MTREE?= mtree
DISKTYPE= install-ramdisk
RDSIZE= 3800
@@ -43,7 +44,7 @@
disklabel -rw ${VND_CRDEV} ${DISKTYPE}
newfs -B le -m 0 -o space -i 5120 -c 100 ${VND_RDEV}
mount ${VND_DEV} ${MOUNT_POINT}
- mtree -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -u
+ ${MTREE} -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -u
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
KERNOBJDIR=${KERNOBJDIR} \
TARGDIR=${MOUNT_POINT} sh ${.CURDIR}/runlist.sh ${.CURDIR}/${LISTS}
diff -r 0765bc9cadb3 -r 03e2222d2b98 distrib/bebox/floppies/ramdisk/Makefile
--- a/distrib/bebox/floppies/ramdisk/Makefile Sat Oct 13 06:11:06 2001 +0000
+++ b/distrib/bebox/floppies/ramdisk/Makefile Sat Oct 13 06:15:15 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2001/10/10 05:13:52 enami Exp $
+# $NetBSD: Makefile,v 1.8 2001/10/13 06:15:16 jmc Exp $
TOP= ${.CURDIR}/..
@@ -25,6 +25,7 @@
MTREECONF= mtree.conf
CRUNCHGEN?= crunchgen
+MTREE?= mtree
DISKTYPE= floppy3
@@ -43,7 +44,7 @@
disklabel -rw ${VND_CDEV} ${DISKTYPE}
newfs -B be -m 0 -o space -i 5120 -c 80 ${VND_RDEV} ${DISKTYPE}
mount ${VND_DEV} ${MOUNT_POINT}
- mtree -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -u
+ ${MTREE} -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -u
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
KERNOBJDIR=${KERNOBJDIR} \
TARGDIR=${MOUNT_POINT} sh ${TOP}/runlist.sh ${.CURDIR}/${LISTS}
diff -r 0765bc9cadb3 -r 03e2222d2b98 distrib/bebox/floppies/ramdisk/Makefile.inc
--- a/distrib/bebox/floppies/ramdisk/Makefile.inc Sat Oct 13 06:11:06 2001 +0000
+++ b/distrib/bebox/floppies/ramdisk/Makefile.inc Sat Oct 13 06:15:15 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.7 2001/10/10 05:13:52 enami Exp $
+# $NetBSD: Makefile.inc,v 1.8 2001/10/13 06:15:16 jmc Exp $
# TOP is assumed to be defined by Makefile including this one.
@@ -19,6 +19,7 @@
MTREECONF= ${COMMONDIR}/mtree.conf
CRUNCHGEN?= crunchgen
+MTREE?= mtree
DISKTYPE= floppy3
@@ -28,7 +29,7 @@
disklabel -rw ${VND_CDEV} ${DISKTYPE}
newfs -B be -m 0 -o space -i 5120 -c 80 ${VND_RDEV} ${DISKTYPE}
mount ${VND_DEV} ${MOUNT_POINT}
- mtree -def ${MTREECONF} -p ${MOUNT_POINT}/ -u
+ ${MTREE} -def ${MTREECONF} -p ${MOUNT_POINT}/ -u
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
KERNOBJDIR=${KERNOBJDIR} \
TARGDIR=${MOUNT_POINT} sh ${TOP}/runlist.sh ${LISTS}
diff -r 0765bc9cadb3 -r 03e2222d2b98 distrib/i386/floppies/ramdisk-big/Makefile
--- a/distrib/i386/floppies/ramdisk-big/Makefile Sat Oct 13 06:11:06 2001 +0000
+++ b/distrib/i386/floppies/ramdisk-big/Makefile Sat Oct 13 06:15:15 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2001/10/10 05:13:52 enami Exp $
+# $NetBSD: Makefile,v 1.9 2001/10/13 06:15:16 jmc Exp $
TOP= ${.CURDIR}/..
WARNS=1
@@ -26,6 +26,7 @@
MTREECONF= mtree.conf
CRUNCHGEN?= crunchgen
+MTREE?= mtree
RAMDISKSPC= 128
RAMDISKCYLS= 32
@@ -43,7 +44,7 @@
disklabel -r -R ${VND_CDEV} tmplabel
newfs -B le -m 0 -o space -i 3950 -c 80 ${VND_RDEV}
mount ${VND_DEV} ${MOUNT_POINT}
- mtree -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -U
+ ${MTREE} -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -U
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
TARGDIR=${MOUNT_POINT} sh ${TOP}/runlist.sh ${.CURDIR}/${LISTS}
@echo ""
diff -r 0765bc9cadb3 -r 03e2222d2b98 distrib/i386/floppies/ramdisk-rescuesmall/Makefile
--- a/distrib/i386/floppies/ramdisk-rescuesmall/Makefile Sat Oct 13 06:11:06 2001 +0000
+++ b/distrib/i386/floppies/ramdisk-rescuesmall/Makefile Sat Oct 13 06:15:15 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2001/10/10 05:13:52 enami Exp $
+# $NetBSD: Makefile,v 1.12 2001/10/13 06:15:17 jmc Exp $
TOP= ${.CURDIR}/..
WARNS=1
@@ -25,6 +25,7 @@
MTREECONF= mtree.conf
CRUNCHGEN?= crunchgen
+MTREE?= mtree
RAMDISKSPC= 165
RAMDISKCYLS= 16
@@ -41,7 +42,7 @@
disklabel -r -R ${VND_CDEV} tmplabel
newfs -B le -m 0 -o space -i 8192 -c 80 ${VND_RDEV}
mount ${VND_DEV} ${MOUNT_POINT}
- mtree -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -U
+ ${MTREE} -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -U
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
TARGDIR=${MOUNT_POINT} sh ${TOP}/runlist.sh ${.CURDIR}/${LISTS}
@echo ""
diff -r 0765bc9cadb3 -r 03e2222d2b98 distrib/i386/floppies/ramdisk-rescuetiny/Makefile
--- a/distrib/i386/floppies/ramdisk-rescuetiny/Makefile Sat Oct 13 06:11:06 2001 +0000
+++ b/distrib/i386/floppies/ramdisk-rescuetiny/Makefile Sat Oct 13 06:15:15 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2001/10/10 05:13:53 enami Exp $
+# $NetBSD: Makefile,v 1.11 2001/10/13 06:15:17 jmc Exp $
TOP= ${.CURDIR}/..
WARNS=1
@@ -25,6 +25,7 @@
MTREECONF= mtree.conf
CRUNCHGEN?= crunchgen
+MTREE?= mtree
RAMDISKSPC= 128
RAMDISKCYLS= 21
@@ -41,7 +42,7 @@
disklabel -r -R ${VND_CDEV} tmplabel
newfs -B le -m 0 -o space -i 3950 -c 80 ${VND_RDEV}
mount ${VND_DEV} ${MOUNT_POINT}
- mtree -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -U
+ ${MTREE} -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -U
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
TARGDIR=${MOUNT_POINT} sh ${TOP}/runlist.sh ${.CURDIR}/${LISTS}
@echo ""
diff -r 0765bc9cadb3 -r 03e2222d2b98 distrib/i386/floppies/ramdisk-small/Makefile
--- a/distrib/i386/floppies/ramdisk-small/Makefile Sat Oct 13 06:11:06 2001 +0000
+++ b/distrib/i386/floppies/ramdisk-small/Makefile Sat Oct 13 06:15:15 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2001/10/10 05:13:53 enami Exp $
+# $NetBSD: Makefile,v 1.11 2001/10/13 06:15:17 jmc Exp $
TOP= ${.CURDIR}/..
WARNS=1
@@ -25,6 +25,7 @@
MTREECONF= mtree.conf
CRUNCHGEN?= crunchgen
+MTREE?= mtree
RAMDISKSPC= 165
RAMDISKCYLS= 16
@@ -42,7 +43,7 @@
disklabel -r -R ${VND_CDEV} tmplabel
newfs -B le -m 0 -o space -i 5000 -c 80 ${VND_RDEV}
mount ${VND_DEV} ${MOUNT_POINT}
- mtree -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -U
+ ${MTREE} -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -U
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
TARGDIR=${MOUNT_POINT} sh ${TOP}/runlist.sh ${.CURDIR}/${LISTS}
@echo ""
diff -r 0765bc9cadb3 -r 03e2222d2b98 distrib/i386/floppies/ramdisk-tiny/Makefile
--- a/distrib/i386/floppies/ramdisk-tiny/Makefile Sat Oct 13 06:11:06 2001 +0000
+++ b/distrib/i386/floppies/ramdisk-tiny/Makefile Sat Oct 13 06:15:15 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2001/10/10 05:13:53 enami Exp $
+# $NetBSD: Makefile,v 1.14 2001/10/13 06:15:17 jmc Exp $
TOP= ${.CURDIR}/..
WARNS=1
@@ -23,6 +23,7 @@
LISTS= list
CRUNCHCONF= ${CBIN}.conf
MTREECONF= mtree.conf
+MTREE?= mtree
CRUNCHGEN?= crunchgen
@@ -42,7 +43,7 @@
disklabel -r -R ${VND_CDEV} tmplabel
newfs -B le -m 0 -o space -i 3950 -c 80 ${VND_RDEV}
mount ${VND_DEV} ${MOUNT_POINT}
- mtree -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -U
+ ${MTREE} -def ${.CURDIR}/${MTREECONF} -p ${MOUNT_POINT}/ -U
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
TARGDIR=${MOUNT_POINT} sh ${TOP}/runlist.sh ${.CURDIR}/${LISTS}
@echo ""
diff -r 0765bc9cadb3 -r 03e2222d2b98 distrib/i386/floppies/ramdisk-tiny/Makefile.inc
--- a/distrib/i386/floppies/ramdisk-tiny/Makefile.inc Sat Oct 13 06:11:06 2001 +0000
+++ b/distrib/i386/floppies/ramdisk-tiny/Makefile.inc Sat Oct 13 06:15:15 2001 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.6 2001/10/10 05:13:53 enami Exp $
+# $NetBSD: Makefile.inc,v 1.7 2001/10/13 06:15:17 jmc Exp $
# TOP is assumed to be defined by Makefile including this one.
@@ -19,6 +19,7 @@
MTREECONF= ${COMMONDIR}/mtree.conf
CRUNCHGEN?= crunchgen
+MTREE?= mtree
DISKTYPE= floppy3
@@ -28,7 +29,7 @@
disklabel -rw ${VND_CDEV} ${DISKTYPE}
newfs -B le -m 0 -o space -i 5120 -c 80 ${VND_RDEV} ${DISKTYPE}
mount ${VND_DEV} ${MOUNT_POINT}
- mtree -def ${MTREECONF} -p ${MOUNT_POINT}/ -u
Home |
Main Index |
Thread Index |
Old Index