41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
# $NetBSD: miniroot.list,v 1.2 1995/11/21 21:19:05 gwr Exp $
|
|
|
|
# These are scripts:
|
|
COPY ${DESTDIR}/usr/bin/false bin
|
|
COPY ${DESTDIR}/usr/bin/true bin
|
|
|
|
# From usr/mdec:
|
|
COPY ${DESTDIR}/usr/mdec/bootxx usr/mdec
|
|
COPY ${DESTDIR}/usr/mdec/installboot usr/mdec
|
|
COPY ${DESTDIR}/usr/mdec/netboot usr/mdec
|
|
COPY ${DESTDIR}/usr/mdec/tapeboot usr/mdec
|
|
COPY ${DESTDIR}/usr/mdec/ufsboot usr/mdec
|
|
LINK usr/mdec/ufsboot ufsboot
|
|
|
|
# various files that we need in /etc for the install
|
|
COPY ${DESTDIR}/etc/disktab etc
|
|
COPY ${DESTDIR}/etc/group etc
|
|
COPY ${DESTDIR}/etc/hosts etc
|
|
COPY ${DESTDIR}/etc/master.passwd etc
|
|
COPY ${DESTDIR}/etc/passwd etc
|
|
COPY ${DESTDIR}/etc/protocols etc
|
|
COPY ${DESTDIR}/etc/pwd.db etc
|
|
COPY ${DESTDIR}/etc/services etc
|
|
COPY ${DESTDIR}/etc/spwd.db etc
|
|
|
|
# copy the MAKEDEV script and make some devices
|
|
COPY ${DESTDIR}/dev/MAKEDEV dev/MAKEDEV
|
|
SPECIAL cd dev; sh MAKEDEV std rd0 sd0 sd2 st0
|
|
SPECIAL /bin/rm dev/MAKEDEV
|
|
SPECIAL mkfifo dev/pipe
|
|
|
|
# and the miniroot installation tools
|
|
COPY ${TOPDIR}/common/mr.profile .profile
|
|
COPY ${TOPDIR}/common/mr.remount .remount
|
|
COPY ${TOPDIR}/common/mr.termcap usr/share/misc/termcap
|
|
|
|
# and the "install" command
|
|
COPY ${TOPDIR}/common/install.sh install
|
|
SPECIAL chmod 755 install
|
|
|