VERSION=12 ARCH=$(shell $(CC) -dumpmachine | sed "s/\(-\).*$$//") LIBDIR=$(shell echo $$(cd /usr/lib/$$(gcc -print-multi-os-directory); pwd)) LIBEFIDIR=$(or $(wildcard $(LIBDIR)/gnuefi), $(LIBDIR)) CPPFLAGS = \ -I. \ -I/usr/include/efi \ -I/usr/include/efi/$(ARCH) CFLAGS = \ -DVERSION=$(VERSION) \ -Wall \ -nostdinc \ -ggdb -O0 \ -fpic \ -fshort-wchar \ -nostdinc \ -ffreestanding \ -fno-strict-aliasing \ -fno-stack-protector \ -Wsign-compare ifeq ($(ARCH),x86_64) CFLAGS += \ -DEFI_FUNCTION_WRAPPER \ -mno-red-zone endif LDFLAGS = -T $(LIBEFIDIR)/elf_$(ARCH)_efi.lds \ -shared \ -Bsymbolic \ -nostdlib \ -znocombreloc \ -L $(LIBDIR) \ $(LIBEFIDIR)/crt0-efi-$(ARCH).o \ $(shell $(CC) -print-libgcc-file-name) %.o: %.c $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ gummiboot.efi: gummiboot.so objcopy -j .text -j .sdata -j .data -j .dynamic \ -j .dynsym -j .rel -j .rela -j .reloc -j .eh_frame \ --target=efi-app-$(ARCH) $< $@ gummiboot.so: gummiboot.o $(LD) $(LDFLAGS) gummiboot.o -o $@ -lefi -lgnuefi gummiboot.o: gummiboot.c Makefile clean: rm -f gummiboot.o gummiboot.so gummiboot.efi tar: mkdir gummiboot-$(VERSION) cp -l gummiboot.c Makefile loader-postinst.sh README LICENSE gummiboot-$(VERSION) tar -cJf gummiboot-$(VERSION).tar.xz gummiboot-$(VERSION) rm -rf gummiboot-$(VERSION) test: gummiboot.efi @# UUID=677B-ECF2 /boot vfat noauto,umask=0077,x-systemd.automount,x-gvfs-hide 1 2 mkdir -p /boot/EFI/gummiboot/ cp -v gummiboot.efi /boot/EFI/gummiboot/ @# unmount to sync EFI partition to disk sync umount /boot echo 3 > /proc/sys/vm/drop_caches @# run QEMU with UEFI firmware qemu-kvm -m 512 -L /usr/lib/qemu-bios -snapshot /dev/sda