diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2006-11-08 23:45:18 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2006-11-08 23:45:18 +0000 |
commit | 58d3f43549199023fea0b9a542280a52fa4c9c2d (patch) | |
tree | c9cde1e1fdcf762e8d8f0f46cb4778642da48f67 /distrib/landisk/miniroot | |
parent | 2dc7b45c0c21be482e3ccb2febccb01b94c5d100 (diff) |
For now, -i and -u need to be different invocations. ie fix bug in fdisk
Diffstat (limited to 'distrib/landisk/miniroot')
-rw-r--r-- | distrib/landisk/miniroot/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/distrib/landisk/miniroot/Makefile b/distrib/landisk/miniroot/Makefile index 25558284818..f9f95395653 100644 --- a/distrib/landisk/miniroot/Makefile +++ b/distrib/landisk/miniroot/Makefile @@ -36,7 +36,8 @@ do_files: rd_setup: dd if=/dev/zero of=${IMAGE} bs=512 count=${NBLKS} vnconfig -v -c ${VND} ${IMAGE} - fdisk -i -u -y ${VND} + fdisk -i -y ${VND} + fdisk -u -y ${VND} disklabel -w -r ${VND} ${DISKTYPE} disklabel -v -B -b ${DESTDIR}/usr/mdec/xxboot ${VND} newfs ${NEWFSARGS} ${VND_RDEV} |