mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
0462b4477e
Realview and Versatile Express share the same SMP bringup code, so consolidate the two implementations. Acked-by: Catalin Marinas <catalin.marinas@arm.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
13 lines
395 B
Makefile
13 lines
395 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
obj-y := core.o
|
|
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
|
|
obj-$(CONFIG_SMP) += platsmp.o
|
|
obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o
|