blob: 233e4f3e2305bdcad69ce8f7a3b2ed3c757a9b9f (
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
|
#
# $NetBSD: list,v 1.2 1995/08/13 13:21:07 briggs Exp $
#
# copy the crunched binary, link to it, and kill it
COPY ${OBJDIR}/raminst raminst
LINK raminst bin/cat
LINK raminst bin/cp
LINK raminst bin/pwd
LINK raminst bin/sh
LINK bin/sh bin/-sh
LINK raminst bin/stty
LINK raminst bin/sync
LINK raminst bin/test
LINK raminst bin/[
LINK raminst sbin/init
LINK raminst sbin/mount
LINK raminst sbin/mount_ffs
LINK raminst sbin/reboot
LINK raminst sbin/umount
SPECIAL /bin/rm raminst
# copy the MAKEDEV script and make some devices
COPY ${DESTDIR}/dev/MAKEDEV dev/MAKEDEV
SPECIAL cd dev; sh MAKEDEV raminst
SPECIAL /bin/rm dev/MAKEDEV
# various files that we need in /etc for the install
# and the common installation tools
|