The stubby bootloader is a simple UEFI stub that can be combined with a Linux Kernel, initrd, and kernel command line to create a single UEFI application that can be booted directly from UEFI or from the UEFI shim bootloader when running on a UEFI Secure Boot system.
The initial version of stubby was extracted from systemd under the LGPL v2.1+ license. The systemd source repository can be found at URL below.
The "main" branch is for stubby development and there are no guarantees regarding interface and/or application stability. The "stable-X" branches provide a interface stability promise within the branch; release tags will be created within the stable branches for users that wish to target a specific release.
The "stable-1" branch and all v1.y.z tags are for EFI binaries without a SBAT section.
The "stable-2" branch and all v2.y.z tags are for EFI binaries with a SBAT section.
As stubby is intentionally a small and simple tool it has a very limited number of dependencies. Beyond a functional compiler and make tool, you will need the gnu-efi tools/libraries installed on your build system; thankfully most Linux distributions package the gnu-efi project, but if you need to install it you can find it at the URL below.
If all of the dependencies are installed, you should be able to build stubby
simply by running make
. The build process can be configured via the
"make.conf" file.
% make
cc -Wall ... -c -o util.o util.c
cc -Wall ... -c -o disk.o disk.c
cc -Wall ... -c -o pe.o pe.c
cc -Wall ... -c -o linux.o linux.c
cc -Wall ... -c -o stub.o stub.c
ld ... -o stubby.so -lefi -lgnuefi
objcopy -j .text -j .sdata -j .data -j .dynamic \
-j .dynsym -j .rel -j .rela -j .reloc \
--target=efi-app-x86_64 stubby.so stubby.efi
% ls -l stubby.efi
-rwxr-xr-x 1 user users 56K Oct 30 13:48 stubby.efi*
Once you have successfully built stubby.efi
you can combine it with your
Linux Kernel, initrd, and command line using the included script as shown
below:
% ./stubby-smash.2.sh -h
usage: stubby-smash.2.sh -o <output>
-k <kernel> -i <initrd> -c <cmdline> -s <SBAT>
Combine the <kernel>, <initrd>, <cmdline>, and <SBAT> files
into a single bootable EFI app in <output>.
The resulting output artifact is suitable for booting directly from UEFI and
can optionally be signed using sbsign
or pesign
for use on a UEFI Secure
Boot system.
Problems with the project can be reported using the GitHub issue tracking system. Those who wish to privately report potential vulnerabilities should follow the directions in the SECURITY file.