diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-02-17 18:09:50 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-02-17 18:09:50 +0000 |
commit | 822e962977f99d145363ee14f16d92f623657b8c (patch) | |
tree | 44eb1acd3c2a7c94ba33acba8ff646d59a159d74 /etc/etc.loongson/Makefile.inc | |
parent | 84a2835d241f8e4adb3ecef49476d9bf821cf9ab (diff) |
Build and install the boot blocks, and put it as part of the snapshots files.
Diffstat (limited to 'etc/etc.loongson/Makefile.inc')
-rw-r--r-- | etc/etc.loongson/Makefile.inc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/etc/etc.loongson/Makefile.inc b/etc/etc.loongson/Makefile.inc index 2740d4cafb0..cb0794f44dc 100644 --- a/etc/etc.loongson/Makefile.inc +++ b/etc/etc.loongson/Makefile.inc @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile.inc,v 1.1 2010/01/23 19:26:45 matthieu Exp $ +# $OpenBSD: Makefile.inc,v 1.2 2010/02/17 18:09:49 miod Exp $ -kernels: bsd +kernels: bsd bootblocks cp ${.CURDIR}/../sys/arch/loongson/compile/GENERIC/bsd \ ${RELEASEDIR}/bsd bsd: @@ -8,7 +8,9 @@ bsd: cd ${.CURDIR}/../sys/arch/loongson/compile/GENERIC && \ ${MAKE} clean && ${MAKE} depend && exec ${MAKE} -MDEXT= bsd bsd.rd +bootblocks: + cp ${DESTDIR}/usr/mdec/boot ${RELEASEDIR} -.PHONY: bsd +MDEXT= bsd bsd.rd +.PHONY: bsd bootblocks |