diff options
author | phk <phk@FreeBSD.org> | 1994-10-16 20:38:27 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1994-10-16 20:38:27 +0000 |
commit | f20bc18ebc64c37a8943203f6a2e940393f9fe64 (patch) | |
tree | e97b9940a8b52464fcd08e2d20cb52434403e8c7 /etc/Makefile | |
parent | 4e81f22a8470e32e865de9db1b0887f50b975969 (diff) | |
download | FreeBSD-src-f20bc18ebc64c37a8943203f6a2e940393f9fe64.zip FreeBSD-src-f20bc18ebc64c37a8943203f6a2e940393f9fe64.tar.gz |
Some changes to the old floppies to handle the new /etc/init's way of doing
things.
Diffstat (limited to 'etc/Makefile')
-rw-r--r-- | etc/Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/etc/Makefile b/etc/Makefile index e4db09b..e2de328 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.11 (Berkeley) 5/21/91 -# $Id: Makefile,v 1.86 1994/09/28 13:32:59 ache Exp $ +# $Id: Makefile,v 1.87 1994/10/15 07:55:36 phk Exp $ # disktab may be wrong -- hcx9 is a tahoe, but gets its own. # -rw-r--r-- @@ -56,7 +56,7 @@ MDEC= usr/mdec/bootfd usr/mdec/fdboot MDEC+= usr/mdec/bootsd usr/mdec/sdboot MDEC+= usr/mdec/bootwd usr/mdec/wdboot # -KC_DIRS= bin dev mnt sbin +KC_DIRS= bin dev mnt sbin etc KC_FILES= ${COPYRIGHT} KC_LINKS= bin/[ bin/cp bin/echo bin/sh bin/test KC_LINKS+= sbin/fsck sbin/halt sbin/init @@ -270,7 +270,7 @@ kcopy-floppy: (cd ${DESTDIR}/; \ ls ${KC_FILES} | cpio -pdamuv ${MOUNT}) install -c -o ${BINOWN} -g ${BINGRP} -m 755 \ - ${.CURDIR}/etc.i386/kc.profile ${MOUNT}/.profile + ${.CURDIR}/etc.i386/kc.profile ${MOUNT}/etc/rc install -c -o ${BINOWN} -g ${BINGRP} -m 755 \ kcopy ${MOUNT}/bin/kcopy (cd ${MOUNT}/; \ @@ -314,10 +314,11 @@ cdins-floppy: mkdir ${MOUNT}/cdrom chown ${BINOWN}.${BINGRP} ${MOUNT}/cdrom chmod 755 ${MOUNT}/cdrom - install -c -o ${BINOWN} -g ${BINGRP} -m 755 \ - ${.CURDIR}/etc.i386/cdinst1.profile ${MOUNT}/.profile + #install -c -o ${BINOWN} -g ${BINGRP} -m 755 \ + # ${.CURDIR}/etc.i386/cdinst1.profile ${MOUNT}/.profile install -c -o ${BINOWN} -g ${BINGRP} -m 755 \ ${.CURDIR}/etc.i386/cdinst1.install ${MOUNT}/install + ln ${MOUNT}/install ${MOUNT}/etc/rc cdins_ah.flp: (cd ${.CURDIR}; ${MAKE} kcopy-floppy) @@ -362,10 +363,11 @@ filesyst.flp: (find ${FILESYSTEM_CPIO}; ls -d ${FILESYSTEM_CPIO_DIRS}) | \ cpio -H newc --block-size=16 -oav | \ gzip -9 >${MOUNT}/inst1.cpio.gz) - install -c -o ${BINOWN} -g ${BINGRP} -m 755 \ - ${.CURDIR}/etc.i386/inst1.profile ${MOUNT}/.profile + #install -c -o ${BINOWN} -g ${BINGRP} -m 755 \ + # ${.CURDIR}/etc.i386/inst1.profile ${MOUNT}/.profile install -c -o ${BINOWN} -g ${BINGRP} -m 755 \ ${.CURDIR}/etc.i386/inst1.install ${MOUNT}/install + ln ${MOUNT}/install ${MOUNT}/etc/rc install -c -o ${BINOWN} -g ${BINGRP} -m 755 \ filesystem ${MOUNT}/bin/filesystem (cd ${MOUNT}/; \ |