Skip to content

Commit 43a6467

Browse files
authored
Merge pull request torvalds#105 from bgilbert/v4.14-rc8-coreos
Rebase 4.14-rc7 patches onto 4.14-rc8
2 parents 39dae59 + a17abf4 commit 43a6467

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ $(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
143143

144144
# Invoke a second make in the output directory, passing relevant variables
145145
sub-make:
146-
$(Q)$(MAKE) -C $(KBUILD_OUTPUT) KBUILD_SRC=$(CURDIR) \
146+
$(Q)$(MAKE) -C $(KBUILD_OUTPUT) \
147+
KBUILD_SRC=$(shell realpath --relative-to=$(KBUILD_OUTPUT) $(CURDIR)) \
147148
-f $(CURDIR)/Makefile $(filter-out _all sub-make,$(MAKECMDGOALS))
148149

149150
# Leave processing to above invocation of make

arch/arm64/kernel/efi-header.S

+5
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,11 @@ section_table:
103103

104104
.set section_count, (. - section_table) / 40
105105

106+
/* CoreOS 64 byte verity hash value. */
107+
.org _head + 512
108+
.ascii "verity-hash"
109+
.org _head + 512 + 64
110+
106111
#ifdef CONFIG_DEBUG_EFI
107112
/*
108113
* The debug table is referenced via its Relative Virtual Address (RVA),

0 commit comments

Comments
 (0)