changeset 723:c0a992ba6caf

Convert i686 target from virtual ne2k to virtual e1000 gigabit adapter.
author Rob Landley <rob@landley.net>
date Mon, 27 Apr 2009 04:30:52 -0500
parents b5c0cf2e7f61
children 3ccce25660f4
files sources/targets/i686/miniconfig-linux sources/targets/i686/settings
diffstat 2 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/sources/targets/i686/miniconfig-linux	Sun Apr 26 19:20:39 2009 -0500
+++ b/sources/targets/i686/miniconfig-linux	Mon Apr 27 04:30:52 2009 -0500
@@ -25,8 +25,8 @@
 CONFIG_BLK_DEV_PIIX=y
 CONFIG_NETDEVICES=y
 CONFIG_NET_ETHERNET=y
-CONFIG_NET_PCI=y
-CONFIG_NE2K_PCI=y
+CONFIG_NETDEV_1000=y
+CONFIG_E1000=y
 CONFIG_SERIAL_8250=y
 CONFIG_SERIAL_8250_CONSOLE=y
 CONFIG_LEGACY_PTYS=y
--- a/sources/targets/i686/settings	Sun Apr 26 19:20:39 2009 -0500
+++ b/sources/targets/i686/settings	Mon Apr 27 04:30:52 2009 -0500
@@ -13,5 +13,6 @@
 
 emulator_command()
 {
-  echo qemu -cpu pentium3 $(qemu_defaults "$@")
+  echo qemu -cpu pentium3 $(qemu_defaults "$@") \
+    -net nic,model=e1000 -net user
 }