qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] make /usr/bin/qemu the native arch
@ 2007-07-08 12:21 Robert Millan
  2007-07-08 16:35 ` Daniel P. Berrange
  0 siblings, 1 reply; 6+ messages in thread
From: Robert Millan @ 2007-07-08 12:21 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 403 bytes --]


Hi,

Shouldn't /usr/bin/qemu be an alias for qemu-system-$(ARCH), where $(ARCH) is
the native architecture?  Defaulting to i386 doesn't make much sense nowadays,
specially since x86_64 is gradually obsoleting it.

See attached patch.

-- 
Robert Millan

My spam trap is honeypot@aybabtu.com.  Note: this address is only intended
for spam harvesters.  Writing to it will get you added to my black list.

[-- Attachment #2: system.diff --]
[-- Type: text/x-diff, Size: 786 bytes --]

--- qemu-0.8.2.old/Makefile.target	2006-07-22 19:23:34.000000000 +0200
+++ qemu-0.8.2/Makefile.target	2007-07-08 14:05:33.000000000 +0200
@@ -43,11 +43,7 @@
 QEMU_USER=qemu-$(TARGET_ARCH2)
 # system emulator name
 ifdef CONFIG_SOFTMMU
-ifeq ($(TARGET_ARCH), i386)
-QEMU_SYSTEM=qemu$(EXESUF)
-else
 QEMU_SYSTEM=qemu-system-$(TARGET_ARCH2)$(EXESUF)
-endif
 else
 QEMU_SYSTEM=qemu-fast
 endif
@@ -531,6 +527,13 @@
 install: all 
 ifneq ($(PROGS),)
 	$(INSTALL) -m 755 -s $(PROGS) "$(DESTDIR)$(bindir)"
+ifeq ($(ARCH), $(TARGET_ARCH2))
+ifdef _WIN32
+	mv "$(DESTDIR)$(bindir)/qemu-system-$(TARGET_ARCH2)$(EXESUF)" "$(DESTDIR)$(bindir)/qemu$(EXESUF)"
+else
+	ln -s qemu-system-$(TARGET_ARCH2)$(EXESUF) "$(DESTDIR)$(bindir)/qemu$(EXESUF)"
+endif
+endif
 endif
 
 ifneq ($(wildcard .depend),)

^ permalink raw reply	[flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [PATCH] make /usr/bin/qemu the native arch
@ 2007-08-01 19:53 Robert Millan
  0 siblings, 0 replies; 6+ messages in thread
From: Robert Millan @ 2007-08-01 19:53 UTC (permalink / raw)
  To: berrange; +Cc: qemu-devel

> Management tools for QEMU will have come to rely on existing semantics
> of /usr/bin/qemu being i386.

How about just deprecating it?  For example, we could make
/usr/bin/qemu  be a script with:

#!/bin/bash
echo "warning: $0 is deprecated, use qemu-system-i386 instead"
exec qemu-system-i386 $@

> Changing this for merely cosmetic reasons [...]

It's not just cosmetic.  I recall you sent me some benchmarks (too bad
they didn't make it to the list, and I somehow lost that mail), but
they were done on i386 (which remains unaffected).  On x86_64, results
are different (specially if you have setup kqemu which only works with
qemu-system-x86_64).

-- 
Robert Millan

My spam trap is honeypot@aybabtu.com.  Note: this address is only intended
for spam harvesters.  Writing to it will get you added to my black list.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-08-01 19:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-08 12:21 [Qemu-devel] [PATCH] make /usr/bin/qemu the native arch Robert Millan
2007-07-08 16:35 ` Daniel P. Berrange
2007-07-08 17:04   ` Ricardo Almeida
2007-07-08 20:16     ` Daniel P. Berrange
2007-07-11 18:54       ` andrzej zaborowski
  -- strict thread matches above, loose matches on Subject: below --
2007-08-01 19:53 Robert Millan

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).