Home | History | Annotate | Line # | Download | only in ramdisk
list revision 1.1
      1  1.1  thorpej #	$NetBSD: list,v 1.1 2002/02/11 17:49:42 thorpej Exp $
      2  1.1  thorpej 
      3  1.1  thorpej # copy the crunched binary, link to it, and kill it
      4  1.1  thorpej COPY	${OBJDIR}/ramdiskbin		ramdiskbin
      5  1.1  thorpej LINK	ramdiskbin			sysinst
      6  1.1  thorpej LINK	ramdiskbin			bin/cat
      7  1.1  thorpej LINK	ramdiskbin			bin/chmod
      8  1.1  thorpej LINK	ramdiskbin			bin/cp
      9  1.1  thorpej LINK	ramdiskbin			bin/dd
     10  1.1  thorpej LINK	ramdiskbin			bin/df
     11  1.1  thorpej LINK	ramdiskbin			bin/ed
     12  1.1  thorpej LINK	ramdiskbin			bin/ln
     13  1.1  thorpej LINK	ramdiskbin			bin/ls
     14  1.1  thorpej LINK	ramdiskbin			bin/mkdir
     15  1.1  thorpej LINK	ramdiskbin			bin/mv
     16  1.1  thorpej LINK	ramdiskbin			bin/pax
     17  1.1  thorpej LINK	ramdiskbin			bin/pwd
     18  1.1  thorpej LINK	ramdiskbin			bin/rm
     19  1.1  thorpej LINK	ramdiskbin			bin/sh
     20  1.1  thorpej LINK	ramdiskbin			bin/stty
     21  1.1  thorpej LINK	ramdiskbin			bin/sync
     22  1.1  thorpej LINK	ramdiskbin			bin/test
     23  1.1  thorpej LINK	ramdiskbin			bin/[
     24  1.1  thorpej LINK	ramdiskbin			sbin/disklabel
     25  1.1  thorpej LINK	ramdiskbin			sbin/fsck
     26  1.1  thorpej LINK	ramdiskbin			sbin/fsck_ffs
     27  1.1  thorpej LINK	ramdiskbin			sbin/halt
     28  1.1  thorpej LINK	ramdiskbin			sbin/ifconfig
     29  1.1  thorpej LINK	ramdiskbin			sbin/init
     30  1.1  thorpej LINK	ramdiskbin			sbin/mknod
     31  1.1  thorpej LINK	ramdiskbin			sbin/mount
     32  1.1  thorpej LINK	ramdiskbin			sbin/mount_cd9660
     33  1.1  thorpej LINK	ramdiskbin			sbin/mount_ffs
     34  1.1  thorpej LINK	ramdiskbin			sbin/mount_kernfs
     35  1.1  thorpej LINK	ramdiskbin			sbin/mount_msdos
     36  1.1  thorpej LINK	ramdiskbin			sbin/mount_nfs
     37  1.1  thorpej LINK	ramdiskbin			sbin/newfs
     38  1.1  thorpej LINK	ramdiskbin			sbin/ping
     39  1.1  thorpej LINK	ramdiskbin			sbin/reboot
     40  1.1  thorpej LINK	ramdiskbin			sbin/restore
     41  1.1  thorpej LINK	ramdiskbin			sbin/route
     42  1.1  thorpej LINK	ramdiskbin			sbin/rrestore
     43  1.1  thorpej LINK	ramdiskbin			sbin/shutdown
     44  1.1  thorpej LINK	ramdiskbin			sbin/slattach
     45  1.1  thorpej LINK	ramdiskbin			sbin/swapctl
     46  1.1  thorpej LINK	ramdiskbin			sbin/umount
     47  1.1  thorpej SYMLINK	/bin/cat			usr/bin/chgrp
     48  1.1  thorpej SYMLINK	/bin/cat			usr/bin/ftp
     49  1.1  thorpej SYMLINK	/bin/cat			usr/bin/gunzip
     50  1.1  thorpej SYMLINK	/bin/cat			usr/bin/gzcat
     51  1.1  thorpej SYMLINK	/bin/cat			usr/bin/gzip
     52  1.1  thorpej SYMLINK	/bin/cat			usr/bin/less
     53  1.1  thorpej SYMLINK	/bin/cat			usr/bin/more
     54  1.1  thorpej SYMLINK	/bin/cat			usr/bin/sed
     55  1.1  thorpej SYMLINK	/bin/cat			usr/bin/strings
     56  1.1  thorpej SYMLINK	/bin/cat			usr/bin/tar
     57  1.1  thorpej SYMLINK	/bin/cat			usr/bin/tip
     58  1.1  thorpej SYMLINK	/bin/cat			usr/bin/tset
     59  1.1  thorpej SYMLINK	/bin/cat			usr/sbin/chown
     60  1.1  thorpej SYMLINK	/bin/cat			usr/sbin/chroot
     61  1.1  thorpej SPECIAL	/bin/rm ramdiskbin
     62  1.1  thorpej 
     63  1.1  thorpej # copy the MAKEDEV script and make some devices
     64  1.1  thorpej COPY	${CURDIR}/../../../../etc/etc.shark/MAKEDEV	dev/MAKEDEV
     65  1.1  thorpej SPECIAL	cd dev; sh MAKEDEV ramdisk
     66  1.1  thorpej SPECIAL	/bin/rm dev/MAKEDEV
     67  1.1  thorpej 
     68  1.1  thorpej # we need the boot blocks /usr/mdec
     69  1.1  thorpej #COPY	${DESTDIR}/usr/mdec/ofwboot	usr/mdec/ofwboot
     70  1.1  thorpej 
     71  1.1  thorpej # various files that we need in /etc for the install
     72  1.1  thorpej COPY	${CURDIR}/../../../../etc/group		etc/group
     73  1.1  thorpej COPY	${CURDIR}/../../../../etc/master.passwd	etc/master.passwd
     74  1.1  thorpej COPY	${CURDIR}/../../../../etc/protocols	etc/protocols
     75  1.1  thorpej COPY	${CURDIR}/../../../../etc/netconfig	etc/netconfig
     76  1.1  thorpej COPY	${CURDIR}/../../../../etc/services	etc/services
     77  1.1  thorpej SPECIAL	pwd_mkdb -p -d ./ etc/master.passwd
     78  1.1  thorpej SPECIAL /bin/rm etc/spwd.db
     79  1.1  thorpej SPECIAL /bin/rm etc/pwd.db
     80  1.1  thorpej 
     81  1.1  thorpej # and the common installation tools
     82  1.1  thorpej COPY	${DESTDIR}/usr/share/misc/termcap	usr/share/misc/termcap
     83  1.1  thorpej 
     84  1.1  thorpej # the disktab explanation file
     85  1.1  thorpej COPY	${CURDIR}/disktab.preinstall		etc/disktab.preinstall
     86  1.1  thorpej 
     87  1.1  thorpej # and the installation tools
     88  1.1  thorpej COPY	${CURDIR}/dot.profile		.profile
     89  1.1  thorpej COPY	${CURDIR}/dot.hdprofile		tmp/.hdprofile
     90  1.1  thorpej 
     91  1.1  thorpej #the lists of obsolete files used by sysinst  
     92  1.1  thorpej SPECIAL sh ${CURDIR}/../../../../distrib/sets/makeobsolete -b -s ${CURDIR}/../../../../distrib/sets -t ./dist
     93