summaryrefslogtreecommitdiff
path: root/archiso
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2008-12-23 02:23:22 -0600
committerAaron Griffin <aaronmgriffin@gmail.com>2008-12-23 02:23:22 -0600
commitf47fde84853cc8bd5467800172ccb3c8825d09ac (patch)
treea9b2f42ebdbef552eda822d85590454cc596952c /archiso
parent29f5c0373c0f4a86f327995e8b7f3eceb8775521 (diff)
Fix some intending errors in USB creation
This was causing sfdisk and grub to balk Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'archiso')
-rwxr-xr-xarchiso/mkarchiso14
1 files changed, 7 insertions, 7 deletions
diff --git a/archiso/mkarchiso b/archiso/mkarchiso
index 42fc2f9..ec4fcb9 100755
--- a/archiso/mkarchiso
+++ b/archiso/mkarchiso
@@ -286,17 +286,17 @@ command_usb () {
# create a partition table
# if this looks like voodoo, it's because it is
sfdisk -uS -f "${imgname}" << EOF
- 63,$imgsz,83,*
- 0,0,00
- 0,0,00
- 0,0,00
+63,$imgsz,83,*
+0,0,00
+0,0,00
+0,0,00
EOF
# install grub on the image
grub --no-floppy --batch << EOF
- device (hd0) ${imgname}
- root (hd0,0)
- setup (hd0)
+device (hd0) ${imgname}
+root (hd0,0)
+setup (hd0)
EOF
}