hc
2023-12-02 57e32c52610e6a560beda60bf33c48f9f42306d5
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
################################################################################
#
# grub2
#
################################################################################
 
GRUB2_VERSION = 2.02
GRUB2_SITE = http://ftp.gnu.org/gnu/grub
GRUB2_SOURCE = grub-$(GRUB2_VERSION).tar.xz
GRUB2_LICENSE = GPL-3.0+
GRUB2_LICENSE_FILES = COPYING
GRUB2_DEPENDENCIES = host-bison host-flex
 
GRUB2_BUILTIN_MODULES = $(call qstrip,$(BR2_TARGET_GRUB2_BUILTIN_MODULES))
GRUB2_BUILTIN_CONFIG = $(call qstrip,$(BR2_TARGET_GRUB2_BUILTIN_CONFIG))
GRUB2_BOOT_PARTITION = $(call qstrip,$(BR2_TARGET_GRUB2_BOOT_PARTITION))
 
ifeq ($(BR2_TARGET_GRUB2_I386_PC),y)
GRUB2_IMAGE = $(BINARIES_DIR)/grub.img
GRUB2_CFG = $(TARGET_DIR)/boot/grub/grub.cfg
GRUB2_PREFIX = ($(GRUB2_BOOT_PARTITION))/boot/grub
GRUB2_TUPLE = i386-pc
GRUB2_TARGET = i386
GRUB2_PLATFORM = pc
else ifeq ($(BR2_TARGET_GRUB2_I386_EFI),y)
GRUB2_IMAGE = $(BINARIES_DIR)/efi-part/EFI/BOOT/bootia32.efi
GRUB2_CFG = $(BINARIES_DIR)/efi-part/EFI/BOOT/grub.cfg
GRUB2_PREFIX = /EFI/BOOT
GRUB2_TUPLE = i386-efi
GRUB2_TARGET = i386
GRUB2_PLATFORM = efi
else ifeq ($(BR2_TARGET_GRUB2_X86_64_EFI),y)
GRUB2_IMAGE = $(BINARIES_DIR)/efi-part/EFI/BOOT/bootx64.efi
GRUB2_CFG = $(BINARIES_DIR)/efi-part/EFI/BOOT/grub.cfg
GRUB2_PREFIX = /EFI/BOOT
GRUB2_TUPLE = x86_64-efi
GRUB2_TARGET = x86_64
GRUB2_PLATFORM = efi
endif
 
# Grub2 is kind of special: it considers CC, LD and so on to be the
# tools to build the native tools (i.e to be executed on the build
# machine), and uses TARGET_CC, TARGET_CFLAGS, TARGET_CPPFLAGS,
# TARGET_LDFLAGS to build the bootloader itself. However, to add to
# the confusion, it also uses NM, OBJCOPY and STRIP to build the
# bootloader itself; none of these are used to build the native
# tools.
#
# NOTE: TARGET_STRIP is overridden by !BR2_STRIP_strip, so always
# use the cross compile variant to ensure grub2 builds
 
GRUB2_CONF_ENV = \
   $(HOST_CONFIGURE_OPTS) \
   CPP="$(HOSTCC) -E" \
   TARGET_CC="$(TARGET_CC)" \
   TARGET_CFLAGS="$(TARGET_CFLAGS) -fno-stack-protector" \
   TARGET_CPPFLAGS="$(TARGET_CPPFLAGS)" \
   TARGET_LDFLAGS="$(TARGET_LDFLAGS)" \
   NM="$(TARGET_NM)" \
   OBJCOPY="$(TARGET_OBJCOPY)" \
   STRIP="$(TARGET_CROSS)strip"
 
GRUB2_CONF_OPTS = \
   --target=$(GRUB2_TARGET) \
   --with-platform=$(GRUB2_PLATFORM) \
   --prefix=/ \
   --exec-prefix=/ \
   --disable-grub-mkfont \
   --enable-efiemu=no \
   ac_cv_lib_lzma_lzma_code=no \
   --enable-device-mapper=no \
   --enable-libzfs=no \
   --disable-werror
 
# We don't want all the native tools and Grub2 modules to be installed
# in the target. So we in fact install everything into the host
# directory, and the image generation process (below) will use the
# grub-mkimage tool and Grub2 modules from the host directory.
 
GRUB2_INSTALL_TARGET_OPTS = DESTDIR=$(HOST_DIR) install
 
ifeq ($(BR2_TARGET_GRUB2_I386_PC),y)
define GRUB2_IMAGE_INSTALL_ELTORITO
   cat $(HOST_DIR)/lib/grub/$(GRUB2_TUPLE)/cdboot.img $(GRUB2_IMAGE) > \
       $(BINARIES_DIR)/grub-eltorito.img
endef
endif
 
define GRUB2_IMAGE_INSTALLATION
   mkdir -p $(dir $(GRUB2_IMAGE))
   $(HOST_DIR)/bin/grub-mkimage \
       -d $(HOST_DIR)/lib/grub/$(GRUB2_TUPLE) \
       -O $(GRUB2_TUPLE) \
       -o $(GRUB2_IMAGE) \
       -p "$(GRUB2_PREFIX)" \
       $(if $(GRUB2_BUILTIN_CONFIG),-c $(GRUB2_BUILTIN_CONFIG)) \
       $(GRUB2_BUILTIN_MODULES)
   mkdir -p $(dir $(GRUB2_CFG))
   $(INSTALL) -D -m 0644 boot/grub2/grub.cfg $(GRUB2_CFG)
   $(GRUB2_IMAGE_INSTALL_ELTORITO)
endef
GRUB2_POST_INSTALL_TARGET_HOOKS += GRUB2_IMAGE_INSTALLATION
 
ifeq ($(GRUB2_PLATFORM),efi)
define GRUB2_EFI_STARTUP_NSH
   echo $(notdir $(GRUB2_IMAGE)) > \
       $(BINARIES_DIR)/efi-part/startup.nsh
endef
GRUB2_POST_INSTALL_TARGET_HOOKS += GRUB2_EFI_STARTUP_NSH
endif
 
$(eval $(autotools-package))