This repo contains a Dockerfile to create a Docker image for building UEFIPatch 0.28.0 for wasm. It also contains a goofy front end for it.
Hosted at https://uefipatch.virtfunc.com/
Just run
git clone https://github.com/VirtFunc/uefipatchwasm.git
cd uefipatchwasm/src
./build.shTo build the Docker image, run the following:
cd src
docker build -t qt-wasm-builder .This process will take a while as it downloads and compiles both Emscripten and Qt.
docker run -it --rm -v $(pwd):/src qt-wasm-builder /src/build_uefipatch.shdocker ps -a --filter ancestor=qt-wasm-builder
docker rm -f $(docker ps -aq --filter ancestor=qt-wasm-builder) 2>/dev/nulldocker rmi qt-wasm-builderdocker builder prune -fdocker build --no-cache -t qt-wasm-builder .