diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-01-10 00:28:16 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-01-10 00:28:16 +0000 |
commit | 49bcfec6443554cef1fec11ab6ec314212b2aa24 (patch) | |
tree | e6c1f4c9a47044a4a233588a46f15d5e18767636 /etc | |
parent | 7335833bb6a8c91d33aeb942b8437751c7ce5025 (diff) |
put the boot crud in the snapshot
Diffstat (limited to 'etc')
-rw-r--r-- | etc/etc.zaurus/Makefile.inc | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/etc/etc.zaurus/Makefile.inc b/etc/etc.zaurus/Makefile.inc index 13a31fb9469..b3b0517a3f1 100644 --- a/etc/etc.zaurus/Makefile.inc +++ b/etc/etc.zaurus/Makefile.inc @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile.inc,v 1.2 2004/12/31 00:19:56 miod Exp $ +# $OpenBSD: Makefile.inc,v 1.3 2005/01/10 00:28:15 deraadt Exp $ # etc.zaurus/Makefile.inc -- zaurus-specific etc Makefile targets .ifdef DESTDIR -snap_md: bsd distrib1 +snap_md: bsd notes bootblocks distrib cp ${.CURDIR}/../sys/arch/zaurus/compile/GENERIC/bsd \ ${DESTDIR}/snapshot/bsd @@ -11,10 +11,13 @@ bsd: cd ${.CURDIR}/../sys/arch/zaurus/compile/GENERIC && \ ${MAKE} clean && ${MAKE} depend && exec ${MAKE} -# knows about bsd.rd -distrib1: - ${MAKE} distrib +notes: + cp ${.CURDIR}/etc.i386/INSTALL.* ${DESTDIR}/snapshot -.PHONY: bsd distrib1 +bootblocks: + cp ${DESTDIR}/usr/mdec/zboot ${DESTDIR}/snapshot + cp ${DESTDIR}/usr/mdec/zbsdmod.o ${DESTDIR}/snapshot + +.PHONY: bsd notes bootblocks .endif # DESTDIR check |