diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-12-02 03:20:59 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-12-02 03:20:59 +0000 |
commit | e77fe03ee41e8897700e5e841bd831c28d568d93 (patch) | |
tree | 4a11a0bd742ab05b4c4f579da4a761925031b32e /distrib/armish | |
parent | 0dd28ad0baf2f725525aa741d0b78f8686a14200 (diff) |
commit with rdsetroot now accepting the filesystem as a 2nd arg
Diffstat (limited to 'distrib/armish')
-rw-r--r-- | distrib/armish/ramdisk/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/armish/ramdisk/Makefile b/distrib/armish/ramdisk/Makefile index c6c29ee6d92..777996ea6bb 100644 --- a/distrib/armish/ramdisk/Makefile +++ b/distrib/armish/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.5 2008/12/02 01:01:07 deraadt Exp $ +# $OpenBSD: Makefile,v 1.6 2008/12/02 03:20:57 deraadt Exp $ REV= ${OSrev} @@ -42,7 +42,7 @@ ${BSD_RD}: ${CBIN} ${IMAGE} bsd rdsetroot awk 'BEGIN { printf("%c", 192); }' < /dev/null | dd of=${BSD_RD} bs=1 count=1 seek=95 conv=notrunc 2>/dev/null; awk 'BEGIN { printf("%c", 192); }' < /dev/null | dd of=${BSD_RD} bs=1 count=1 seek=127 conv=notrunc 2>/dev/null; awk 'BEGIN { printf("%c", 192); }' < /dev/null | dd of=${BSD_RD} bs=1 count=1 seek=159 conv=notrunc 2>/dev/null; - ${.OBJDIR}/rdsetroot ${BSD_RD} < ${IMAGE} + ${.OBJDIR}/rdsetroot ${BSD_RD} ${IMAGE} dd if=/dev/zero of=${BSD_RD} bs=1 count=1 seek=95 conv=notrunc 2>/dev/null; dd if=/dev/zero of=${BSD_RD} bs=1 count=1 seek=127 conv=notrunc 2>/dev/null; dd if=/dev/zero of=${BSD_RD} bs=1 count=1 seek=159 conv=notrunc 2>/dev/null; |