Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Dec 2005 07:03:26 GMT
From:      soc-andrew <soc-andrew@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 88060 for review
Message-ID:  <200512120703.jBC73QTM002198@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=88060

Change 88060 by soc-andrew@soc-andrew_serv on 2005/12/12 07:03:01

	Fix the name of the Select Distributions menu [1]
	Add a note that the base distribution is required [1]
	Don't make the kern.geom.debugflags sysctl 16 as it is unneeded [1]
	Fix vi by creating /var/tmp
	
	[1] Noticed by: marius (dot) nuennerich (At) gmx (dot) net

Affected files ...

.. //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/inst/430_select_dists.lua#3 edit
.. //depot/projects/soc2005/bsdinstaller/src/release/Makefile#19 edit

Differences ...

==== //depot/projects/soc2005/bsdinstaller/src/libexec/bsdinstaller/inst/430_select_dists.lua#3 (text+ko) ====

@@ -16,8 +16,9 @@
 	end
 	local response = App.ui:present({
 		id = "select_dists",
-		name = _("Select Packages"),
-		short_desc = _("Select the distributions you wish to install."),
+		name = _("Select Distributions"),
+		short_desc = _("Select the distributions you wish to " ..
+		    "install. The `base' distribution is required."),
 		multiple = "true",
 		actions = {
 			{

==== //depot/projects/soc2005/bsdinstaller/src/release/Makefile#19 (text+ko) ====

@@ -785,7 +785,6 @@
 	@echo "dumpdev=\"NO\"" >> ${RD}/bsdinstaller/root/etc/rc.conf
 	@echo "syslogd_enable=\"NO\"" >> ${RD}/bsdinstaller/root/etc/rc.conf
 	@echo "update_motd=\"NO\"" >> ${RD}/bsdinstaller/root/etc/rc.conf
-	@echo "kern.geom.debugflags=16" >> ${RD}/bsdinstaller/root/etc/sysctl.conf
 	@cat ${.CURDIR}/bsdinstaller/gettytab >> ${RD}/bsdinstaller/root/etc/gettytab
 	( if [ -f ${.CURDIR}/bsdinstaller/ttys.${TARGET_ARCH} ]; then \
 	    cp ${.CURDIR}/bsdinstaller/ttys.${TARGET_ARCH} \
@@ -794,6 +793,7 @@
 	@mkdir -p ${RD}/bsdinstaller/root/var/db
 	@mkdir -p ${RD}/bsdinstaller/root/var/empty
 	@mkdir -p ${RD}/bsdinstaller/root/var/run
+	@mkdir -p ${RD}/bsdinstaller/root/var/tmp
 	cp ${.CURDIR}/bsdinstaller/bsdinstaller_shell.sh ${RD}/bsdinstaller/root/
 	chmod u+x ${RD}/bsdinstaller/root/bsdinstaller_shell.sh
 	cp ${.CURDIR}/bsdinstaller/bsdinstaller ${RD}/bsdinstaller/root/etc/rc.d/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200512120703.jBC73QTM002198>