15 lines
590 B
Makefile
15 lines
590 B
Makefile
# $NetBSD: Makefile,v 1.3 2012/01/15 22:34:33 jmcneill Exp $
|
|
CDBASE= prepcd # gives ${CDBASE}.iso
|
|
CDRELEASE= true # include $RELEASEDIR/$MACHINE
|
|
CDMAKEFSOPTIONS=bootimage=powerpc;cdrom/prep/installation/floppy/sysinst_com0.fs
|
|
|
|
# prep needs a fdisk partition table at the head of the cd, pointing to the
|
|
# boot image. We create an el-torrito cd, and then point partition 0 at
|
|
# it.
|
|
|
|
image_md_post:
|
|
${TOOL_FDISK} -F -f -b 1/255/16065 -0 -s 65/80/2799 -i ${CDIMAGE}
|
|
${TOOL_FDISK} -F -f -b 1/255/16065 -0 -s 65/80/2799 -u ${CDIMAGE}
|
|
|
|
.include "${.CURDIR}/../../../common/Makefile.bootcd"
|