Explorar el Código

fix: add smp boot option to qemu run

greatbridf hace 3 semanas
padre
commit
980f18bf51
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Makefile.src

+ 1 - 1
Makefile.src

@@ -4,7 +4,7 @@ GDB_BIN=##PLACEHOLDER_2##
 QEMU_ACCELERATION_FLAG=##PLACEHOLDER_3##
 QEMU_DEBUG_FLAG=#-d cpu_reset,int
 QEMU_ARGS=-machine q35 -drive id=disk,file=build/boot.img,format=raw,if=none \
-	-device ahci,id=ahci -device ide-hd,drive=disk,bus=ahci.0 \
+	-device ahci,id=ahci -device ide-hd,drive=disk,bus=ahci.0 -smp 4 \
 	-no-reboot -no-shutdown $(QEMU_ACCELERATION_FLAG) $(QEMU_DEBUG_FLAG)
 
 CROSS_COMPILE=##PLACEHOLDER_4##