diff options
-rw-r--r-- | distrib/notes/mvme88k/contents | 4 | ||||
-rw-r--r-- | distrib/notes/mvme88k/hardware | 6 | ||||
-rw-r--r-- | etc/etc.mvme88k/Makefile.inc | 13 |
3 files changed, 18 insertions, 5 deletions
diff --git a/distrib/notes/mvme88k/contents b/distrib/notes/mvme88k/contents index 8c3a8ca1b15..bc87bff7b20 100644 --- a/distrib/notes/mvme88k/contents +++ b/distrib/notes/mvme88k/contents @@ -1,10 +1,12 @@ -dnl $OpenBSD: contents,v 1.15 2006/02/28 20:42:35 miod Exp $ +dnl $OpenBSD: contents,v 1.16 2007/11/09 18:15:21 miod Exp $ TopPart OpenBSDdistsets OpenBSDbsd +OpenBSDbsdmp + OpenBSDrd installboot The OpenBSD/MACHINE boot loader installation diff --git a/distrib/notes/mvme88k/hardware b/distrib/notes/mvme88k/hardware index dc57f913284..51d68854321 100644 --- a/distrib/notes/mvme88k/hardware +++ b/distrib/notes/mvme88k/hardware @@ -1,4 +1,4 @@ -dnl $OpenBSD: hardware,v 1.9 2004/08/03 21:31:08 miod Exp $ +dnl $OpenBSD: hardware,v 1.10 2007/11/09 18:15:21 miod Exp $ OpenBSD/MACHINE OSREV runs on the systems built around the following MVME boards: @@ -9,6 +9,10 @@ Besides various Motorola complete systems (M8120, MVME187-based series 900, etc), OpenBSD/MACHINE also runs on the MVME187-based Triton Dolphin System 100. +OpenBSD/MACHINE OSREV supports MVME188 SMP (Symmetrical MultiProcessor) +systems. To support SMP operation, a separate SMP kernel (bsd.mp) +is included with the installation file sets. + The minimal configuration requires 16MB of RAM and ~250MB of disk space. To install the entire system requires much more disk space, and to compile the system, more RAM is recommended. diff --git a/etc/etc.mvme88k/Makefile.inc b/etc/etc.mvme88k/Makefile.inc index 6665af09864..3215651cabe 100644 --- a/etc/etc.mvme88k/Makefile.inc +++ b/etc/etc.mvme88k/Makefile.inc @@ -1,18 +1,25 @@ -# $OpenBSD: Makefile.inc,v 1.7 2006/07/27 02:53:55 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.8 2007/11/09 18:15:22 miod Exp $ .ifdef DESTDIR -snap_md: bsd bootblocks distrib +snap_md: bsd bsd.mp bootblocks distrib cp ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC/bsd \ ${DESTDIR}/snapshot/bsd + cp ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC.MP/bsd \ + ${DESTDIR}/snapshot/bsd.mp bsd: cd ${.CURDIR}/../sys/arch/mvme88k/conf && config GENERIC cd ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC && \ ${MAKE} clean && ${MAKE} depend && ${MAKE} +bsd.mp: + cd ${.CURDIR}/../sys/arch/mvme88k/conf && config GENERIC.MP + cd ${.CURDIR}/../sys/arch/mvme88k/compile/GENERIC.MP && \ + ${MAKE} clean && ${MAKE} depend && ${MAKE} + bootblocks: cp ${DESTDIR}/usr/mdec/* ${DESTDIR}/snapshot/ -.PHONY: bsd bootblocks +.PHONY: bsd bsd.mp bootblocks .endif # DESTDIR check |