Rev 4573 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
796 | palkovsky | 1 | #!/bin/sh |
1754 | jermar | 2 | |
4573 | svoboda | 3 | DISK_IMG=hdisk.img |
4 | |||
5 | # Create a disk image if it does not exist |
||
6 | if [ ! -f "$DISK_IMG" ]; then |
||
7 | tools/mkfat.py uspace/dist/data "$DISK_IMG" |
||
8 | fi |
||
9 | |||
4644 | svoboda | 10 | gxemul $@ -E testmips -C R4000 -X image.boot -M 32 -d d0:"$DISK_IMG" |