Rev 4348 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4348 | Rev 4691 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | #!/bin/sh |
1 | #!/bin/sh |
2 | 2 | ||
- | 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 | ||
3 | gxemul $@ -E testmips -C R4000 -X image.boot |
10 | gxemul $@ -E testmips -C R4000 -X image.boot -d d0:"$DISK_IMG" |