Changeset 00fe6bb in mainline for contrib/conf/mips32-gx.sh


Ignore:
Timestamp:
2009-06-27T09:41:55Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6408be3
Parents:
1fbe064b
Message:

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.).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • contrib/conf/mips32-gx.sh

    r1fbe064b r00fe6bb  
    11#!/bin/sh
    22
    3 gxemul $@ -E testmips -C R4000 -X image.boot
     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
     10gxemul $@ -E testmips -C R4000 -X image.boot -d d0:"$DISK_IMG"
Note: See TracChangeset for help on using the changeset viewer.