Unverified Commit 0f8be481 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

fix: Increase number of USB ports (#728)

parent fd8df645
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ set -Eeuo pipefail
: "${HPET:="off"}"
: "${VMPORT:="off"}"
: "${SERIAL:="mon:stdio"}"
: "${USB:="qemu-xhci,id=xhci"}"
: "${USB:="qemu-xhci,id=xhci,p2=7,p3=7"}"
: "${MONITOR:="telnet:localhost:7100,server,nowait,nodelay"}"
: "${SMP:="$CPU_CORES,sockets=1,dies=1,cores=$CPU_CORES,threads=1"}"

+1 −1
Original line number Diff line number Diff line
@@ -202,7 +202,7 @@ findFile() {
  local fname="boot.$ext"

  if [ -d "/$fname" ]; then
    error "The file /$fname does not exist, please check that you mapped it to a valid path!" && exit 37
    error "The file /$fname does not exist, please make sure that you mapped it to a valid path!" && exit 37
  fi

  file=$(find / -maxdepth 1 -type f -iname "$fname" | head -n 1)