summaryrefslogtreecommitdiff
path: root/qemu-support
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-01-07 22:57:30 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-01-07 22:57:30 +0000
commitd04ad1fab3851f49d46f574f9ee6f3f4a776fed7 (patch)
treeddf57082851e11dc371315b9cb7b22f1fc9b3d2b /qemu-support
parentb056ff3649eaa51e88535b8d6551463ecfda5227 (diff)
2011-01-07 Joel Sherrill <joel.sherrill@oarcorp.com>
* qemu-nic: Add e1000
Diffstat (limited to 'qemu-support')
-rw-r--r--qemu-support/ChangeLog4
-rwxr-xr-xqemu-support/qemu-nic8
2 files changed, 9 insertions, 3 deletions
diff --git a/qemu-support/ChangeLog b/qemu-support/ChangeLog
index b78e87c..d21c0ba 100644
--- a/qemu-support/ChangeLog
+++ b/qemu-support/ChangeLog
@@ -1,3 +1,7 @@
+2011-01-07 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * qemu-nic: Add e1000
+
2010-06-07 Joel Sherrill <joel.sherrill@oarcorp.com>
* README, pc386_fda.bz2: Update to version with bootloader arguments
diff --git a/qemu-support/qemu-nic b/qemu-support/qemu-nic
index cd83305..828d16b 100755
--- a/qemu-support/qemu-nic
+++ b/qemu-support/qemu-nic
@@ -15,7 +15,7 @@ fatal()
echo $*
echo "Usage: [-v] [-n NIC]"
echo ""
- echo "Supported NICs: i82559er i82551 i82557b rtl8139 ne2k_isa"
+ echo "Supported NICs: e1000 i82559er i82551 i82557b rtl8139 ne2k_isa"
exit 1
}
@@ -45,8 +45,10 @@ NIC=
case ${nic} in
# PCI NIC model options that work with RTEMS:
- # i82559er, i82551, i82557b, rtl8139
- i82559er|i82551|i82557b|rtl8139) NIC=${nic};;
+ # fxp: i82559er, i82551, i82557b
+ # rl: rtl8139
+ # em: e1000
+ e1000|i82559er|i82551|i82557b|rtl8139) NIC=${nic};;
# ISA NIC model: ne2k_isa
ne2k_isa) MODEL="-M isapc" ; NIC=${nic} ;;
none) ;;