Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Thomas Orgis (dc7182b7c7f01b557ca7836216553e534262393f)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Thomas Orgis <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Thomas Orgis (dc7182b7c7f01b557ca7836216553e534262393f)
  • Date: Fri, 19 May 2017 15:13:58 +0000

GIT changes to master grimoire by Thomas Orgis <sobukus AT sourcemage.org>:

utils/qemu/DETAILS | 1 +
utils/qemu/HISTORY | 6 ++++++
utils/qemu/INSTALL | 9 +++++++--
3 files changed, 14 insertions(+), 2 deletions(-)

New commits:
commit dc7182b7c7f01b557ca7836216553e534262393f
Author: Thomas Orgis <sobukus AT sourcemage.org>
Commit: Thomas Orgis <sobukus AT sourcemage.org>

qemu: hotfix for not overwriting qemu-system-${ARCH}

diff --git a/utils/qemu/DETAILS b/utils/qemu/DETAILS
index 33a72c7..fe83d34 100755
--- a/utils/qemu/DETAILS
+++ b/utils/qemu/DETAILS
@@ -13,6 +13,7 @@ SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-${VERSION%-*}"
WEB_SITE=http://qemu.org/
KEYWORDS="emulator utils"
ENTERED=20051102
+ PATCHLEVEL=1
SHORT="generic and open source processor emulator"
cat << EOF
QEMU achieves a good emulation speed by using dynamic translation.
diff --git a/utils/qemu/HISTORY b/utils/qemu/HISTORY
index 984675d..7c7199d 100644
--- a/utils/qemu/HISTORY
+++ b/utils/qemu/HISTORY
@@ -1,3 +1,9 @@
+2017-05-19 Thomas Orgis <sobukus AT sourcemage.org>
+ * INSTALL: Do not replace an existing qemu-system-${ARCH} with the
+ symlink, just in case it was built and I would like to run a VM,
+ for a change.
+ * DETAILS: patchlevel for the above
+
2017-04-04 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Updated to 2.8.1
* INSTALL: Some packages (libguestfs) depend on the
qemu-system-${ARCH} file
diff --git a/utils/qemu/INSTALL b/utils/qemu/INSTALL
index cf8b390..d106705 100755
--- a/utils/qemu/INSTALL
+++ b/utils/qemu/INSTALL
@@ -8,8 +8,13 @@ if [[ "${QEMU_KVM}" != "--disable-kvm" ]]; then
fi &&

# Some packages (libguestfs) depend on the qemu-system-${ARCH} file
- ln -sf /usr/bin/qemu-${ARCH} \
- "${INSTALL_ROOT}"/usr/bin/qemu-system-${ARCH} &&
+ # But for sure overwriting qemu-system-${ARCH} with a link to the
+ # userspace emulator is a very bad idea?! Putting this check in here
+ # until someone explains that whole thing to me. --sobukus
+ if ! test -e "${INSTALL_ROOT}"/usr/bin/qemu-system-${ARCH}; then
+ ln -sf /usr/bin/qemu-${ARCH} \
+ "${INSTALL_ROOT}"/usr/bin/qemu-system-${ARCH}
+ fi &&

ln -sf /usr/bin/qemu-system-${ARCH} \
"${INSTALL_ROOT}"/usr/bin/qemu-kvm



  • [SM-Commit] GIT changes to master grimoire by Thomas Orgis (dc7182b7c7f01b557ca7836216553e534262393f), Thomas Orgis, 05/19/2017

Archive powered by MHonArc 2.6.24.

Top of Page