52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
#
|
|
# $NetBSD: miniroot.list,v 1.6 2000/06/19 14:55:20 tsutsui 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/group etc
|
|
COPY ${DESTDIR}/etc/master.passwd etc
|
|
COPY ${DESTDIR}/etc/netconfig 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
|
|
|
|
# some /etc files get special handling (for MFS /tmp yuck)
|
|
COPY ${DESTDIR}/etc/disktab etc/disktab.shadow
|
|
SYMLINK /tmp/disktab.shadow etc/disktab
|
|
COPY ${TOPDIR}/common/mr.fstab tmp/fstab.shadow
|
|
SYMLINK /tmp/fstab.shadow etc/fstab
|
|
SYMLINK /tmp/resolv.conf.shadow etc/resolv.conf
|
|
SYMLINK /tmp/hosts etc/hosts
|
|
|
|
# copy the MAKEDEV script and make some devices
|
|
COPY ${DESTDIR}/dev/MAKEDEV dev
|
|
COPY ${DESTDIR}/dev/MAKEDEV.local dev
|
|
SPECIAL cd dev; sh MAKEDEV std md0 cd0 st0 st1 sd0 sd1 sd2 xd0 xy0 fd0
|
|
|
|
# copy the miniroot installation tools
|
|
COPY ${TOPDIR}/common/mr.profile .profile
|
|
COPY ${TOPDIR}/common/mr.termcap usr/share/misc/termcap
|
|
|
|
COPY ${TOPDIR}/common/install.md install.md
|
|
COPY ${OBJDIR}/install.sub install.sub
|
|
SPECIAL chmod 644 install.md install.sub
|
|
|
|
COPY ${TOPDIR}/../miniroot/install.sh install
|
|
COPY ${TOPDIR}/../miniroot/upgrade.sh upgrade
|
|
SPECIAL chmod 755 install upgrade
|
|
|