summaryrefslogtreecommitdiff
path: root/qemu-support
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-12-17 14:45:24 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-12-17 14:45:24 +0000
commitbeee1ab17b88bbd7e459af9ea95d083714553e1a (patch)
tree77cd30466a358fcae8c2533b87dd7091491fe2c4 /qemu-support
parent8be099817e231371167ee326e6dbf802e72f4bf6 (diff)
2009-12-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* qemu-nic: Increase memory so MicroWindows demos run. Fix typo in NIC name.
Diffstat (limited to 'qemu-support')
-rw-r--r--qemu-support/ChangeLog5
-rwxr-xr-xqemu-support/qemu-nic6
2 files changed, 8 insertions, 3 deletions
diff --git a/qemu-support/ChangeLog b/qemu-support/ChangeLog
index 558b696..5677cca 100644
--- a/qemu-support/ChangeLog
+++ b/qemu-support/ChangeLog
@@ -1,3 +1,8 @@
+2009-12-17 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * qemu-nic: Increase memory so MicroWindows demos run. Fix typo in NIC
+ name.
+
2009-09-30 Joel Sherrill <joel.sherrill@oarcorp.com>
* README.connex, u-boot-connex-400-r1604.bin: New files.
diff --git a/qemu-support/qemu-nic b/qemu-support/qemu-nic
index 1b2a53e..f820969 100755
--- a/qemu-support/qemu-nic
+++ b/qemu-support/qemu-nic
@@ -43,15 +43,15 @@ NIC=
case ${nic} in
# PCI NIC model options that work with RTEMS:
- # i82558er, i82551, i82557b, rtl8139
- i82558er|i82551|i82557b|rtl8139) NIC=${nic};;
+ # i82559er, i82551, i82557b, rtl8139
+ i82559er|i82551|i82557b|rtl8139) NIC=${nic};;
# ISA NIC model: ne2k_isa
ne2k_isa) MODEL="-M isapc" ; NIC=${nic} ;;
none) ;;
*) fatal Unknown NIC ${nic} ;;
esac
-ARGS="${MODEL} -m 8 \
+ARGS="${MODEL} -m 16 \
-boot a -fda ${QEMUDIR}/qemu/pc386_fda \
-hda fat:${QEMUDIR}/qemu/hd --no-reboot"
if [ ${nic} != "none" -a $EUID -eq 0 ] ; then