mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 11:36:51 +07:00
2934167dd0
All obstacles are out of the way by now, so we can finally move realview to multiplatform. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Cc: Russell King <linux@arm.linux.org.uk> [Rebased Kconfig, fixed if $(X) to if X in Makefile] Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
19 lines
594 B
Makefile
19 lines
594 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
ccflags-$(CONFIG_ARCH_MULTIPLATFORM) := -I$(srctree)/$(src)/include \
|
|
-I$(srctree)/arch/arm/plat-versatile/include
|
|
|
|
|
|
obj-$(CONFIG_REALVIEW_DT) += realview-dt.o platsmp-dt.o
|
|
obj-y := core.o
|
|
ifdef CONFIG_ATAGS
|
|
obj-$(CONFIG_MACH_REALVIEW_EB) += realview_eb.o
|
|
obj-$(CONFIG_MACH_REALVIEW_PB11MP) += realview_pb11mp.o
|
|
obj-$(CONFIG_MACH_REALVIEW_PB1176) += realview_pb1176.o
|
|
obj-$(CONFIG_MACH_REALVIEW_PBA8) += realview_pba8.o
|
|
obj-$(CONFIG_MACH_REALVIEW_PBX) += realview_pbx.o
|
|
endif
|
|
obj-$(CONFIG_SMP) += platsmp.o
|
|
obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o
|