Added support to build i386-kc_floppy:, kernel copy floppy for FreeBSD.

Added support to build and install GENERICISA kernel in the binary
distribution.
This commit is contained in:
Rodney W. Grimes 1993-08-10 14:22:34 +00:00
parent de34766adc
commit 42cee3fad0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=277

View File

@ -29,6 +29,13 @@ WCS2= fpevent fppwcs fppwcs_dual hdcwcs load_diags start_fpp wcs wcs_dual
# Special top level files for FreeBSD
FREEBSD= CONTRIB.386BSD CONTRIB.FreeBSD COPYRIGHT
#
# Floppy drive name and files for building FreeBSD Floppies
FLOPPY= fd0
MOUNT= /mnt
KC_DIR= bin dev mnt sbin
KC_BIN= [ cp echo sh test
KC_SBIN= fsck halt init mount umount
all clean cleandir depend etc install lint:
@ -93,14 +100,24 @@ distribution: distrib-dirs
${DESTDIR}/)
.endif
.if ${MACHINE} == "i386"
(cd ../sys/i386/boot; make depend all install cleandir; \
cd /usr/mdec; find . | cpio -pdalmuv ${DESTDIR}/usr/mdec)
(cd ../usr.sbin/sendmail/src; make install; \
cd ../cf/cf; make tcpproto.cf; \
(cd ../sys/i386/boot; \
make depend all install cleandir)
(cd /usr/mdec; \
find . | cpio -pdalmuv ${DESTDIR}/usr/mdec)
(cd ../usr.sbin/sendmail/src; \
make install; \
cd ../cf/cf; \
make tcpproto.cf; \
install -o root -g wheel -m 644 tcpproto.cf \
${DESTDIR}/etc/sendmail.cf)
(cd ../; install -c -o root -g wheel -m 444 ${FREEBSD} ${DESTDIR}/)
(cd ../; \
install -c -o root -g wheel -m 444 ${FREEBSD} ${DESTDIR}/)
(cd ..; make install)
(cd ../sys/compile; rm -rf GENERICISA)
(cd ../sys/i386/conf; config GENERICISA)
(cd ../sys/compile/GENERICISA; make depend; make all; \
install -c -o root -g wheel -m 755 386bsd \
${DESTDIR}/386bsd.GENERICISA)
(cd ../include; make copies)
.endif
@ -108,6 +125,30 @@ hcx9-distribution:
(cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS2} \
${DESTDIR}/)
i386-kc_floppy:
disklabel -w -r ${FLOPPY} floppy5 /usr/mdec/fdboot /usr/mdec/bootfd
newfs -b 4096 -c 80 -f 512 -i 16384 -m 0 -o space r${FLOPPY}a floppy5
mount /dev/${FLOPPY}a ${MOUNT}
(cd ${MOUNT}; \
mkdir ${KC_DIR}; \
chown root.wheel ${KC_DIR}; \
chmod 755 ${KC_DIR})
(cd ${DESTDIR}/bin; \
install -c -o root -g wheel -m 555 ${KC_BIN} ${MOUNT}/bin)
(cd ${DESTDIR}/sbin; \
install -c -o root -g wheel -m 555 ${KC_SBIN} ${MOUNT}/sbin)
(cd ${MOUNT}/dev; \
sh ${DESTDIR}/dev/MAKEDEV std; \
rm -rf fd; \
sh ${DESTDIR}/dev/MAKEDEV fd0 wd0 sd0)
install -c -o root -g wheel -m 755 etc.i386/kc.profile \
${MOUNT}/.profile
(cd ../sys/compile/GENERICISA; \
install -c -o root -g wheel -m 755 386bsd ${MOUNT}/)
df -ik ${MOUNT}
umount /dev/${FLOPPY}a
fsck /dev/r${FLOPPY}a
distrib-dirs:
mtree -u -f mtree/BSD.root.dist -p ${DESTDIR}/
mtree -u -f mtree/BSD.var.dist -p ${DESTDIR}/var