5ebb61c202
o Wave goodbye to INSTALL_SMALL-based boot image (it was originally built for 5.25" media, but isn't anymore). o Make a separate ramdisk image for the INSTALL_TINY image, using the old script-based installer (not fixed/checked at the moment). However, at least tweak the profile scripts to start it instead of sysinst. Also remove ping6 and rtsol from ramdisk compared to original; the INSTALL_TINY image doesn't have INET6. o Add dump/restore back into both ramdisk images. o Add scsictl and chio to the normal ramdisk image (INSTALL-based fdset) o With dump/restore reinstated, remove the rescue-* and ramdisk-rescue directories. So, we're now back to having the recovery tools on the same image as the boot media images.
91 lines
2.3 KiB
Makefile
91 lines
2.3 KiB
Makefile
# $NetBSD: Makefile,v 1.1 2000/06/12 18:51:17 he Exp $
|
|
|
|
TOP= ${.CURDIR}/..
|
|
WARNS=1
|
|
|
|
.include "${TOP}/Makefile.inc"
|
|
IMAGE= ramdisk-tiny.fs
|
|
|
|
AUXTARGETS= install.sh upgrade.sh start.sh
|
|
AUXDEPENDS= dot.profile dot.hdprofile disktab.preinstall \
|
|
termcap.mini
|
|
AUXCLEAN= ${AUXTARGETS}
|
|
|
|
CBIN= ramdiskbin
|
|
|
|
MOUNT_POINT?= /mnt
|
|
# DEV/RDEV file system device, CDEV/RDEV vnconfig device
|
|
VND?= vnd0
|
|
VND_DEV= /dev/${VND}a
|
|
VND_RDEV= /dev/r${VND}a
|
|
VND_CDEV= /dev/${VND}d
|
|
VND_CRDEV= /dev/r${VND}d
|
|
IMAGE?= xxx.fs
|
|
MDEC= ${DESTDIR}/usr/mdec
|
|
|
|
LISTS= list
|
|
CRUNCHCONF= ${CBIN}.conf
|
|
MTREE= mtree.conf
|
|
|
|
RAMDISKSPC= 128
|
|
RAMDISKCYLS= 24
|
|
RAMDISKSIZE!= expr ${RAMDISKSPC} \* ${RAMDISKCYLS}
|
|
|
|
install.sh: install.tmpl
|
|
sed "s/@@VERSION@@/${VER}/" < ${.ALLSRC} > ${.TARGET}
|
|
|
|
upgrade.sh: upgrade.tmpl
|
|
sed "s/@@VERSION@@/${VER}/" < ${.ALLSRC} > ${.TARGET}
|
|
|
|
start.sh: start.tmpl
|
|
sed "s/@@VERSION@@/${VER}/" < ${.ALLSRC} > ${.TARGET}
|
|
|
|
realall: ${IMAGE}
|
|
|
|
${IMAGE}: ${AUXTARGETS} ${CBIN} ${AUXDEPENDS} ${MTREE} ${LISTS}
|
|
dd if=/dev/zero of=${IMAGE} count=${RAMDISKSIZE}
|
|
vnconfig -v -c ${VND_CDEV} ${IMAGE} 512/${RAMDISKSPC}/1/${RAMDISKCYLS}
|
|
-disklabel ${VND_CDEV} >tmplabel
|
|
disklabel -r -R ${VND_CDEV} tmplabel
|
|
newfs -B le -m 0 -o space -i 3950 -c 80 ${VND_RDEV}
|
|
mount ${VND_DEV} ${MOUNT_POINT}
|
|
mtree -def ${.CURDIR}/${MTREE} -p ${MOUNT_POINT}/ -U
|
|
TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \
|
|
TARGDIR=${MOUNT_POINT} sh ${TOP}/runlist.sh ${.CURDIR}/${LISTS}
|
|
@echo ""
|
|
@df -i ${MOUNT_POINT}
|
|
@echo ""
|
|
umount ${MOUNT_POINT}
|
|
vnconfig -u ${VND_CDEV}
|
|
|
|
unconfig:
|
|
-umount -f ${MOUNT_POINT}
|
|
-vnconfig -u ${VND_DEV}
|
|
-/bin/rm -f ${IMAGE}
|
|
|
|
${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CRUNCHCONF}
|
|
crunchgen -D ${TOP}/../../.. -L ${DESTDIR}/usr/lib ${.ALLSRC}
|
|
|
|
${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c
|
|
make -f ${CBIN}.mk all
|
|
|
|
# This is listed in ramdiskbin.conf but is built here.
|
|
${CBIN}: libhack.o
|
|
|
|
# Use stubs to eliminate some large stuff from libc
|
|
HACKSRC=${TOP}/../../utils/libhack
|
|
.include "${HACKSRC}/Makefile.inc"
|
|
|
|
# turn off small gethostby* temporarily
|
|
HACKOBJS:= getcap.o getgrent.o getnet.o getnetgr.o getpwent.o setlocale.o yplib.o
|
|
|
|
release:
|
|
|
|
clean cleandir distclean:
|
|
/bin/rm -f ${AUXCLEAN} *.core ${IMAGE} ${CBIN} ${CBIN}.mk ${CBIN}.cache *.o *.cro *.c
|
|
|
|
.include <bsd.own.mk>
|
|
.include <bsd.obj.mk>
|
|
.include <bsd.subdir.mk>
|
|
.include <bsd.sys.mk>
|