Module Name:    src
Committed By:   martin
Date:           Sat May 31 10:43:00 UTC 2014

Modified Files:
        src/distrib/vax/cdroms/installcd: Makefile

Log Message:
Instead of running MAKEDEV inside the image content dir (which would only
work for root), make it emit a mtree spec file and pass that to makefs.
This should also work for unprivileged builds.
Problem pointed out by Izumi Tsutsui.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/distrib/vax/cdroms/installcd/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/vax/cdroms/installcd/Makefile
diff -u src/distrib/vax/cdroms/installcd/Makefile:1.5 src/distrib/vax/cdroms/installcd/Makefile:1.6
--- src/distrib/vax/cdroms/installcd/Makefile:1.5	Fri May 30 13:24:22 2014
+++ src/distrib/vax/cdroms/installcd/Makefile	Sat May 31 10:43:00 2014
@@ -1,8 +1,11 @@
-#	$NetBSD: Makefile,v 1.5 2014/05/30 13:24:22 martin Exp $
+#	$NetBSD: Makefile,v 1.6 2014/05/31 10:43:00 martin Exp $
 CDBASE=		vaxcd			# gives ${CDBASE}.iso
 CDRELEASE=	true			# include $RELEASEDIR/$MACHINE
 CDKERNELS=	${RELEASEDIR}/${MACHINE}/binary/kernel/netbsd-GENERIC.gz	netbsd.gz
 CDRELEASE_NOISOS=true
+CDMAKEFSEXTRAOPTS+=-F ./fs.spec
+
+CLEANFILES+= fs.spec
 
 # for PRINTOBJDIR
 .include <bsd.own.mk>
@@ -29,7 +32,9 @@ image_md_pre:
 		${INSTALL} ${COPY} $$f cdrom; \
 	done
 	${TOOL_GZIP} -d cdrom/netbsd.gz
-	(cd cdrom/dev && ${HOST_SH} ./MAKEDEV all)
+	echo '. type=dir optional' > ./fs.spec
+	echo './dev type=dir optional' >> ./fs.spec
+	${HOST_SH} cdrom/dev/MAKEDEV -s all | ${TOOL_SED} -e '1d' -e 's:^\./:./dev/:' >> ./fs.spec
 	${MKDIR} cdrom/var
 	${MKDIR} cdrom/kern
 

Reply via email to