diff options
author | 1998-09-12 20:07:36 +0000 | |
---|---|---|
committer | 1998-09-12 20:07:36 +0000 | |
commit | 51c44ba07876690abc51e27df3d886fcc34fe0bc (patch) | |
tree | d42fab9c67c801c4f833340df1778e9be1beb6af | |
parent | remove ethernet device detection now that that in common code. (diff) | |
download | wireguard-openbsd-51c44ba07876690abc51e27df3d886fcc34fe0bc.tar.xz wireguard-openbsd-51c44ba07876690abc51e27df3d886fcc34fe0bc.zip |
Put additional kernels in installation directory as filesets, so they can
be selected on install instead of necessitating a manual step.
-rw-r--r-- | etc/etc.powerpc/Makefile.inc | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/etc/etc.powerpc/Makefile.inc b/etc/etc.powerpc/Makefile.inc index 5dbd3753b8d..06a761b41d8 100644 --- a/etc/etc.powerpc/Makefile.inc +++ b/etc/etc.powerpc/Makefile.inc @@ -1,6 +1,10 @@ -# $OpenBSD: Makefile.inc,v 1.8 1998/09/09 13:54:58 rahnds Exp $ +# $OpenBSD: Makefile.inc,v 1.9 1998/09/12 20:07:36 rahnds Exp $ # etc.powerpc/Makefile.inc -- powerpc-specific etc Makefile targets +# HACK ALERT +REL=23 +# unhack + .ifdef DESTDIR snap_md: bsd distrib @@ -13,13 +17,13 @@ bsd: cd ${.CURDIR}/../sys/arch/powerpc/conf && config DDBOFW cd ${.CURDIR}/../sys/arch/powerpc/compile/DDBOFW && \ make clean && make depend && make - cp ${.CURDIR}/../sys/arch/powerpc/compile/DDBOFW/bsd \ - ${DESTDIR}/snapshot/bsdofw + (cd ${.CURDIR}/../sys/arch/powerpc/compile/DDBOFW/ && \ + tar czf ${DESTDIR}/snapshot/bsdofw${REL}.tar.gz bsd ) cd ${.CURDIR}/../sys/arch/powerpc/conf && config MIX cd ${.CURDIR}/../sys/arch/powerpc/compile/MIX && \ make clean && make depend && make - cp ${.CURDIR}/../sys/arch/powerpc/compile/MIX/bsd \ - ${DESTDIR}/snapshot/bsdmix + (cd ${.CURDIR}/../sys/arch/powerpc/compile/MIX/ && \ + tar czf ${DESTDIR}/snapshot/bsdmix${REL}.tar.gz bsd ) # knows about bsd.rd, bsdofw.rd and bsdmix.rd distrib: |