From: Ben Taylor <sol10x86@cox.net>
To: Qemu-devel@nongnu.org
Subject: [Qemu-devel] Solaris kqemu patch
Date: Fri, 12 Jan 2007 12:40:55 -0500 [thread overview]
Message-ID: <7086895.1168623655500.JavaMail.root@eastrmwml03.mgt.cox.net> (raw)
[-- Attachment #1: Type: text/plain, Size: 246 bytes --]
This patch allows for the opensolaris kqemu module to be activated under
a Solaris Express (11) host running qemu.
The solaris kqemu module is located at:
http://www.opensolaris.org/os/project/qemu/downloads/kqemu-osol-1.3.0pre9-v0.2.tar.gz
[-- Attachment #2: sol-kqemu.patch --]
[-- Type: text/x-patch, Size: 1652 bytes --]
diff -ruN qemu-base/configure qemu/configure
--- qemu-base/configure 2007-01-05 16:25:54.000000000 -0500
+++ qemu/configure 2007-01-12 12:14:34.352357000 -0500
@@ -151,6 +151,11 @@
make="gmake"
install="ginstall"
solarisrev=`uname -r | cut -f2 -d.`
+ if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
+ if test "$solarisrev" -gt 10 ; then
+ kqemu="yes"
+ fi
+ fi
fi
# find source path
diff -ruN qemu-base/kqemu.c qemu/kqemu.c
--- qemu-base/kqemu.c 2006-10-02 13:58:33.000000000 -0400
+++ qemu/kqemu.c 2007-01-12 12:08:02.935409000 -0500
@@ -26,6 +26,9 @@
#include <sys/mman.h>
#include <sys/ioctl.h>
#endif
+#ifdef HOST_SOLARIS
+#include <sys/modctl.h>
+#endif
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
diff -ruN qemu-base/osdep.c qemu/osdep.c
--- qemu-base/osdep.c 2006-08-17 12:19:07.000000000 -0400
+++ qemu/osdep.c 2007-01-12 12:16:19.137607000 -0500
@@ -27,6 +27,10 @@
#include <string.h>
#include <errno.h>
#include <unistd.h>
+#ifdef HOST_SOLARIS
+#include <sys/types.h>
+#include <sys/statvfs.h>
+#endif
#include "cpu.h"
#if defined(USE_KQEMU)
@@ -86,13 +90,22 @@
const char *tmpdir;
char phys_ram_file[1024];
void *ptr;
+#ifdef HOST_SOLARIS
+ struct statvfs stfs;
+#else
struct statfs stfs;
+#endif
if (phys_ram_fd < 0) {
tmpdir = getenv("QEMU_TMPDIR");
if (!tmpdir)
+#ifdef HOST_SOLARIS
+ tmpdir = "/tmp";
+ if (statvfs(tmpdir, &stfs) == 0) {
+#else
tmpdir = "/dev/shm";
if (statfs(tmpdir, &stfs) == 0) {
+#endif
int64_t free_space;
int ram_mb;
reply other threads:[~2007-01-12 17:40 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7086895.1168623655500.JavaMail.root@eastrmwml03.mgt.cox.net \
--to=sol10x86@cox.net \
--cc=Qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).