Makefile (d822d2a1e33144967b01f9535ce217639aa75279) Makefile (6211753fdfd05af9e08f54c8d0ba3ee516034878)
1#
2# arch/arm64/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies.
6#
7# This file is subject to the terms and conditions of the GNU General Public
8# License. See the file "COPYING" in the main directory of this archive

--- 23 unchanged lines hidden (view full) ---

32head-y := arch/arm64/kernel/head.o
33
34# The byte offset of the kernel image in RAM from the start of RAM.
35TEXT_OFFSET := 0x00080000
36
37export TEXT_OFFSET GZFLAGS
38
39core-y += arch/arm64/kernel/ arch/arm64/mm/
1#
2# arch/arm64/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies.
6#
7# This file is subject to the terms and conditions of the GNU General Public
8# License. See the file "COPYING" in the main directory of this archive

--- 23 unchanged lines hidden (view full) ---

32head-y := arch/arm64/kernel/head.o
33
34# The byte offset of the kernel image in RAM from the start of RAM.
35TEXT_OFFSET := 0x00080000
36
37export TEXT_OFFSET GZFLAGS
38
39core-y += arch/arm64/kernel/ arch/arm64/mm/
40core-$(CONFIG_XEN) += arch/arm64/xen/
40core-$(CONFIG_KVM) += arch/arm64/kvm/
41libs-y := arch/arm64/lib/ $(libs-y)
42libs-y += $(LIBGCC)
43
44# Default target when executing plain make
45KBUILD_IMAGE := Image.gz
46KBUILD_DTBS := dtbs
47
48all: $(KBUILD_IMAGE) $(KBUILD_DTBS)

--- 29 unchanged lines hidden ---
41libs-y := arch/arm64/lib/ $(libs-y)
42libs-y += $(LIBGCC)
43
44# Default target when executing plain make
45KBUILD_IMAGE := Image.gz
46KBUILD_DTBS := dtbs
47
48all: $(KBUILD_IMAGE) $(KBUILD_DTBS)

--- 29 unchanged lines hidden ---