blob: d8f3effd7d04b88a4e74d8710cf6c531cec4bc5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
VERSION=7
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 \
-ggdb -O0 \
-fpic \
-fshort-wchar \
-nostdinc \
-ffreestanding \
-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
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
|