summaryrefslogtreecommitdiff
path: root/Makefile.d/grub-mkstandalone.mk
blob: e2770b10a8aa1593e8dcace9cacea40839abca4f (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
#
#	Copyright (C) 2014 Francis Rowe <info@gluglug.org.uk>
#	Copyright (C) 2014 Luke Shumaker <lukeshu@sbcglobal.net>
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

include resources/utilities/grub-assemble/modules.conf

grub_txtmode_memdisk_grafts = \
	/memtest=src/$(host_arch)/memtest86/memtest \
	/invaders.exec=src/$(host_arch)/grubinvaders/invaders.exec
grub_vesafb_memdisk_grafts = \
	/background.jpg=resources/grub/background/background.jpg \
	/dejavusansmono.pf2=resources/grub/font/dejavusansmono.pf2

grub_txtmode_memdisk_deps = $(foreach graft,$(grub_txtmode_memdisk_grafts),$(lastword $(subst =, ,$(graft))))
grub_vesafb_memdisk_deps  = $(foreach graft,$(grub_vesafb_memdisk_grafts) ,$(lastword $(subst =, ,$(graft))))

# A rule-variable is used here to avoid needing .SECONDEXPANSION
define rule_grub_elf
tmp/grub_%(romtype).elf: \
    tmp/builddeps-stamps/$(host_arch)/grub \
    Makefile.d/keymap-list.mk resources/utilities/grub-assemble/modules.conf \
    resources/grub/config/grub_memdisk.cfg \
    $(grub_%(romtype)_memdisk_deps) \
    $(firstword $(GRUB_MKSTANDALONE)) \
    $(foreach k,$(keymaps),$(keymapdir)/$k.gkb)
	$(GRUB_MKSTANDALONE) -o $@  -O i386-coreboot \
	  --fonts= --themes= --locales=  \
	  --modules='$(grub_modules)' \
	  --install-modules='$(grub_install_modules)' \
	  /boot/grub/grub.cfg="resources/grub/config/grub_memdisk.cfg" \
	  $(grub_%(romtype)_memdisk_grafts) \
	  $(foreach k,$(keymaps),/boot/grub/layouts/$k.gkb=$(keymapdir)/$k.gkb)
	test -e $@
endef
$(eval $(call multiglob,grub_elf,romtype))