source: mainline/contrib/conf/ia32-qe.sh@ 50cfa6c

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 50cfa6c was 00fe6bb, checked in by Jiri Svoboda <jirik.svoboda@…>, 16 years ago

Automatically try to mount FAT from disk0 on /data upon boot. Save Tetris score there. Automatically create disk image in sample config files, if it does not already exist. This tentatively reaches the Milanstone (t.m.).

  • Property mode set to 100755
File size: 206 bytes
Line 
1#!/bin/sh
2
3DISK_IMG=hdisk.img
4
5# Create a disk image if it does not exist
6if [ ! -f "$DISK_IMG" ]; then
7 tools/mkfat.py uspace/dist/data "$DISK_IMG"
8fi
9
10qemu -m 32 -hda "$DISK_IMG" -cdrom image.iso -boot d
Note: See TracBrowser for help on using the repository browser.