diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-01-19 19:55:54 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-01-19 19:55:54 +0000 |
commit | 0ae35011373ed24ae466fc8c4a959acedc6d6731 (patch) | |
tree | 9e86722f59bdf181ff0f314b4b1542dc16f8343c /etc/etc.sgi | |
parent | c99bc6a17600dd856af400385089db916f24edd0 (diff) |
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.
Diffstat (limited to 'etc/etc.sgi')
-rw-r--r-- | etc/etc.sgi/Makefile.inc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/etc/etc.sgi/Makefile.inc b/etc/etc.sgi/Makefile.inc index a17e204fb04..28b3690ed49 100644 --- a/etc/etc.sgi/Makefile.inc +++ b/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 |