summaryrefslogtreecommitdiffstats
path: root/src/os-plugins
diff options
context:
space:
mode:
authorDirk2011-07-08 02:02:03 +0200
committerDirk2011-07-08 02:02:03 +0200
commite60ecb34c15cd257a44ae4d1d1c7cd535e4959d7 (patch)
tree227543514c6ac13fd964a61a7d4a60de3f77ae7c /src/os-plugins
parentSome more stuff added ... (diff)
downloadcore-e60ecb34c15cd257a44ae4d1d1c7cd535e4959d7.tar.gz
core-e60ecb34c15cd257a44ae4d1d1c7cd535e4959d7.tar.xz
core-e60ecb34c15cd257a44ae4d1d1c7cd535e4959d7.zip
Path variable fix ...
Diffstat (limited to 'src/os-plugins')
-rw-r--r--src/os-plugins/plugins/emufe/files/run-virt.include14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/os-plugins/plugins/emufe/files/run-virt.include b/src/os-plugins/plugins/emufe/files/run-virt.include
index 911e4161..b1573ee9 100644
--- a/src/os-plugins/plugins/emufe/files/run-virt.include
+++ b/src/os-plugins/plugins/emufe/files/run-virt.include
@@ -31,8 +31,8 @@ fi
### Declaration of default variables
################################################################################
-PLUGINCONFQK="${PLUGINCONFROOT}/${self}"
-PLUGINDIRQK=${OPENSLX_DEFAULT_DIR}/plugin-repo/${self}
+PLUGINCONF="${PLUGINCONFROOT}/${self}"
+PLUGINDIR=${OPENSLX_DEFAULT_DIR}/plugin-repo/${self}
# create TMPDIR for all users
mkdir -m 1777 /tmp/${self} 2>/dev/null
# TMPDIR
@@ -69,7 +69,7 @@ case "${emulator}" in
;;
SheepShaver*|sheepshaver*)
if [ "x${rombios}" != "x" ] ; then
- rom="--rom ${xmlpath}/${rombios}"
+ rom="--rom ${imgpath}/${rombios}"
else
echo "problem"
fi
@@ -82,7 +82,7 @@ case "${emulator}" in
;;
basilisk*|Basilisk*)
if [ "x${rombios}" != "x" ] ; then
- rom="--rom ${xmlpath}/${rombios}"
+ rom="--rom ${imgpath}/${rombios}"
else
echo "problem"
fi
@@ -95,15 +95,15 @@ case "${emulator}" in
;;
*mess*)
- [ "x${rombios}" != "x" ] && rom="${xmlpath}/${rombios}"
+ [ "x${rombios}" != "x" ] && rom="${imgpath}/${rombios}"
VIRTCMDOPTS="${VIRTCMDOPTS} ${rom}"
;;
*uae*)
- [ "x${rombios}" != "x" ] && rom="-s kickstart_rom_file=${xmlpath}/${rombios}"
+ [ "x${rombios}" != "x" ] && rom="-s kickstart_rom_file=${imgpath}/${rombios}"
VIRTCMDOPTS="${VIRTCMDOPTS} ${rom}"
;;
*qemu*)
- [ "x${rombios}" != "x" ] && rom="-bios ${xmlpath}/${rombios}"
+ [ "x${rombios}" != "x" ] && rom="-bios ${imgpath}/${rombios}"
VIRTCMDOPTS="${VIRTCMDOPTS} ${rom} -name \"${displayname}\" -snapshot ${diskfile}"
;;
esac