Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull EFI fixes from Ingo Molnar:
"Add Ard Biesheuvel as EFI co-maintainer, plus fix an ARM build bug
with older toolchains"

* 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
efi/arm: Fix absolute relocation detection for older toolchains
MAINTAINERS: Add myself as EFI maintainer

+5 -3
+2 -1
MAINTAINERS
··· 4620 4620 4621 4621 EXTENSIBLE FIRMWARE INTERFACE (EFI) 4622 4622 M: Matt Fleming <matt@codeblueprint.co.uk> 4623 + M: Ard Biesheuvel <ard.biesheuvel@linaro.org> 4623 4624 L: linux-efi@vger.kernel.org 4624 - T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git 4625 + T: git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git 4625 4626 S: Maintained 4626 4627 F: Documentation/efi-stub.txt 4627 4628 F: arch/ia64/kernel/efi.c
+3 -2
drivers/firmware/efi/libstub/Makefile
··· 11 11 -mno-mmx -mno-sse 12 12 13 13 cflags-$(CONFIG_ARM64) := $(subst -pg,,$(KBUILD_CFLAGS)) 14 - cflags-$(CONFIG_ARM) := $(subst -pg,,$(KBUILD_CFLAGS)) \ 14 + cflags-$(CONFIG_ARM) := $(subst -pg,,$(KBUILD_CFLAGS)) -g0 \ 15 15 -fno-builtin -fpic -mno-single-pic-base 16 16 17 17 cflags-$(CONFIG_EFI_ARMSTUB) += -I$(srctree)/scripts/dtc/libfdt ··· 79 79 # decompressor. So move our .data to .data.efistub, which is preserved 80 80 # explicitly by the decompressor linker script. 81 81 # 82 - STUBCOPY_FLAGS-$(CONFIG_ARM) += --rename-section .data=.data.efistub 82 + STUBCOPY_FLAGS-$(CONFIG_ARM) += --rename-section .data=.data.efistub \ 83 + -R ___ksymtab+sort -R ___kcrctab+sort 83 84 STUBCOPY_RELOC-$(CONFIG_ARM) := R_ARM_ABS