[Qemu-devel] qemu/hw pc.c

2008-02-02 Thread Andrzej Zaborowski
CVSROOT:/sources/qemu
Module name:qemu
Changes by: Andrzej Zaborowski balrog 08/02/03 04:33:32

Modified files:
hw : pc.c 

Log message:
Fix VMware VGA init call (Anthony Liguori).
s/vga_ram_size/vga_ram_addr/

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pc.c?cvsroot=qemur1=1.97r2=1.98




Re: [Qemu-devel] qemu hw/pc.c target-i386/cpu.h target-i386/help...

2007-11-21 Thread Dan Kenigsberg
On Thu, Nov 08, 2007 at 01:28:47PM +, Fabrice Bellard wrote:
 CVSROOT:  /sources/qemu
 Module name:  qemu
 Changes by:   Fabrice Bellard bellard   07/11/08 13:28:47
 
 Modified files:
   hw : pc.c 
   target-i386: cpu.h helper2.c 
 
 Log message:
   added -cpu option for x86 (initial patch by Dan Kenigsberg)
 
 CVSWeb URLs:
 http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pc.c?cvsroot=qemur1=1.89r2=1.90
 http://cvs.savannah.gnu.org/viewcvs/qemu/target-i386/cpu.h?cvsroot=qemur1=1.51r2=1.52
 http://cvs.savannah.gnu.org/viewcvs/qemu/target-i386/helper2.c?cvsroot=qemur1=1.54r2=1.55
 

Only now did I notice this. Thanks for applying, but as Thiemo Seufer
mentioned on this list, one must correct a segfault-inducing typo:

Regards,

Dan.

diff --git a/target-i386/helper2.c b/target-i386/helper2.c
index b46475e..67658e2 100644
--- a/target-i386/helper2.c
+++ b/target-i386/helper2.c
@@ -83,7 +83,7 @@ static void add_flagname_to_bitmaps(char *flagname, uint32_t 
*features,
 return;
 }
 for ( i = 0 ; i  32 ; i++ ) 
