mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
8b22820efb
Building a kernel with multiple dragonball based boards enabled needlessly causes a link failure because of duplicate config_BSP() functions between the CPU versions. Avoid that merging the three almost identical files into one, and hiding the CPU configuration behind the board config. The pr_info() lines are consolidated in one place. It is still not possible to run a kernel configured for more than one board, but at least configurations that can be selected can also be built now. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Greg Ungerer <gerg@linux-m68k.org>
21 lines
493 B
Makefile
21 lines
493 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
##################################################
|
|
#
|
|
# Makefile for 68000 core based cpus
|
|
#
|
|
# 2012.10.21, Luis Alves <ljalvs@gmail.com>
|
|
# Merged all 68000 based cpu's config
|
|
# files into a single directory.
|
|
#
|
|
|
|
# 68328, 68EZ328, 68VZ328
|
|
|
|
obj-y += entry.o ints.o timers.o m68328.o
|
|
obj-$(CONFIG_ROM) += romvec.o
|
|
|
|
obj-$(CONFIG_DRAGEN2) += dragen2.o
|
|
obj-$(CONFIG_UCSIMM) += ucsimm.o
|
|
obj-$(CONFIG_UCDIMM) += ucsimm.o
|
|
|
|
extra-y := head.o
|