Subversion Repositories HelenOS

Rev

Rev 4573 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4573 Rev 4692
1
#!/bin/sh
1
#!/bin/sh
2
 
2
 
3
DISK_IMG=hdisk.img
3
DISK_IMG=hdisk.img
4
 
4
 
5
# Create a disk image if it does not exist
5
# Create a disk image if it does not exist
6
if [ ! -f "$DISK_IMG" ]; then
6
if [ ! -f "$DISK_IMG" ]; then
7
    tools/mkfat.py uspace/dist/data "$DISK_IMG"
7
    tools/mkfat.py uspace/dist/data "$DISK_IMG"
8
fi
8
fi
9
 
9
 
10
qemu -m 32 -hda "$DISK_IMG" -cdrom image.iso -boot d
10
qemu -m 32 -hda "$DISK_IMG" -cdrom image.iso -boot d
11
 
11