Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 99e08374 authored by Luis Alves's avatar Luis Alves Committed by Greg Ungerer
Browse files

m68knommu: platform code merge for 68000 core cpus



This patch merges all 68000 core cpus into one directory.
There is a lot of common code in the 68328, 68EZ328 and 68VZ328 directories.

This will also facilitate easy development of support for original stand
alone MC68000 CPU machines.

Signed-off-by: default avatarLuis Alves <ljalvs@gmail.com>
Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
parent b69f0859
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ endif
head-y				:= arch/m68k/kernel/head.o
head-$(CONFIG_SUN3)		:= arch/m68k/kernel/sun3-head.o
head-$(CONFIG_M68360)		:= arch/m68k/platform/68360/head.o
head-$(CONFIG_M68000)		:= arch/m68k/platform/68328/head.o
head-$(CONFIG_M68000)		:= arch/m68k/platform/68000/head.o
head-$(CONFIG_COLDFIRE)		:= arch/m68k/platform/coldfire/head.o

core-y				+= arch/m68k/kernel/	arch/m68k/mm/
@@ -114,9 +114,7 @@ core-$(CONFIG_M68040) += arch/m68k/fpsp040/
core-$(CONFIG_M68060)		+= arch/m68k/ifpsp060/
core-$(CONFIG_M68KFPU_EMU)	+= arch/m68k/math-emu/
core-$(CONFIG_M68360)		+= arch/m68k/platform/68360/
core-$(CONFIG_M68000)		+= arch/m68k/platform/68328/
core-$(CONFIG_M68EZ328)		+= arch/m68k/platform/68EZ328/
core-$(CONFIG_M68VZ328)		+= arch/m68k/platform/68VZ328/
core-$(CONFIG_M68000)		+= arch/m68k/platform/68000/
core-$(CONFIG_COLDFIRE)		+= arch/m68k/platform/coldfire/


+18 −0
Original line number Diff line number Diff line
##################################################
#
# 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
obj-$(CONFIG_M68328)	+= m68328.o
obj-$(CONFIG_M68EZ328)	+= m68EZ328.o
obj-$(CONFIG_M68VZ328)	+= m68VZ328.o
obj-$(CONFIG_ROM)	+= romvec.o

extra-y 		:= head.o
Loading