NetBSD/etc/etc.sgimips/Makefile.inc

55 lines
1.8 KiB
PHP
Raw Normal View History

# $NetBSD: Makefile.inc,v 1.22 2012/01/15 17:36:55 joerg Exp $
2001-11-20 19:41:44 +03:00
#
# etc.sgimips/Makefile.inc -- sgimips-specific etc Makefile targets
#
# If you change the list of distributed kernels, don't forget
# to update the release documentation in distrib/notes/common/contents
2009-12-14 04:11:02 +03:00
.if ${MACHINE_ARCH} == "mipseb"
SFX=32
.else
SFX=64
.endif
KERNEL_SETS= GENERIC${SFX}_IP2x GENERIC${SFX}_IP3x
.if ${MACHINE_ARCH} == "mipseb"
2010-08-27 15:02:55 +04:00
KERNEL_SETS+= GENERIC32_IP12
KERNEL_SUFFIXES= ecoff
2009-12-14 04:11:02 +03:00
.endif
2001-11-20 19:41:44 +03:00
#EXTRA_KERNELS= NETBOOT
2001-11-20 19:41:44 +03:00
2009-12-14 04:11:02 +03:00
BUILD_KERNELS= INSTALL${SFX}_IP2x INSTALL${SFX}_IP3x
2001-11-20 19:41:44 +03:00
INSTALLATION_DIRS+= installation/netboot \
installation/diskimage
iso-image-md-pre:
2009-12-14 04:11:02 +03:00
cp ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel/netbsd-INSTALL${SFX}_IP2x.gz ${RELEASEDIR}/ip2x
cp ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel/netbsd-INSTALL${SFX}_IP3x.gz ${RELEASEDIR}/ip3x
echo "ip2x/=${RELEASEDIR}/ip2x/" >> ${CDROM.pathlist}
echo "ip3x/=${RELEASEDIR}/ip3x/" >> ${CDROM.pathlist}
SGI.image= ${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/cdrom/netbsd-sgimips.img
iso-image-md-post:
2010-12-27 06:38:52 +03:00
@SEEK=$$(${TOOL_AWK} '/SGI_BOOT_BLOCK_SIZE_VOLHDR/{print $$3}' \
${DESTDIR}/usr/include/sys/bootblock.h) ; \
EST=$$(ls -l ${CDROM_IMAGE} \
| ${TOOL_AWK} '{ s += $$5 } \
END { print int(('$${SEEK}'*512+s)/1024/1024/32+1)*32 \
2010-12-27 06:38:52 +03:00
}') ; \
echo "Estimated image size: $${EST} MB"; \
dd if=/dev/zero of=${SGI.image} bs=1024k count=$${EST}; \
${TOOLDIR}/bin/nbsgivol -f -i ${SGI.image}; \
${TOOLDIR}/bin/nbsgivol -f -w aoutboot ${DESTDIR}/usr/mdec/aoutboot \
${SGI.image}; \
${TOOLDIR}/bin/nbsgivol -f -w ip2xboot ${DESTDIR}/usr/mdec/ip2xboot \
${SGI.image}; \
${TOOLDIR}/bin/nbsgivol -f -w ip3xboot ${DESTDIR}/usr/mdec/ip3xboot \
${SGI.image}; \
dd if=${CDROM_IMAGE} of=${SGI.image} bs=512 seek=$${SEEK}
mv ${SGI.image} ${CDROM_IMAGE}
rm -f ${RELEASEDIR}/ip2x ${RELEASEDIR}/ip3x