73 lines
1.7 KiB
Plaintext
73 lines
1.7 KiB
Plaintext
# $NetBSD: list,v 1.4 2000/06/27 20:47:49 scw Exp $
|
|
|
|
# copy the crunched binary, link to it, and kill it
|
|
|
|
COPY ${OBJDIR}/rd_bin rd_bin
|
|
|
|
# From /usr/src/distrib/utils:
|
|
LINK rd_bin sbin/init
|
|
LINK rd_bin sbin/ifconfig
|
|
LINK rd_bin sbin/edlabel
|
|
LINK rd_bin sbin/route
|
|
|
|
LINK rd_bin bin/dd
|
|
LINK rd_bin bin/ls
|
|
LINK rd_bin bin/rsh
|
|
LINK rd_bin bin/sh
|
|
LINK rd_bin bin/ssh
|
|
LINK rd_bin bin/tftp
|
|
|
|
# From /usr/src/sbin:
|
|
LINK rd_bin sbin/halt
|
|
LINK rd_bin sbin/mknod
|
|
LINK rd_bin sbin/mount
|
|
LINK rd_bin sbin/mount_cd9660
|
|
LINK rd_bin sbin/mount_ffs
|
|
LINK rd_bin sbin/mount_nfs
|
|
LINK rd_bin sbin/mount_ufs
|
|
LINK rd_bin sbin/reboot
|
|
LINK rd_bin sbin/umount
|
|
|
|
# From /usr/src/bin:
|
|
LINK rd_bin bin/cat
|
|
# LINK rd_bin bin/chmod
|
|
# LINK rd_bin bin/cp
|
|
LINK rd_bin bin/echo
|
|
LINK rd_bin bin/ln
|
|
LINK rd_bin bin/mkdir
|
|
LINK rd_bin bin/mt
|
|
LINK rd_bin bin/mv
|
|
LINK rd_bin bin/pwd
|
|
# LINK rd_bin bin/rm
|
|
LINK rd_bin bin/sync
|
|
LINK rd_bin bin/zcat
|
|
|
|
# From /usr/src/sys/arch/mvme68k/stand
|
|
LINK rd_bin sbin/installboot
|
|
|
|
# Primary disk bootstrap
|
|
COPY ${DESTDIR}/usr/mdec/bootxx bootxx
|
|
|
|
SPECIAL rm rd_bin
|
|
|
|
# copy the MAKEDEV script and make some devices
|
|
COPY ${DESTDIR}/dev/MAKEDEV dev/MAKEDEV
|
|
SPECIAL cd dev; sh MAKEDEV std md0 sd0 sd1 sd2 st0
|
|
SPECIAL /bin/rm dev/MAKEDEV
|
|
SPECIAL mkfifo dev/pipe
|
|
SPECIAL ln -s . usr
|
|
|
|
# various files that we need in /etc for the install
|
|
|
|
COPY ${CURDIR}/rd.disktab etc/disktab
|
|
COPY ${CURDIR}/rd.fstab etc/fstab
|
|
COPY ${CURDIR}/rd.protocols etc/protocols
|
|
COPY ${CURDIR}/../../../etc/netconfig etc/netconfig
|
|
COPY ${CURDIR}/rd.services etc/services
|
|
COPY ${CURDIR}/rd.passwd etc/passwd
|
|
|
|
# and the RC file
|
|
COPY ${CURDIR}/rd.sshrc .sshrc
|
|
COPY ${CURDIR}/rd.welcome .welcome
|
|
|