1. 28 8月, 2009 31 次提交
  2. 27 8月, 2009 1 次提交
  3. 26 8月, 2009 5 次提交
  4. 25 8月, 2009 1 次提交
  5. 24 8月, 2009 2 次提交
    • A
      Make the e1000 the default network adapter for the pc target. · 0d6b0b1d
      Anthony Liguori 提交于
      The ne2k is an ancient card that performs pretty terribly under QEMU.  In many
      modern OSes, there is no longer drivers available for the ne2k.
      
      Switch the default network adapter to e1000.  This card is more widely
      suppported and performs rather well under QEMU.  There may be very old OSes
      that had a ne2k driver but not an e1000 driver but I think this is likely the
      exception.
      
      I think the average user is better served with an e1000 vs ne2k.
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      0d6b0b1d
    • N
      eliminate errors about unused results in block/vpc.c · 5ec4d682
      Nathan Froyd 提交于
      These errors come up when compiling with gcc-4.3.3 and some older headers:
      
      /scratch/froydnj/qemu.git/block/vpc.c: In function 'vpc_create':
      /scratch/froydnj/qemu.git/block/vpc.c:514: error: value computed is not used
      /scratch/froydnj/qemu.git/block/vpc.c:516: error: value computed is not used
      /scratch/froydnj/qemu.git/block/vpc.c:517: error: value computed is not used
      /scratch/froydnj/qemu.git/block/vpc.c:566: error: value computed is not used
      
      Use memcpy to copy the strings instead of strncpy.
      Signed-off-by: NNathan Froyd <froydnj@codesourcery.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      5ec4d682