19 Jul, 2016

1 commit

  • We currently define OBJCOPYFLAGS in the top-level arm64 Makefile, and
    thus these flags will be passed to all uses of objcopy, kernel-wide, for
    which they are not explicitly overridden. The flags we set are intended
    for converting vmlinux (and ELF) into Image (a raw binary), and thus the
    flags chosen are problematic for some other uses which do not expect a
    raw binary result, e.g. the upcoming lkdtm rodata test:

    http://www.openwall.com/lists/kernel-hardening/2016/06/08/2

    This patch localises the objcopy flags such that they are only used for
    the vmlinux -> Image conversion.

    Signed-off-by: Mark Rutland
    Cc: Will Deacon
    Acked-by: Kees Cook
    Tested-by: Laura Abbott
    Signed-off-by: Catalin Marinas

    Mark Rutland
     

19 Feb, 2016

1 commit


27 Jul, 2015

1 commit

  • Plumb up Makefile arguments for the already supported formats in the kbuild
    system: lz4, bzip2, lzma, and lzo.

    Note that just as with Image.gz, these images are not self-decompressing and
    the booting firmware still needs to handle decompression before launching the
    kernel image.

    Signed-off-by: Olof Johansson
    Signed-off-by: Will Deacon

    Olof Johansson
     

04 Dec, 2012

1 commit

  • The current rules have the .dtb files build in a different directory
    from the .dts files. This patch changes arm64 to use the generic dtb
    rule which builds .dtb files in the same directory as the source .dts.

    This requires moving parts of arch/arm64/boot/Makefile into newly created
    arch/arm64/boot/dts/Makefile, and updating arch/arm64/Makefile to call the
    new Makefile.

    Acked-by: Catalin Marinas
    Cc: linux-arm-kernel@lists.infradead.org
    Signed-off-by: Stephen Warren
    Signed-off-by: Rob Herring

    Stephen Warren
     

17 Sep, 2012

1 commit

  • This patch adds Makefile and Kconfig files required for building an
    AArch64 kernel.

    Signed-off-by: Will Deacon
    Signed-off-by: Catalin Marinas
    Acked-by: Tony Lindgren
    Acked-by: Nicolas Pitre
    Acked-by: Olof Johansson
    Acked-by: Santosh Shilimkar
    Acked-by: Arnd Bergmann

    Catalin Marinas