Skip to content

Commit 18180d4

Browse files
authored
Merge pull request torvalds#103 from bgilbert/v4.14-rc7-coreos
Rebase 4.13.10 patches onto 4.14-rc7
2 parents 0b07194 + 62e678f commit 18180d4

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
@@ -142,7 +142,8 @@ $(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
142142

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

148149
# 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)