freebsd-dev/release/scripts/doFS.sh

143 lines
2.7 KiB
Bash
Raw Normal View History

2001-01-31 22:58:39 +00:00
#!/bin/sh
#
# $FreeBSD$
#
2001-01-31 22:58:39 +00:00
set -e
export BLOCKSIZE=512
if [ "$1" = "-s" ]; then
do_size="yes"; shift
else
do_size=""
fi
FSIMG=$1; shift
RD=$1 ; shift
MNT=$1 ; shift
FSSIZE=$1 ; shift
FSPROTO=$1 ; shift
FSINODE=$1 ; shift
FSLABEL=$1 ; shift
BOOT1="-b ${RD}/trees/base/boot/boot1"
if [ -f "${RD}/trees/base/boot/boot2" ]; then
BOOT2="-s ${RD}/trees/base/boot/boot2"
else
BOOT2=""
fi
Milestone #1 in cross-arch make releases. Do not install games and profiled libraries to the ${CHROOTDIR} with the initial installworld. Eliminate the need in the second installworld. For that, make sure _everything_ is built in the "world" environment, using the right tool chain. Added SUBDIR_OVERRIDE helper stuff to Makefile.inc1. Split the buildworld process into stages, and skip some stages when SUBDIR_OVERRIDE is set (used to build crypto, krb4, and krb5 dists). Added NO_MAKEDB_RUN knob to Makefile.inc1 to avoid running makewhatis(1) at the end of installworld (used when making crypto, krb4, and krb5 dists). In release/scripts/doFS.sh, ensure that the correct boot blocks are used. Moved the creation of the "crypto" dist from release.5 to release.2. In release.3 and doMFSKERN, build kernels in the "world" environment. KERNELS now means "additional" kernels, GENERIC is always built. Ensure we build crunched binaries in the "world" environment. Obfuscate release/Makefile some more (WMAKEENV) to achieve this. Inline createBOOTMFS target. Use already built GENERIC kernel modules to augment mfsfd's /stand/modules. GC doMODULES as such. Assorted fixes: Get rid of the "afterdistribute" target by moving the single use of it from sys/Makefile to etc/Makefile's "distribute". Makefile.inc1: apparently "etc" no longer needs to be last for "distribute" to succeed. gnu/usr.bin/perl/library/Makefile.inc: do not override the "install" and "distribute" targets, do it the "canonical" way. release/scripts/{man,cat}pages-make.sh: make sure Perl manpages and catpages appear in the right dists. Note that because Perl does not respect the MANBUILDCAT (and NOMAN), this results in a loss of /usr/share/perl/man/cat* empty directories. This will be fixed soon. Turn MAKE_KERBEROS4 into a plain boolean variable (if it is set it means "make KerberosIV"), as documented in the make.conf(5) manpage. Most of the userland makefiles did not test it for "YES" anyway. XXX Should specialized kerberized libpam versions be included into the krb4 and krb5 dists? (libpam.a would be incorrect anyway if both krb4 and krb5 dists were choosen.) Make sure "games" dist is made before "catpages", otherwise games catpages settle in the wrong dist. Fast build machine provided by: Igor Kucherenko <kivvy@sunbay.com>
2002-04-26 17:55:27 +00:00
deadlock=20
2001-11-15 07:27:25 +00:00
dofs_vn () {
if [ "x$VNDEVICE" = "x" ] ; then
VNDEVICE=vn0
fi
u=`expr $VNDEVICE : 'vn\([0-9]*\)' || true`
VNDEVICE=vnn$u
rm -f /dev/*vnn*
mknod /dev/rvnn${u} c 43 `expr 65538 + $u '*' 8`
mknod /dev/rvnn${u}c c 43 `expr 2 + $u '*' 8`
mknod /dev/vnn${u} b 15 `expr 65538 + $u '*' 8`
mknod /dev/vnn${u}c b 15 `expr 2 + $u '*' 8`
while true
do
rm -f ${FSIMG}
umount /dev/${VNDEVICE} 2>/dev/null || true
umount ${MNT} 2>/dev/null || true
vnconfig -u /dev/r${VNDEVICE} 2>/dev/null || true
dd of=${FSIMG} if=/dev/zero count=${FSSIZE} bs=1k 2>/dev/null
vnconfig -s labels -c /dev/r${VNDEVICE} ${FSIMG}
disklabel -w -B ${BOOT1} ${BOOT2} ${VNDEVICE} ${FSLABEL}
newfs -i ${FSINODE} -o space -m 1 /dev/r${VNDEVICE}c
2001-11-15 07:27:25 +00:00
mount /dev/${VNDEVICE}c ${MNT}
if [ -d ${FSPROTO} ]; then
(set -e && cd ${FSPROTO} && find . -print | cpio -dump ${MNT})
else
cp -p ${FSPROTO} ${MNT}
fi
df -ki ${MNT}
set `df -ki ${MNT} | tail -1`
umount ${MNT}
vnconfig -u /dev/r${VNDEVICE} 2>/dev/null || true
echo "*** Filesystem is ${FSSIZE} K, $4 left"
echo "*** ${FSINODE} bytes/inode, $7 left"
if [ "${do_size}" ]; then
echo ${FSSIZE} > ${FSIMG}.size
fi
break;
done
rm -f /dev/*vnn*
}
dofs_md () {
while true
do
rm -f ${FSIMG}
2001-01-31 22:58:39 +00:00
if [ "x${MDDEVICE}" != "x" ] ; then
umount /dev/${MDDEVICE} 2>/dev/null || true
umount ${MNT} 2>/dev/null || true
mdconfig -d -u ${MDDEVICE} 2>/dev/null || true
fi
dd of=${FSIMG} if=/dev/zero count=${FSSIZE} bs=1k 2>/dev/null
2001-01-31 22:58:39 +00:00
MDDEVICE=`mdconfig -a -t vnode -f ${FSIMG}`
if [ ! -c /dev/${MDDEVICE} ] ; then
if [ -f /dev/MAKEDEV ] ; then
( cd /dev && sh MAKEDEV ${MDDEVICE} )
else
echo "No /dev/$MDDEVICE and no MAKEDEV" 1>&2
exit 1
fi
fi
disklabel -w -B ${BOOT1} ${BOOT2} ${MDDEVICE} ${FSLABEL}
newfs -i ${FSINODE} -o space -m 0 /dev/${MDDEVICE}c
2001-01-31 22:58:39 +00:00
mount /dev/${MDDEVICE}c ${MNT}
if [ -d ${FSPROTO} ]; then
(set -e && cd ${FSPROTO} && find . -print | cpio -dump ${MNT})
else
cp -p ${FSPROTO} ${MNT}
fi
df -ki ${MNT}
set `df -ki ${MNT} | tail -1`
umount ${MNT}
2001-01-31 22:58:39 +00:00
mdconfig -d -u ${MDDEVICE} 2>/dev/null || true
echo "*** Filesystem is ${FSSIZE} K, $4 left"
echo "*** ${FSINODE} bytes/inode, $7 left"
if [ "${do_size}" ]; then
echo ${FSSIZE} > ${FSIMG}.size
fi
break;
2001-11-15 07:27:25 +00:00
done
}
case `uname -r` in
[1-4].*)
dofs_vn
2001-11-15 07:27:25 +00:00
;;
*)
dofs_md
2001-11-15 07:27:25 +00:00
;;
esac