~xubuntu-dev/debian-cd/xubuntu-base

« back to all changes in this revision

Viewing changes to tools/boot/jaunty/post-boot-i386

  • Committer: Loic Minier
  • Date: 2009-04-03 13:39:21 UTC
  • mto: This revision was merged to the branch mainline in revision 1388.
  • Revision ID: lool@antimony-20090403133921-708ffyoc6os6kokk
replace CDIMAGE_VFAT= with IMAGE_FORMAT= (either vfat or iso)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
        exit 0
22
22
fi
23
23
# We only want to do this for vfat images
24
 
if [ "$CDIMAGE_VFAT" != "1" ]; then
25
 
        exit 0
 
24
if [ "$IMAGE_FORMAT" = "vfat" ]; then
 
25
        syslinux -d syslinux $CDIMAGE
26
26
fi
27
27
 
28
 
syslinux -d syslinux $CDIMAGE
29