blob: 008b928a31fd35d499c002ae86664fe0e79cb019 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# $NetBSD: miniroot.list,v 1.1.1.1 1995/10/08 23:07:48 gwr Exp $
# 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/ufsboot usr/mdec
LINK usr/mdec/ufsboot ufsboot
# XXX - How to do installboot?
# various files that we need in /etc for the install
COPY ${DESTDIR}/etc/disktab etc
COPY ${DESTDIR}/etc/group 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 common installation tools
COPY ${TOPDIR}/common/dot.cmnutils .cmnutils
# the disktab explanation file (XXX need this?)
# COPY ${TOPDIR}/common/mr.disktab etc/disktab.preinstall
# and the miniroot installation tools
COPY ${TOPDIR}/common/mr.instutils .instutils
COPY ${TOPDIR}/common/mr.profile .profile
COPY ${TOPDIR}/common/mr.termcap usr/share/misc/termcap
# and the "install" command
COPY ${TOPDIR}/common/install.sh install
SPECIAL chmod 755 install
|