Skip to content
Snippets Groups Projects
Verified Commit 287df06a authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Add QEMU option for rtl8139

parent d05eb5ea
No related branches found
No related tags found
No related merge requests found
......@@ -74,6 +74,10 @@ endif
ifeq ($(net),no)
QEMUFLAGS+=-net none
else ifeq ($(net),rtl8139)
# RTL8139
QEMUFLAGS+=-netdev user,id=net0 -device rtl8139,netdev=net0 \
-object filter-dump,id=f1,netdev=net0,file=$(BUILD)/network.pcap
else
ifneq ($(bridge),)
QEMUFLAGS+=-netdev bridge,br=$(bridge),id=net0 -device e1000,netdev=net0,id=nic0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment