If one runs deb2flash.py and tries to set it up with a single parition, the install will fail because the script will try to mount the non-existant /boot partition. The output of the script is
Running Command: DEBIAN_FRONTEND=readline apt-get install grub Configuring Grub. Grub Device: hd1 Grub install complete Running Command: mount -o remount,ro /boot Command Failed -- Retry? (yes/NO) yes
and the end of /mnt/usbbuild/install-chroot.log says:
feraga# echo $? echo $? 1 feraga# mount -o remount,ro /boot mount -o remount,ro /boot mount: can't find /boot in /etc/fstab or /etc/mtab feraga# echo $? echo $?
Comments
Fixed
Missing a check for single partition installs. Added it and tested it. It's working now.
Thanks for the bug report.