From 102aa50a41d08a69a17b70fd28fd9405415059c6 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 3 Feb 2024 02:40:15 +0200 Subject: [PATCH] BuildSystem: Use E1000E network controller in qemu --- script/qemu.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/script/qemu.sh b/script/qemu.sh index 38d34da8..1c7fc4c7 100755 --- a/script/qemu.sh +++ b/script/qemu.sh @@ -20,9 +20,11 @@ else fi qemu-system-$BANAN_ARCH \ - -m 128 \ + -m 1G \ -smp 2 \ $BIOS_ARGS \ -drive format=raw,id=disk,file=${BANAN_DISK_IMAGE_PATH},if=none \ + -device e1000e,netdev=net \ + -netdev user,id=net \ $DISK_ARGS \ $@ \