#!/bin/sh

# REQUIRES SYSLINUX TO WORK

if [ -z $(which syslinux) ] ; then
	echo "You don't have Syslinux! I can't make a bald image without it."
else
	# make a file
	dd if=/dev/zero of=syslinux-parts/bald.img count=2879
	# make it fat :D
	mkfs.vfat syslinux-parts/bald.img
	# add some syslinux, stir gently
	syslinux --i syslinux-parts/bald.img
fi
