summaryrefslogtreecommitdiff
path: root/helpers/lh_binary_usb-hdd
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-11-14 23:01:44 +0100
committerDaniel Baumann <daniel@debian.org>2007-11-14 23:01:44 +0100
commit6edcf23b29c35b7327c3a44da1c97f329189fb24 (patch)
tree8e0acd7a960c115cf0cf01da9626e7f24b033ccd /helpers/lh_binary_usb-hdd
parent7b8a85422a97689a231fddc968a086c11513e4af (diff)
downloadvyos-live-build-6edcf23b29c35b7327c3a44da1c97f329189fb24.tar.gz
vyos-live-build-6edcf23b29c35b7327c3a44da1c97f329189fb24.zip
Do not create the filesystem with parted.
Diffstat (limited to 'helpers/lh_binary_usb-hdd')
-rwxr-xr-xhelpers/lh_binary_usb-hdd4
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/lh_binary_usb-hdd b/helpers/lh_binary_usb-hdd
index f4d0945d8..24cae02d9 100755
--- a/helpers/lh_binary_usb-hdd
+++ b/helpers/lh_binary_usb-hdd
@@ -99,7 +99,7 @@ Losetup $FREELO chroot/binary.img 0
case "${LH_CHROOT_BUILD}" in
enabled)
Chroot "parted -s ${FREELO} mklabel msdos" || true
- Chroot "parted -s ${FREELO} mkpartfs primary fat16 0.0 100%" || true
+ Chroot "parted -s ${FREELO} mkpart primary fat16 0.0 100%" || true
Chroot "parted -s ${FREELO} set 1 boot on" || true
Chroot "parted -s ${FREELO} set 1 lba off" || true
@@ -111,7 +111,7 @@ case "${LH_CHROOT_BUILD}" in
disabled)
parted -s ${FREELO} mklabel msdos || true
- parted -s ${FREELO} mkpartfs primary fat16 0.0 100% || true
+ parted -s ${FREELO} mkpart primary fat16 0.0 100% || true
parted -s ${FREELO} set 1 boot on || true
parted -s ${FREELO} set 1 lba off || true