Makefile (c37fe6aff89cb0d842993fe2f69e48bf3ebe0ab0) Makefile (d92cc4d5164398cc6d191084b46e622976c0ba89)
1# This file is included by the global makefile so that you can add your own
2# architecture-specific flags and dependencies. Remember to do have actions
3# for "archclean" and "archdep" for cleaning up and making dependencies for
4# this architecture
5#
6# This file is subject to the terms and conditions of the GNU General Public
7# License. See the file "COPYING" in the main directory of this archive
8# for more details.

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

85ifeq ($(CONFIG_XIP_KERNEL),y)
86KBUILD_IMAGE := $(boot)/xipImage
87else
88KBUILD_IMAGE := $(boot)/Image.gz
89endif
90
91head-y := arch/riscv/kernel/head.o
92
1# This file is included by the global makefile so that you can add your own
2# architecture-specific flags and dependencies. Remember to do have actions
3# for "archclean" and "archdep" for cleaning up and making dependencies for
4# this architecture
5#
6# This file is subject to the terms and conditions of the GNU General Public
7# License. See the file "COPYING" in the main directory of this archive
8# for more details.

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

85ifeq ($(CONFIG_XIP_KERNEL),y)
86KBUILD_IMAGE := $(boot)/xipImage
87else
88KBUILD_IMAGE := $(boot)/Image.gz
89endif
90
91head-y := arch/riscv/kernel/head.o
92
93core-y += arch/riscv/
94core-$(CONFIG_RISCV_ERRATA_ALTERNATIVE) += arch/riscv/errata/
95
96libs-y += arch/riscv/lib/
97libs-$(CONFIG_EFI_STUB) += $(objtree)/drivers/firmware/efi/libstub/lib.a
98
99PHONY += vdso_install
100vdso_install:
101 $(Q)$(MAKE) $(build)=arch/riscv/kernel/vdso $@

--- 24 unchanged lines hidden ---
93core-$(CONFIG_RISCV_ERRATA_ALTERNATIVE) += arch/riscv/errata/
94
95libs-y += arch/riscv/lib/
96libs-$(CONFIG_EFI_STUB) += $(objtree)/drivers/firmware/efi/libstub/lib.a
97
98PHONY += vdso_install
99vdso_install:
100 $(Q)$(MAKE) $(build)=arch/riscv/kernel/vdso $@

--- 24 unchanged lines hidden ---