Nikolas Britton - 2006-03-25

Not all unix environments have bash installed by default. and have to thought about changing the projects name, it could be easy to confuse it with the qemu accelerator (the kernel module part) project?

# diff kqemu.kmdr.old kqemu.kmdr
420c420
<     #Save VM options in a Bash Script
---
>     #Save VM options in a Sh Script
423c423
<           chmod u+x $FILE &amp;&amp; kdialog --title "KQemu" --msgbox "VM's Options saved in BashScript: $FILE" || kdialog --title "KQemu" --error "File $FILE not Saved!"
---
>           chmod u+x $FILE &amp;&amp; kdialog --title "KQemu" --msgbox "VM's Options saved in shell script File: $FILE" || kdialog --title "KQemu" --error "File $FILE not Saved!"
550c550
<   bash -c "$CL 2&gt; /tmp/$USER-kqemu.output" &amp;
---
>   sh -c "$CL 2&gt; /tmp/$USER-kqemu.output" &amp;
854c854
< kdialog --msgbox "This version work only with qemu &gt;= 0.8.0"
---
> kdialog --msgbox "This version works only with QEMU 0.8.x"
932c932
<                             <string>#!/bin/bash
---
>                             <string>#!/bin/sh
1677c1677
< bash -c "$CL &gt; /tmp/$USER-kqemu.output";
---
> sh -c "$CL &gt; /tmp/$USER-kqemu.output";