From fe2ae929f45c361d774533d1bb35b97309dbe6ec Mon Sep 17 00:00:00 2001 From: miod <> Date: Tue, 19 Jan 2010 19:55:53 +0000 Subject: [PATCH] Build GENERIC-IP30.MP as bsd.mp.IP30 in the distribution, and allow the installer to pick it and install it as /bsd when applicable. --- src/etc/etc.sgi/Makefile.inc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/etc/etc.sgi/Makefile.inc b/src/etc/etc.sgi/Makefile.inc index a17e204f..28b3690e 100644 --- a/src/etc/etc.sgi/Makefile.inc +++ b/src/etc/etc.sgi/Makefile.inc @@ -1,10 +1,12 @@ -# $OpenBSD: Makefile.inc,v 1.9 2009/10/06 23:59:18 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.10 2010/01/19 19:55:53 miod Exp $ kernels: bsd bootblocks cp ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP27/bsd \ ${RELEASEDIR}/bsd.IP27 cp ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP30/bsd \ ${RELEASEDIR}/bsd.IP30 + cp ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP30.MP/bsd \ + ${RELEASEDIR}/bsd.mp.IP30 cp ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP32/bsd \ ${RELEASEDIR}/bsd.IP32 @@ -15,6 +17,9 @@ bsd: cd ${.CURDIR}/../sys/arch/sgi/conf && config GENERIC-IP30 cd ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP30 && \ ${MAKE} clean && ${MAKE} depend && exec ${MAKE} + cd ${.CURDIR}/../sys/arch/sgi/conf && config GENERIC-IP30.MP + cd ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP30.MP && \ + ${MAKE} clean && ${MAKE} depend && exec ${MAKE} cd ${.CURDIR}/../sys/arch/sgi/conf && config GENERIC-IP32 cd ${.CURDIR}/../sys/arch/sgi/compile/GENERIC-IP32 && \ ${MAKE} clean && ${MAKE} depend && exec ${MAKE} @@ -23,7 +28,8 @@ bootblocks: cp ${DESTDIR}/usr/mdec/boot32 ${RELEASEDIR} cp ${DESTDIR}/usr/mdec/boot64 ${RELEASEDIR} -MDEXT= bsd.IP27 bsd.rd.IP27 bsd.IP30 bsd.rd.IP30 bsd.IP32 bsd.rd.IP32 \ +MDEXT= bsd.IP27 bsd.rd.IP27 bsd.IP30 bsd.mp.IP30 bsd.rd.IP30 \ + bsd.IP32 bsd.rd.IP32 \ boot32 boot64 cd${OSrev}.iso .PHONY: bsd bootblocks