blob: ab113dd6824511c1fdf8dcffd8de922b32a3a1c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
export OSLAB_PATH=$(dirname `which $0`)
if [ ! -e "$OSLAB_PATH/hdc/umounted" ]; then
echo umount hdc first
sudo umount $OSLAB_PATH/hdc
if [ "$?" != "0" ]; then
exit
fi
fi
bochs -q -f $OSLAB_PATH/bochs/linux-0.11-gui.bxrc
|