Unverified Commit 47d2d229 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

feat: Faster ESD extraction (#484)

parent f7986f57
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -523,7 +523,7 @@ extractESD() {
  local msg="Extracting $desc environment..."
  info "$msg" && html "$msg"

  wimlib-imagex export "$iso" 2 "$bootWimFile" --compress=LZX --chunk-size 32K --quiet || {
  wimlib-imagex export "$iso" 2 "$bootWimFile" --compress=none --quiet || {
    retVal=$?
    error "Adding WinPE failed" && return ${retVal}
  }
@@ -531,7 +531,7 @@ extractESD() {
  local msg="Extracting $desc setup..."
  info "$msg" && html "$msg"

  wimlib-imagex export "$iso" 3 "$bootWimFile" --compress=LZX --chunk-size 32K --boot --quiet || {
  wimlib-imagex export "$iso" 3 "$bootWimFile" --compress=none --boot --quiet || {
   retVal=$?
   error "Adding Windows Setup failed" && return ${retVal}
  }
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ ready() {
    return 1
  fi

  local line="Windows Boot Manager"
  local line="\"Windows Boot Manager\""
  if grep -Fq "$line" "$QEMU_PTY"; then
    return 0
  fi