2002-05-02 22:02:14 +04:00
|
|
|
# $NetBSD: Makefile.tarfloppy,v 1.4 2002/05/02 18:02:31 lukem Exp $
|
2002-04-16 13:00:20 +04:00
|
|
|
#
|
|
|
|
# Makefile snippet to create a set of ustar floppies.
|
|
|
|
# Each floppy has an 8KB header, followed by part or all of the ustar archive.
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Required variables:
|
2002-04-26 19:50:21 +04:00
|
|
|
# NETBSDSRCDIR Top level of src tree (set by <bsd.own.mk>)
|
2002-04-16 13:00:20 +04:00
|
|
|
# FLOPPYBASE Basename of floppies. Floppy number ${n} will
|
|
|
|
# be generated as ${FLOPPYBASE}${n}.fs
|
|
|
|
# FLOPPYSIZE Size of floppy in 512 byte blocks.
|
|
|
|
# FLOPPYFILES Files to write to floppy.
|
|
|
|
# Usually set to "boot ${FLOPPYMETAFILE} netbsd"
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Optional variables:
|
|
|
|
# FLOPPY_BOOT Bootstrap to use as "boot".
|
|
|
|
# FLOPPY_BOOT_STRIP If yes, strip "boot" before use.
|
|
|
|
# FLOPPY_NETBSD Kernel to to use as "netbsd".
|
2002-05-02 22:02:14 +04:00
|
|
|
# FLOPPYINSTBOOT Installboot program to use.
|
|
|
|
# USTAR image file is in @IMAGE@.
|
|
|
|
# FLOPPYMAX Maximum number of floppies to build.
|
|
|
|
# If 1, the final image is installed as
|
|
|
|
# ${FLOPPYBASE}.fs instead of ${FLOPPYBASE}1.fs
|
|
|
|
# FLOPPYMETAFILE USTAR metafile(s) (optional)
|
|
|
|
# FLOPPYPAD If defined, pad the last floppy to ${FLOPPYSIZE}
|
|
|
|
# FLOPPY_RELEASEDIR Where to install release floppies.
|
2002-04-16 13:00:20 +04:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
.if defined(FLOPPY_BOOT) # {
|
|
|
|
CLEANFILES+= boot
|
|
|
|
boot: ${FLOPPY_BOOT}
|
|
|
|
@echo "Copying ${.ALLSRC} to boot"
|
|
|
|
@rm -f boot
|
|
|
|
@cp ${.ALLSRC} boot
|
|
|
|
.if defined(FLOPPY_BOOT_STRIP)
|
|
|
|
@${STRIP} boot
|
|
|
|
.endif
|
|
|
|
.endif # FLOPPY_BOOT # }
|
|
|
|
|
|
|
|
|
|
|
|
.if defined(FLOPPY_NETBSD) # {
|
|
|
|
CLEANFILES+= netbsd
|
|
|
|
netbsd: ${FLOPPY_NETBSD}
|
|
|
|
@echo "Copying ${.ALLSRC} to netbsd"
|
|
|
|
@rm -f netbsd
|
|
|
|
@cp ${.ALLSRC} netbsd
|
|
|
|
.endif # FLOPPY_NETBSD # }
|
|
|
|
|
|
|
|
|
|
|
|
.if defined(FLOPPYMETAFILE) # {
|
|
|
|
CLEANFILES+= ${FLOPPYMETAFILE}
|
|
|
|
${FLOPPYMETAFILE}:
|
|
|
|
@echo "Creating ${FLOPPYMETAFILE}"
|
|
|
|
@rm -f ${FLOPPYMETAFILE}
|
|
|
|
@touch ${FLOPPYMETAFILE}
|
|
|
|
.endif # FLOPPYMETAFILE # }
|
|
|
|
|
|
|
|
|
|
|
|
${FLOPPYBASE}1.fs: ${FLOPPYFILES} ${DISTRIBDIR}/common/buildfloppies.sh
|
|
|
|
@echo "Creating ${FLOPPYBASE}1.fs from: ${FLOPPYFILES}"
|
2002-04-25 03:04:08 +04:00
|
|
|
PAX=${PAX:Q} sh ${DISTRIBDIR}/common/buildfloppies.sh \
|
|
|
|
${FLOPPYMAX:D-m ${FLOPPYMAX}} \
|
2002-04-16 13:00:20 +04:00
|
|
|
${FLOPPYINSTBOOT:D-i ${FLOPPYINSTBOOT}} ${FLOPPYPAD:D-p} \
|
|
|
|
${FLOPPYBASE} ${FLOPPYSIZE} ${FLOPPYFILES}
|
|
|
|
|
|
|
|
CLEANFILES+= ${FLOPPYBASE}?.fs
|
|
|
|
|
|
|
|
|
|
|
|
realall: ${FLOPPYBASE}1.fs
|
|
|
|
|
2002-05-02 22:02:14 +04:00
|
|
|
.if defined(FLOPPY_RELEASEDIR)
|
2002-04-16 13:00:20 +04:00
|
|
|
release: check_RELEASEDIR .WAIT ${FLOPPYBASE}1.fs
|
|
|
|
if [ -e ${FLOPPYBASE}2.fs ]; then \
|
2002-05-02 22:02:14 +04:00
|
|
|
${RELEASE_INSTALL} ${FLOPPYBASE}?.fs \
|
|
|
|
${RELEASEDIR}/${FLOPPY_RELEASEDIR}; \
|
2002-04-16 13:00:20 +04:00
|
|
|
else \
|
2002-05-02 22:02:14 +04:00
|
|
|
${RELEASE_INSTALL} ${FLOPPYBASE}1.fs \
|
|
|
|
${RELEASEDIR}/${FLOPPY_RELEASEDIR}/${FLOPPYBASE}.fs; \
|
2002-04-16 13:00:20 +04:00
|
|
|
fi
|
|
|
|
.endif
|