blob: d112ee63cde411848dc84a7e6a3b4b2a84bf738f (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
VERSION=22
ifeq ($(strip $(V)),)
E = @echo
Q = @
else
E = @\#
Q =
endif
export E Q
ARCH=$(shell $(CC) -dumpmachine | sed "s/\(-\).*$$//")
LIBDIR=$(shell echo $$(cd /usr/lib/$$(gcc -print-multi-os-directory); pwd))
LIBEFIDIR=$(or $(wildcard $(LIBDIR)/gnuefi), $(LIBDIR))
ifeq ($(ARCH),i686)
ARCH=ia32
MACHINE_TYPE_NAME=ia32
endif
ifeq ($(ARCH),x86_64)
MACHINE_TYPE_NAME=x64
ARCH_CFLAGS= \
-DEFI_FUNCTION_WRAPPER \
-mno-red-zone
endif
all: gummiboot$(MACHINE_TYPE_NAME).efi gummiboot
# ------------------------------------------------------------------------------
CPPFLAGS = \
-I. \
-I/usr/include/efi \
-I/usr/include/efi/$(ARCH)
CFLAGS = \
-DVERSION=$(VERSION) \
-Wall \
-Wextra \
-nostdinc \
-ggdb -O0 \
-fpic \
-fshort-wchar \
-nostdinc \
-ffreestanding \
-fno-strict-aliasing \
-fno-stack-protector \
-Wsign-compare \
$(ARCH_CFLAGS)
LDFLAGS = -T $(LIBEFIDIR)/elf_$(ARCH)_efi.lds \
-shared \
-Bsymbolic \
-nostdlib \
-znocombreloc \
-L $(LIBDIR) \
$(LIBEFIDIR)/crt0-efi-$(ARCH).o
%.o: %.c
$(E) " CC " $@
$(Q) $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
src/efi/gummiboot.o: src/efi/gummiboot.c Makefile
src/efi/gummiboot.so: src/efi/gummiboot.o
$(E) " LD " $@
$(Q) $(LD) $(LDFLAGS) src/efi/gummiboot.o -o $@ -lefi -lgnuefi \
$(shell $(CC) -print-libgcc-file-name)
gummiboot$(MACHINE_TYPE_NAME).efi: src/efi/gummiboot.so
$(E) " OBJCOPY " $@
$(Q) 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: src/setup/setup.c src/setup/efivars.h src/setup/efivars.c Makefile
$(E) " CCLD " $@
$(Q) $(CC) -O0 -g -Wall -Wextra \
-Wno-unused-parameter -D_GNU_SOURCE \
-DMACHINE_TYPE_NAME=\"$(MACHINE_TYPE_NAME)\" \
`pkg-config --cflags --libs blkid` \
src/setup/setup.c \
src/setup/efivars.c \
-o $@
# ------------------------------------------------------------------------------
man: gummiboot.1
gummiboot.1: src/setup/gummiboot.xml
$(E) " XSLT " $@
$(Q) xsltproc -o @ --nonet \
--stringparam man.output.quietly 1 \
--stringparam man.th.extra1.suppress 1 \
--stringparam man.authors.section.enabled 0 \
--stringparam man.copyright.section.enabled 0 \
http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
# ------------------------------------------------------------------------------
clean:
rm -f src/efi/gummiboot.o src/efi/gummiboot.so gummiboot gummiboot$(MACHINE_TYPE_NAME).efi
install: all
mkdir -p $(DESTDIR)/usr/bin/
cp gummiboot $(DESTDIR)/usr/bin
mkdir -p $(DESTDIR)/usr/lib/gummiboot/
cp gummiboot$(MACHINE_TYPE_NAME).efi $(DESTDIR)/usr/lib/gummiboot/
[ -e gummiboot.1 ] && mkdir -p $(DESTDIR)/usr/share/man/man1/ && cp gummiboot.1 $(DESTDIR)/usr/share/man/man1/ || :
tar:
git archive --format=tar --prefix=gummiboot-$(VERSION)/ $(VERSION) | xz > gummiboot-$(VERSION).tar.xz
test-disk: gummiboot$(MACHINE_TYPE_NAME).efi test/test-create-disk.sh
test/test-create-disk.sh
test: test-disk
qemu-kvm -m 256 -L /usr/lib/qemu-bios -snapshot test-disk
|