From owner-p4-projects@FreeBSD.ORG Sat Jul 9 08:59:48 2005 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 3D8D416A421; Sat, 9 Jul 2005 08:59:48 +0000 (GMT) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E39F716A41C for ; Sat, 9 Jul 2005 08:59:47 +0000 (GMT) (envelope-from soc-andrew@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 916C843D45 for ; Sat, 9 Jul 2005 08:59:47 +0000 (GMT) (envelope-from soc-andrew@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j698xkhO045150 for ; Sat, 9 Jul 2005 08:59:47 GMT (envelope-from soc-andrew@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j698xkRg045147 for perforce@freebsd.org; Sat, 9 Jul 2005 08:59:46 GMT (envelope-from soc-andrew@freebsd.org) Date: Sat, 9 Jul 2005 08:59:46 GMT Message-Id: <200507090859.j698xkRg045147@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to soc-andrew@freebsd.org using -f From: soc-andrew To: Perforce Change Reviews Cc: Subject: PERFORCE change 79810 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2005 08:59:49 -0000 http://perforce.freebsd.org/chv.cgi?CH=79810 Change 79810 by soc-andrew@soc-andrew_serv on 2005/07/09 08:59:11 Get the boot CD to automaticly start the BSD Installer Affected files ... .. //depot/projects/soc2005/bsdinstaller/scripts/build_patch.sh#3 edit .. //depot/projects/soc2005/bsdinstaller/src/release/Makefile#5 edit .. //depot/projects/soc2005/bsdinstaller/src/release/bsdinstaller/bsdinstaller_shell.sh#1 add .. //depot/projects/soc2005/bsdinstaller/src/release/bsdinstaller/gettytab#1 add .. //depot/projects/soc2005/bsdinstaller/src/release/bsdinstaller/ttys.i386#1 add Differences ... ==== //depot/projects/soc2005/bsdinstaller/scripts/build_patch.sh#3 (text+ko) ==== @@ -6,7 +6,7 @@ FILES="lib/Makefile usr.sbin/Makefile release/Makefile" # Dir's to create a tarball of:name for tarball -DIRS="contrib/bsdinstaller:base lib/bsdinstaller:lib usr.sbin/bsdinstaller:usr_sbin" +DIRS="contrib/bsdinstaller:base lib/bsdinstaller:lib usr.sbin/bsdinstaller:usr_sbin release/bsdinstaller:release" VENDOR="//depot/vendor/freebsd/src" BSDINS="//depot/projects/soc2005/bsdinstaller/src" ==== //depot/projects/soc2005/bsdinstaller/src/release/Makefile#5 (text+ko) ==== @@ -773,6 +773,14 @@ mkdir ${RD}/bsdinstaller/root/$$dir; \ done ) @echo "/dev/acd0 /usr cd9660 ro 0 0" > ${RD}/bsdinstaller/root/etc/fstab + @cat ${.CURDIR}/bsdinstaller/gettytab >> ${RD}/bsdinstaller/root/etc/gettytab + cp ${.CURDIR}/bsdinstaller/ttys.i386 ${RD}/bsdinstaller/root/etc/ttys + cp ${.CURDIR}/bsdinstaller/bsdinstaller_shell.sh ${RD}/bsdinstaller/root/ + chmod u+x ${RD}/bsdinstaller/root/bsdinstaller_shell.sh + cp ${RD}/bsdinstaller/root/etc/master.passwd ${RD}/bsdinstaller/master.passwd + @echo "bsdinstaller::0:0::0:0:BSD Installer:/root:/bsdinstaller_shell.sh" >> ${RD}/bsdinstaller/master.passwd + pwd_mkdb -p -d ${RD}/bsdinstaller/root/etc \ + ${RD}/bsdinstaller/master.passwd sh -e ${DOFS_SH} ${RD}/bsdinstaller/mfsroot ${RD} ${MNT} \ 10000 ${RD}/bsdinstaller/root ${MFSINODE} auto @gzip -9fnv ${RD}/bsdinstaller/mfsroot