diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2017-08-13 15:41:31 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2017-08-13 15:41:31 +0000 |
commit | 4819d952120301bfd514ad0e8d064a10debf07ca (patch) | |
tree | 37e736da7cacaa25c8ee4b1ee65b97938379f020 /distrib/amd64/iso | |
parent | 9a193c422ecd5f28cd1f89c503b528fd11de1890 (diff) |
strip .SUNW_ctf in the remaining strip invocations
broke amd64/ramdisk_cd as it no longer fit; spotted by jsg@
ok deraadt@ mpi@
Diffstat (limited to 'distrib/amd64/iso')
-rw-r--r-- | distrib/amd64/iso/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/amd64/iso/Makefile b/distrib/amd64/iso/Makefile index ad8b1f4a606..7cf65e8aa59 100644 --- a/distrib/amd64/iso/Makefile +++ b/distrib/amd64/iso/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 2017/06/13 16:28:04 deraadt Exp $ +# $OpenBSD: Makefile,v 1.19 2017/08/13 15:41:30 jasper Exp $ TOP= ${.CURDIR}/.. @@ -60,7 +60,7 @@ ${FS}: ${BASE} ${XBASE} bsd.gz mount ${VND_DEV} ${MOUNT_POINT} cp ${BOOT} ${MOUNT_POINT}/boot strip ${MOUNT_POINT}/boot - strip -R .comment ${MOUNT_POINT}/boot + strip -R .comment -R .SUNW_ctf ${MOUNT_POINT}/boot dd if=bsd.gz of=${MOUNT_POINT}/bsd bs=512 installboot -v -r ${MOUNT_POINT} ${VND_CRDEV} \ ${DESTDIR}/usr/mdec/biosboot ${MOUNT_POINT}/boot @@ -117,7 +117,7 @@ clean cleandir: bsd.gz: bsd.rd cp ${BSDRD} bsd.strip strip bsd.strip - strip -R .comment bsd.strip + strip -R .comment -R .SUNW_ctf bsd.strip gzip -c9n bsd.strip > bsd.gz bsd.rd: ${BSDRD} |