-if (ext3_features[i]  !strcmp (flagname, ext3_feature_name[i])) {
+if (ext3_feature_name[i]  !strcmp (flagname, ext3_feature_name[i])) {
 *ext3_features |= 1  i;
 return;
 }





[Qemu-devel] qemu hw/pc.c target-i386/cpu.h target-i386/help...

2007-11-08 Thread Fabrice Bellard
CVSROOT:/sources/qemu
Module name:qemu
Changes by: Fabrice Bellard bellard   07/11/08 13:28:47

Modified files:
hw : pc.c 
target-i386: cpu.h helper2.c 

Log message:
added -cpu option for x86 (initial patch by Dan Kenigsberg)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pc.c?cvsroot=qemur1=1.89r2=1.90
http://cvs.savannah.gnu.org/viewcvs/qemu/target-i386/cpu.h?cvsroot=qemur1=1.51r2=1.52
http://cvs.savannah.gnu.org/viewcvs/qemu/target-i386/helper2.c?cvsroot=qemur1=1.54r2=1.55




[Qemu-devel] qemu/hw pc.c

2007-11-07 Thread Fabrice Bellard
CVSROOT:/sources/qemu
Module name:qemu
Changes by: Fabrice Bellard bellard   07/11/07 16:54:42

Modified files:
hw : pc.c 

Log message:
removed traces

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pc.c?cvsroot=qemur1=1.88r2=1.89




[Qemu-devel] qemu/hw pc.c vmmouse.c

2007-08-26 Thread Thiemo Seufer
CVSROOT:/sources/qemu
Module name:qemu
Changes by: Thiemo Seufer ths 07/08/26 17:46:38

Modified files:
hw : pc.c vmmouse.c 

Log message:
Use the framework for the VMware mouse emulation, by Herve Poussineau.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pc.c?cvsroot=qemur1=1.81r2=1.82
http://cvs.savannah.gnu.org/viewcvs/qemu/hw/vmmouse.c?cvsroot=qemur1=1.2r2=1.3




[Qemu-devel] qemu/hw pc.c pxa2xx.c

2007-05-23 Thread Andrzej Zaborowski
CVSROOT:/sources/qemu
Module name:qemu
Changes by: Andrzej Zaborowski balrog 07/05/23 22:21:27

Modified files:
hw : pc.c pxa2xx.c 

Log message:
Use i2c_slave_init() to allocate the PXA (dummy) I2C slave.
Hush the warning:
hw/pc.c:402: warning: control reaches end of non-void function

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pc.c?cvsroot=qemur1=1.77r2=1.78
http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pxa2xx.c?cvsroot=qemur1=1.11r2=1.12




[Qemu-devel] qemu/hw pc.c

2007-05-20 Thread Thiemo Seufer
CVSROOT:/sources/qemu
Module name:qemu
Changes by: Thiemo Seufer ths 07/05/20 10:59:08

Modified files:
hw : pc.c 

Log message:
Delete now unused define.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pc.c?cvsroot=qemur1=1.75r2=1.76




[Qemu-devel] qemu hw/pc.c pc-bios/Makefile

2007-05-19 Thread Thiemo Seufer
CVSROOT:/sources/qemu
Module name:qemu
Changes by: Thiemo Seufer ths 07/05/19 21:04:38

Modified files:
hw : pc.c 
pc-bios: Makefile 

Log message:
Linux loader rewrite, by H. Peter Anvin.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pc.c?cvsroot=qemur1=1.74r2=1.75
http://cvs.savannah.gnu.org/viewcvs/qemu/pc-bios/Makefile?cvsroot=qemur1=1.1r2=1.2




[Qemu-devel] qemu/hw pc.c

2007-03-31 Thread Paul Brook
CVSROOT:/sources/qemu
Module name:qemu
Changes by: Paul Brook pbrook 07/03/31 19:41:22

Modified files:
hw : pc.c 

Log message:
Large kernel initrd fix (initial patch by Daniel Jacobowitz).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pc.c?cvsroot=qemur1=1.71r2=1.72




[Qemu-devel] qemu/hw pc.c

2006-09-24 Thread Fabrice Bellard
CVSROOT:/sources/qemu
Module name:qemu
Changes by: Fabrice Bellard bellard   06/09/24 18:48:00

Modified files:
hw : pc.c 

Log message:
moved MP table init to BIOS

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pc.c?cvsroot=qemur1=1.61r2=1.62


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


[Qemu-devel] qemu/hw pc.c

2006-05-14 Thread Paul Brook
CVSROOT:/sources/qemu
Module name:qemu
Branch: 
Changes by: Paul Brook [EMAIL PROTECTED]  06/05/14 13:44:07

Modified files:
hw : pc.c 

Log message:
Avoid compiler warning.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/qemu/hw/pc.c.diff?tr1=1.55tr2=1.56r1=textr2=text


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


[Qemu-devel] qemu/hw pc.c

2006-05-01 Thread Fabrice Bellard
CVSROOT:/sources/qemu
Module name:qemu
Branch: 
Changes by: Fabrice Bellard [EMAIL PROTECTED] 06/05/01 12:31:24

Modified files:
hw : pc.c 

Log message:
increase max kernel size with initrd

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemu/qemu/hw/pc.c.diff?tr1=1.52tr2=1.53r1=textr2=text


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


[Qemu-devel] qemu/hw pc.c

2005-11-21 Thread Fabrice Bellard
CVSROOT:/cvsroot/qemu
Module name:qemu
Branch: 
Changes by: Fabrice Bellard [EMAIL PROTECTED] 05/11/21 23:34:32

Modified files:
hw : pc.c 

Log message:
SMP support - cpu_single_env usage fix - a20 helpers - dynamic Multi 
Processor BIOS table generation

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/hw/pc.c.diff?tr1=1.45tr2=1.46r1=textr2=text



___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


Re: [Qemu-devel] qemu/hw pc.c

2005-11-21 Thread Hetz Ben Hamo
 Log message:
SMP support - cpu_single_env usage fix - a20 helpers - dynamic Multi 
 Processor BIOS table generation

Care for sharing Some explanation to what you added and how to use it please? :)

Thanks,
Hetz


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


[Qemu-devel] qemu/hw pc.c

2005-06-05 Thread Fabrice Bellard
CVSROOT:/cvsroot/qemu
Module name:qemu
Branch: 
Changes by: Fabrice Bellard [EMAIL PROTECTED] 05/06/05 14:51:11

Modified files:
hw : pc.c 

Log message:
PC machine support

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/hw/pc.c.diff?tr1=1.35tr2=1.36r1=textr2=text



___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


Re: [Qemu-devel] qemu/hw pc.c

2005-06-05 Thread Hetz Ben Hamo
Hi Fabrice,

 Log message:
PC machine support

Care to explain what this means? :)

Thanks,
Hetz


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


Re: [Qemu-devel] qemu/hw pc.c

2005-06-05 Thread Fabrice Bellard

Hetz Ben Hamo wrote:

Hi Fabrice,



Log message:
  PC machine support



Care to explain what this means? :)


I'll update the documentation. The idea is that you can select the 
machine you want to emulate with the -M option. For x86 it is not an 
issue because there is a single machine now. But maybe -isa could be 
suppressed and a new machine called isapc could be added.


Fabrice.


___
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel