Index: contrib/conf/ia32-qe.sh
===================================================================
--- contrib/conf/ia32-qe.sh	(revision 852b80130e0f28124d72af653ed0aef959db3053)
+++ contrib/conf/ia32-qe.sh	(revision 852b80130e0f28124d72af653ed0aef959db3053)
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+DISK_IMG=hdisk.img
+
+# Create a disk image if it does not exist
+if [ ! -f "$DISK_IMG" ]; then
+	tools/mkfat.py uspace/dist/data "$DISK_IMG"
+fi
+
+qemu -m 32 -hda "$DISK_IMG" -cdrom image.iso -boot d
Index: contrib/conf/mips32-gx.sh
===================================================================
--- contrib/conf/mips32-gx.sh	(revision b4c6e837c4fb040fea79da60ab626fa175236dd9)
+++ contrib/conf/mips32-gx.sh	(revision 852b80130e0f28124d72af653ed0aef959db3053)
@@ -1,3 +1,10 @@
 #!/bin/sh
 
-gxemul $@ -E testmips -C R4000 -X image.boot
+DISK_IMG=hdisk.img
+
+# Create a disk image if it does not exist
+if [ ! -f "$DISK_IMG" ]; then
+	tools/mkfat.py uspace/dist/data "$DISK_IMG"
+fi
+
+gxemul $@ -E testmips -C R4000 -X image.boot -d d0:"$DISK_IMG"
