SDK for building and maintaining TrenchBoot patches for GRUB2, Xen and Linux kernel.
Clone GRUB2 repository:
git clone https://github.com/TrenchBoot/grub.git -b intel-txt-mb2Run TrenchBoot SDK container:
docker run --rm -it -v $PWD/grub:/home/trenchboot/grub \
-w /home/trenchboot/grub \
ghcr.io/trenchboot/trenchboot-sdk:master /bin/bashPrepare GRUB2 compilation:
./bootstrap && ./autogen.shCreate build directory:
mkdir -p build && cd buildConfigure:
../configure --disable-werror --prefix=$PWD/localCompile:
makeClone Xen repository:
git clone https://github.com/3mdeb/xen.git -b tb-xen-txtRun TrenchBoot SDK container:
docker run --rm -it -v $PWD/xen:/home/trenchboot/xen \
-w /home/trenchboot/xen \
ghcr.io/trenchboot/trenchboot-sdk:master /bin/bashCompile:
make build-xen