From 14be05494ce5b83cfd99d66be5615f08ef44d067 Mon Sep 17 00:00:00 2001 From: Jim Westveer Date: Sun, 18 Nov 2001 00:36:20 +0000 Subject: [PATCH] Clean up of mboot code --- tools/boot/woody/boot-i386 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/boot/woody/boot-i386 b/tools/boot/woody/boot-i386 index 68bf500d..0f3183be 100755 --- a/tools/boot/woody/boot-i386 +++ b/tools/boot/woody/boot-i386 @@ -79,11 +79,11 @@ if [ $MULTIBOOT == "yes" ] ; then for (( i=2; i != 7; ++i )) ; do # first copy/link the next boot block to the disk. - cp -f CD1/dists/$CODENAME/main/disks-$ARCH/current/images-2.88/${KTYPE[i]}/rescue.bin boot$N/boot/${KTYPE[i]}.bin + ln CD1/dists/$CODENAME/main/disks-$ARCH/current/images-2.88/${KTYPE[i]}/rescue.bin boot$N/boot/${KTYPE[i]}.bin # then the eltorito-alt-boot cmd to mkisofs_opts - echo -n " -eltorito-alt-boot " >> $N.mkisofs_opts + echo -n "-eltorito-alt-boot " >> $N.mkisofs_opts # then copy the mkisofs command for this image to the mkisofs_opts - echo -n " -b boot/${KTYPE[i]}.bin " >> $N.mkisofs_opts + echo -n "-b boot/${KTYPE[i]}.bin " >> $N.mkisofs_opts done fi @@ -156,7 +156,7 @@ fi # write final lines to mkisofs_opts -echo -n " -c boot/boot.catalog boot$N " >> $N.mkisofs_opts +echo -n "-c boot/boot.catalog boot$N " >> $N.mkisofs_opts # th,th, thats all