X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/blobdiff_plain/7efea66412b35fb060e164955d7ca9ace6467a11..41eba0ad60b2fc4d329054df9d129f9aa2a69fd6:/etc/Makefile diff --git a/etc/Makefile b/etc/Makefile index b0d69ab685..35b105894c 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,9 +1,6 @@ # @(#)Makefile 5.11 (Berkeley) 5/21/91 -LOCALTIME= US/Pacific -TZDIR=/usr/share/zoneinfo - -NOOBJ= oobj +NOOBJ= noobj # disktab may be wrong -- hcx9 is a tahoe, but gets its own. # -rw-r--r-- @@ -11,7 +8,7 @@ BINOWN= root BINGRP= wheel BIN1= aliases csh.cshrc csh.login csh.logout dm.conf \ ftpusers gettytab group hosts host.conf hosts.equiv hosts.lpd \ - inetd.conf motd myname netstart phones \ + inetd.conf motd myname netstart networks phones \ printcap protocols rc rc.local remote security services shells \ syslog.conf ttys etc.${MACHINE}/disktab rpc @@ -29,11 +26,11 @@ WCS2= fpevent fppwcs fppwcs_dual hdcwcs load_diags start_fpp wcs wcs_dual # Special top level files for FreeBSD COPYRIGHT= COPYRIGHT -FREEBSD= CONTRIB.386BSD CONTRIB.FreeBSD ${COPYRIGHT} +FREEBSD= CONTRIB.386BSD CONTRIB.FreeBSD RELNOTES.FreeBSD ${COPYRIGHT} # # Floppy drive name and files for building FreeBSD Floppies FLOPPY?= fd0 -MOUNT= /mnt +MOUNT?= /mnt # MDEC= usr/mdec/bootfd usr/mdec/fdboot MDEC+= usr/mdec/bootsd usr/mdec/sdboot @@ -44,36 +41,62 @@ KC_FILES= ${COPYRIGHT} KC_FILES+= bin/[ bin/cp bin/echo bin/sh bin/test KC_FILES+= sbin/fsck sbin/halt sbin/init sbin/mount sbin/umount # -INST1_DIRS= dev mnt -INST1_FILES= ${COPYRIGHT} -INST1_FILES+= bin/[ bin/cat bin/df bin/expr bin/ls bin/mkdir -INST1_FILES+= bin/sh bin/sync bin/test -INST1_FILES+= dev/MAKEDEV dev/MAKEDEV.local -INST1_FILES+= etc/disktab etc/group etc/master.passwd etc/passwd -INST1_FILES+= etc/pwd.db etc/spwd.db -INST1_FILES+= sbin/disklabel sbin/halt sbin/init sbin/mount sbin/umount -INST1_FILES+= sbin/newfs sbin/reboot -INST1_FILES+= usr/bin/cpio -INST1_FILES+= ${MDEC} -INST1_FILES+= usr/sbin/bad144 - -INST2_FILES= ${COPYRIGHT} -INST2_FILES+= usr/bin/gunzip usr/bin/gzcat usr/bin/gzip usr/bin/zcat -INST2_CPIO= bin/chmod bin/cp bin/dd bin/mv bin/pwd bin/rm bin/stty -INST2_CPIO+= etc/protocols etc/services -INST2_CPIO+= sbin/ifconfig sbin/fsck sbin/mknod -#INST2_CPIO+= sbin/mount_pcfs sbin/mount_isofs -INST2_CPIO+= sbin/route sbin/shutdown sbin/slattach -INST2_CPIO+= tmp -INST2_CPIO+= usr/bin/awk usr/bin/chgrp usr/bin/ftp -INST2_CPIO+= usr/bin/more usr/bin/tar usr/bin/tip usr/bin/zcat -INST2_CPIO+= usr/bin/elvis usr/bin/ex usr/bin/vi usr/bin/view -#INST2_CPIO+= usr/local/bin/mread usr/local/bin/rz -INST2_CPIO+= usr/sbin/update usr/sbin/chown -INST2_CPIO+= var +FILESYSTEM_DIRS= bin dev etc mnt sbin usr usr/bin usr/mdec usr/sbin +FILESYSTEM_TREES= dev +FILESYSTEM_FILES= ${COPYRIGHT} +FILESYSTEM_FILES+= bin/[ bin/expr bin/ls bin/mkdir bin/rm +FILESYSTEM_FILES+= bin/sh bin/sync bin/test +FILESYSTEM_FILES+= dev/MAKEDEV +FILESYSTEM_FILES+= etc/group +FILESYSTEM_FILES+= etc/master.passwd etc/passwd etc/pwd.db +FILESYSTEM_FILES+= sbin/disklabel sbin/halt sbin/init +FILESYSTEM_FILES+= sbin/mount sbin/mount_pcfs +FILESYSTEM_FILES+= sbin/newfs +FILESYSTEM_FILES+= sbin/umount +FILESYSTEM_FILES+= sbin/fdisk +FILESYSTEM_FILES+= usr/bin/cpio +FILESYSTEM_FILES+= ${MDEC} +FILESYSTEM_FILES+= usr/sbin/bad144 + +CPIO_FILES= ${COPYRIGHT} +CPIO_FILES+= usr/bin/gunzip usr/bin/gzcat usr/bin/gzip usr/bin/zcat +CPIO_CPIO= bin/chmod bin/cat bin/cp bin/dd bin/df bin/mv bin/pwd bin/stty +CPIO_CPIO+= etc/protocols etc/services etc/spwd.db +CPIO_CPIO+= sbin/ifconfig sbin/fsck sbin/mknod sbin/mount_isofs +CPIO_CPIO+= sbin/reboot sbin/route sbin/slattach +CPIO_CPIO+= tmp +CPIO_CPIO+= usr/bin/awk usr/bin/chgrp usr/bin/ftp +CPIO_CPIO+= usr/bin/more usr/bin/tar usr/bin/tip +CPIO_CPIO+= usr/bin/elvis usr/bin/ex usr/bin/vi usr/bin/view +CPIO_CPIO+= usr/sbin/update usr/sbin/chown +CPIO_CPIO_DIRS= var var/tmp var/spool var/spool/lock + +CRYPT_LIB= lib/libcrypt +CRYPT_SRCS= bin/ed bin/rcp +CRYPT_SRCS+= libexec/ftpd libexec/makekey libexec/rexecd libexec/rlogind +CRYPT_SRCS+= libexec/rshd libexec/telnetd libexec/uucpd +CRYPT_SRCS+= usr.bin/bdes usr.bin/lock usr.bin/login usr.bin/passwd +CRYPT_SRCS+= usr.bin/rlogin usr.bin/rsh usr.bin/su usr.bin/telnet +CRYPT_DIRS= bin usr usr/bin usr/lib usr/libexec all clean cleandir depend etc install lint: +crypt: + rm -f ${LIBCRYPT}; + (cd ${.CURDIR}/../${CRYPT_LIB}; \ + ${MAKE} cleandir obj depend all install) + for i in ${CRYPT_SRCS}; do \ + cd ${.CURDIR}/../$$i; \ + ${MAKE} cleandir obj depend all; \ + done + +non-crypt: + rm -f ${LIBCRYPT} + for i in ${CRYPT_SRCS}; do \ + cd ${.CURDIR}/../$$i; \ + ${MAKE} cleandir obj depend all; \ + done + distribution: distrib-dirs install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc install -c -o ${BINOWN} -g ${BINGRP} -m 666 ${BIN2} ${DESTDIR}/etc @@ -81,18 +104,12 @@ distribution: distrib-dirs install -c -o root -g wheel -m 600 crontab ${DESTDIR}/var/cron/tabs/root install -c -o root -g wheel -m 600 /dev/null ${DESTDIR}/var/cron/log install -c -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc - # - # This is broken, it always does /etc. It IGNORES the ${DESTDIR} for - # where to write the spwd.db pwd.db files. - #(cd ${DESTDIR}/etc; pwd_mkdb -p master.passwd) - # - # Work around for above problem. - install -c -o root -g wheel -m 644 pwd.db ${DESTDIR}/etc - install -c -o root -g wheel -m 600 spwd.db ${DESTDIR}/etc - install -c -o root -g wheel -m 644 passwd ${DESTDIR}/etc + pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd install -c -o ${BINOWN} -g ${BINGRP} -m 555 \ MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev +.if defined(CDROMDIST) (cd ${DESTDIR}/dev; sh MAKEDEV all) +.endif (cd root; \ install -c -o root -g wheel -m 644 dot.cshrc \ ${DESTDIR}/root/.cshrc; \ @@ -109,8 +126,6 @@ distribution: distrib-dirs ${DESTDIR}/etc/mtree cd namedb; install -c -o ${BINOWN} -g ${BINGRP} -m 644 ${NAMEDB} \ ${DESTDIR}/etc/namedb - /bin/rm -f ${DESTDIR}/etc/localtime - ln -s ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime install -c -o ${BINOWN} -g operator -m 664 /dev/null \ ${DESTDIR}/etc/dumpdates install -c -o nobody -g ${BINGRP} -m 664 /dev/null \ @@ -129,92 +144,130 @@ distribution: distrib-dirs ${DESTDIR}/var/run/utmp (cd etc.${MACHINE}; install -c -o ${BINOWN} -g ${BINGRP} -m 444 \ fstab.* ${DESTDIR}/etc) -.if ${MACHINE} == "tahoe" - (cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS1} \ - ${DESTDIR}/) +.if defined(NOCRYPT) + ${MAKE} non-crypt + (cd ..; NOCRYPT=nocrypt; export NOCRYPT; ${MAKE} install) +.else + ${MAKE} crypt + (cd ..; ${MAKE} install) .endif -.if ${MACHINE} == "vax" - (cd etc.vax; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${PCS} \ - ${DESTDIR}/) -.endif -.if ${MACHINE} == "i386" - (cd ../sys/i386/boot; \ - make depend all install cleandir) - (cd /; \ - ls ${MDEC} | cpio -pdalmuv ${DESTDIR}/) (cd ../usr.sbin/sendmail/src; \ - make install; \ + ${MAKE} install; \ cd ../cf/cf; \ - make tcpproto.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 ..; 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) + (cd ..; ${MAKE} mdec; ) +.if ${MACHINE} == "tahoe" + (cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS1} \ + ${DESTDIR}/) +.endif +.if ${MACHINE} == "vax" + (cd etc.vax; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${PCS} \ + ${DESTDIR}/) .endif hcx9-distribution: (cd etc.tahoe; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${WCS2} \ ${DESTDIR}/) -kc-ah-floppy: +kcopy-kernels: ../sys/i386/conf/GENERICAH ../sys/i386/conf/GENERICBT + (cd ../sys/compile; rm -rf GENERICAH GENERICBT) + (cd ../sys/i386/conf; config GENERICAH; config GENERICBT) + (cd ../sys/compile/GENERICAH; ${MAKE} depend; ${MAKE} all; \ + install -c -o root -g wheel -m 755 386bsd \ + ${DESTDIR}/386bsd.GENERICAH) + (cd ../sys/compile/GENERICBT; ${MAKE} depend; ${MAKE} all; \ + install -c -o root -g wheel -m 755 386bsd \ + ${DESTDIR}/386bsd.GENERICBT) + +kcopy-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} + chown root.wheel ${MOUNT}/. + chmod 755 ${MOUNT}/. (cd ${DESTDIR}/; \ - ls -d ${KC_DIRS} | cpio -pdalmuv ${MOUNT}) + ls -d ${KC_DIRS} | cpio -pdamuv ${MOUNT}) (cd ${MOUNT}/dev; \ sh ${DESTDIR}/dev/MAKEDEV std; \ rm -rf fd; \ - sh ${DESTDIR}/dev/MAKEDEV fd0 wd0 sd0) + sh ${DESTDIR}/dev/MAKEDEV fd0 wd0 sd0 sd1) (cd ${DESTDIR}/; \ - ls ${KC_FILES} | cpio -pdalmuv ${MOUNT}) + ls ${KC_FILES} | cpio -pdamuv ${MOUNT}) install -c -o root -g wheel -m 755 etc.i386/kc.profile \ ${MOUNT}/.profile - (cd ../sys/compile/GENERICISA; \ + +kcopy-ah-floppy: + ${MAKE} kcopy-floppy + (cd ../sys/compile/GENERICAH; \ install -c -o root -g wheel -m 755 386bsd ${MOUNT}/) df -ik ${MOUNT} umount /dev/${FLOPPY}a fsck /dev/r${FLOPPY}a + dd if=/dev/r${FLOPPY}a of=${RELEASEDIR}/floppies/kcopy-ah-floppy \ + bs=15b count=160 + gzip --no-name -9 -c ${RELEASEDIR}/floppies/kcopy-ah-floppy \ + >${RELEASEDIR}/floppies/kcopy-ah-floppy.gz -inst1-floppy: +kcopy-bt-floppy: + ${MAKE} kcopy-floppy + (cd ../sys/compile/GENERICBT; \ + install -c -o root -g wheel -m 755 386bsd ${MOUNT}/) + df -ik ${MOUNT} + umount /dev/${FLOPPY}a + fsck /dev/r${FLOPPY}a + dd if=/dev/r${FLOPPY}a of=${RELEASEDIR}/floppies/kcopy-bt-floppy \ + bs=15b count=160 + gzip --no-name -9 -c ${RELEASEDIR}/floppies/kcopy-bt-floppy \ + >${RELEASEDIR}/floppies/kcopy-bt-floppy.gz + +filesystem-floppy: disklabel -w -r ${FLOPPY} floppy5 /usr/mdec/fdboot /usr/mdec/bootfd newfs -b 4096 -c 80 -f 512 -i 10240 -m 0 -o space r${FLOPPY}a floppy5 mount /dev/${FLOPPY}a ${MOUNT} + chown root.wheel ${MOUNT}/. + chmod 755 ${MOUNT}/. (cd ${DESTDIR}/; \ - ls -d ${INST1_DIRS} | cpio -pdalmuv ${MOUNT}) + ls -d ${FILESYSTEM_DIRS} | cpio -pdamuv ${MOUNT}) (cd ${MOUNT}/dev; \ sh ${DESTDIR}/dev/MAKEDEV std; \ rm -rf fd; \ - sh ${DESTDIR}/dev/MAKEDEV fd0 wd0 sd0) + sh ${DESTDIR}/dev/MAKEDEV fd0 fd1 wd0 sd0 sd1; \ + rm -f rfd1[b-z] fd1[b-z]) (cd ${DESTDIR}/; \ - ls ${INST1_FILES} | cpio -pdalmuv ${MOUNT}) + ls ${FILESYSTEM_FILES} | cpio -pdamuv ${MOUNT}) install -c -o root -g wheel -m 755 etc.i386/inst1.profile \ ${MOUNT}/.profile install -c -o root -g wheel -m 755 etc.i386/inst1.install \ ${MOUNT}/install (cd ${MOUNT}/; \ - ls ${INST1_FILES} >/tmp/filelist; \ - find ${INST1_DIRS} | sort >>/tmp/filelist; \ - sort -u /tmp/filelist >filelist) + ls ${FILESYSTEM_FILES} >/tmp/filelist; \ + ls -d ${FILESYSTEM_DIRS} >>/tmp/filelist; \ + find ${FILESYSTEM_TREES} >>/tmp/filelist; \ + sort -u /tmp/filelist >filelist; \ + rm /tmp/filelist) df -ik ${MOUNT} umount /dev/${FLOPPY}a fsck /dev/r${FLOPPY}a + dd if=/dev/r${FLOPPY}a of=${RELEASEDIR}/floppies/filesystem-floppy \ + bs=15b count=160 + gzip --no-name -9 -c ${RELEASEDIR}/floppies/filesystem-floppy \ + >${RELEASEDIR}/floppies/filesystem-floppy.gz -inst2-floppy: +cpio-floppy: disklabel -w -r ${FLOPPY} floppy5 /usr/mdec/fdboot /usr/mdec/bootfd newfs -b 4096 -c 80 -f 512 -i 65536 -m 0 -o space r${FLOPPY}a floppy5 mount /dev/${FLOPPY}a ${MOUNT} + chown root.wheel ${MOUNT}/. + chmod 755 ${MOUNT}/. (cd ${DESTDIR}/; \ - ls ${INST2_FILES} | cpio -pdalmuv ${MOUNT}) + ls ${CPIO_FILES} | cpio -pdamuv ${MOUNT}) (cd ${DESTDIR}/; \ - find ${INST2_CPIO} | cpio -odalmuv | gzip -9 >${MOUNT}/inst2.cpio.gz) + (find ${CPIO_CPIO}; ls -d ${CPIO_CPIO_DIRS}) | \ + cpio -oav | gzip -9 >${MOUNT}/inst2.cpio.gz) install -c -o root -g wheel -m 755 etc.i386/inst2.profile \ ${MOUNT}/.profile install -c -o root -g wheel -m 755 etc.i386/inst2.install \ @@ -222,12 +275,88 @@ inst2-floppy: df -ik ${MOUNT} umount /dev/${FLOPPY}a fsck /dev/r${FLOPPY}a + dd if=/dev/r${FLOPPY}a of=${RELEASEDIR}/floppies/cpio-floppy \ + bs=15b count=160 + gzip --no-name -9 -c ${RELEASEDIR}/floppies/cpio-floppy \ + >${RELEASEDIR}/floppies/cpio-floppy.gz + +bin-tarball: + (cd ${DESTDIR}; \ + tar cf - . | gzip --no-name -9 -c | \ + split -b 240640 - \ + ${RELEASEDIR}/tarballs/bin_tgz.) + +src-tarball: + (cd ${DESTDIR}; \ + tar --exclude usr/src/${CRYPT_LIB} -cf - usr/src | gzip --no-name -9 -c | \ + split -b 240640 - \ + ${RELEASEDIR}/tarballs/src_tgz.) + +ssrc-tarball: + (cd ${DESTDIR}; \ + tar -cf - usr/src/${CRYPT_LIB} | gzip --no-name -9 -c | \ + split -b 240640 - \ + ${RELEASEDIR}/tarballs/ssrc_tgz.) + +des-tarball: + rm -rf ${RELEASEDIR}/tmpdes + mkdir ${RELEASEDIR}/tmpdes + for i in ${CRYPT_DIRS}; do \ + cd ${RELEASEDIR}/tmpdes; \ + mkdir $$i; \ + chown ${BINOWN}.${GRPOWN} $$i; \ + chmod 755 $$i; \ + done + # This is ugly, it force installs a /usr/lib/libcrypt.a so + # that the other makes will be built with des. + # + (cd ${.CURDIR}/../${CRYPT_LIB}; \ + unset NOCRYPT; \ + DESTDIR=; export DESTDIR; \ + ${MAKE} cleandir obj depend all install; \ + NOMAN=noman; export NOMAN; \ + DESTDIR=${RELEASEDIR}/tmpdes; export DESTDIR; \ + ${MAKE} cleandir obj depend all install) + for i in ${CRYPT_SRCS}; do \ + unset NOCRYPT; \ + DESTDIR=${RELEASEDIR}/tmpdes; export DESTDIR; \ + NOMAN=noman; export NOMAN; \ + cd ${.CURDIR}/../$$i; \ + ${MAKE} cleandir obj depend all install; \ + done + (cd ${RELEASEDIR}/tmpdes; \ + tar cf - . | gzip --no-name -9 -c | \ + split -b 240640 - \ + ${RELEASEDIR}/tarballs/des_tgz.) + rm -rf ${RELEASEDIR}/tmpdes distrib-dirs: mtree -u -f mtree/BSD.root.dist -p ${DESTDIR}/ mtree -u -f mtree/BSD.var.dist -p ${DESTDIR}/var mtree -u -f mtree/BSD.usr.dist -p ${DESTDIR}/usr - (cd ${DESTDIR}; rm -f ${DESTDIR}/sys; \ - ln -s usr/src/sys sys ) +.if defined(CDROMDIST) + mtree -u -f mtree/BSD.local.dist -p ${DESTDIR}/usr/local +.endif + cd ${DESTDIR}/; rm -f ${DESTDIR}/sys; ln -s usr/src/sys sys + +floppies: kcopy-ah-floppy kcopy-bt-floppy filesystem-floppy \ + cpio-floppy + +release: release-dirs distribution kcopy-kernels floppies \ + bin-tarball des-tarball + +release-dirs: + rm -rf ${RELEASEDIR}/filesystem + mkdir ${RELEASEDIR}/filesystem + chown root.wheel ${RELEASEDIR}/filesystem + chmod 755 ${RELEASEDIR}/filesystem + rm -rf ${RELEASEDIR}/tarballs + mkdir ${RELEASEDIR}/tarballs + chown root.wheel ${RELEASEDIR}/tarballs + chmod 755 ${RELEASEDIR}/tarballs + rm -rf ${RELEASEDIR}/floppies + mkdir ${RELEASEDIR}/floppies + chown root.wheel ${RELEASEDIR}/floppies + chmod 755 ${RELEASEDIR}/floppies .include