2011-06-21 08:03:30 +04:00
#
# m68k/Makefile
#
# This file is included by the global makefile so that you can add your own
# architecture-specific flags and dependencies. Remember to do have actions
# for "archclean" and "archdep" for cleaning up and making dependencies for
# this architecture
#
# This file is subject to the terms and conditions of the GNU General Public
# License. See the file "COPYING" in the main directory of this archive
# for more details.
#
# Copyright (C) 1994 by Hamish Macdonald
# Copyright (C) 2002,2011 Greg Ungerer <gerg@snapgear.com>
#
2008-07-17 23:16:14 +04:00
KBUILD_DEFCONFIG := multi_defconfig
2008-04-04 16:57:38 +04:00
2012-05-13 00:14:36 +04:00
i f n e q ( $( SUBARCH ) , $( ARCH ) )
ifeq ( $( CROSS_COMPILE) ,)
CROSS_COMPILE := $( call cc-cross-prefix, \
m68k-linux-gnu- m68k-linux- m68k-unknown-linux-gnu-)
endif
e n d i f
2011-06-21 08:03:30 +04:00
#
# Enable processor type. Ordering of these is important - we want to
# use the minimum processor type of the range we support. The logic
# for 680x0 will only allow use of the -m68060 or -m68040 if no other
# 680x0 type is specified - and no option is specified for 68030 or
# 68020. The other m68k/ColdFire types always specify some type of
# compiler cpu type flag.
#
i f n d e f C O N F I G _ M 6 8 0 4 0
cpuflags-$(CONFIG_M68060) := -m68060
e n d i f
i f n d e f C O N F I G _ M 6 8 0 6 0
cpuflags-$(CONFIG_M68040) := -m68040
e n d i f
cpuflags-$(CONFIG_M68030) :=
cpuflags-$(CONFIG_M68020) :=
cpuflags-$(CONFIG_M68360) := -m68332
cpuflags-$(CONFIG_M68000) := -m68000
2012-06-07 01:28:31 +04:00
cpuflags-$(CONFIG_M5441x) := $( call cc-option,-mcpu= 54455,-mcfv4e)
2011-06-21 08:03:30 +04:00
cpuflags-$(CONFIG_M54xx) := $( call cc-option,-mcpu= 5475,-m5200)
cpuflags-$(CONFIG_M5407) := $( call cc-option,-mcpu= 5407,-m5200)
cpuflags-$(CONFIG_M532x) := $( call cc-option,-mcpu= 532x,-m5307)
2012-11-05 09:32:15 +04:00
cpuflags-$(CONFIG_M537x) := $( call cc-option,-mcpu= 537x,-m5307)
2011-06-21 08:03:30 +04:00
cpuflags-$(CONFIG_M5307) := $( call cc-option,-mcpu= 5307,-m5200)
cpuflags-$(CONFIG_M528x) := $( call cc-option,-mcpu= 528x,-m5307)
cpuflags-$(CONFIG_M5275) := $( call cc-option,-mcpu= 5275,-m5307)
cpuflags-$(CONFIG_M5272) := $( call cc-option,-mcpu= 5272,-m5307)
cpuflags-$(CONFIG_M5271) := $( call cc-option,-mcpu= 5271,-m5307)
cpuflags-$(CONFIG_M523x) := $( call cc-option,-mcpu= 523x,-m5307)
2012-06-05 19:23:08 +04:00
cpuflags-$(CONFIG_M525x) := $( call cc-option,-mcpu= 5253,-m5200)
2011-06-21 08:03:30 +04:00
cpuflags-$(CONFIG_M5249) := $( call cc-option,-mcpu= 5249,-m5200)
cpuflags-$(CONFIG_M520x) := $( call cc-option,-mcpu= 5208,-m5200)
cpuflags-$(CONFIG_M5206e) := $( call cc-option,-mcpu= 5206e,-m5200)
cpuflags-$(CONFIG_M5206) := $( call cc-option,-mcpu= 5206,-m5200)
KBUILD_AFLAGS += $( cpuflags-y)
KBUILD_CFLAGS += $( cpuflags-y) -pipe
2011-03-22 06:39:27 +03:00
i f d e f C O N F I G _ M M U
2011-06-21 08:03:30 +04:00
# without -fno-strength-reduce the 53c7xx.c driver fails ;-(
KBUILD_CFLAGS += -fno-strength-reduce -ffixed-a2
e l s e
# we can use a m68k-linux-gcc toolchain with these in place
KBUILD_CFLAGS += -DUTS_SYSNAME= \" uClinux\"
KBUILD_CFLAGS += -D__uClinux__
KBUILD_AFLAGS += -D__uClinux__
e n d i f
LDFLAGS := -m m68kelf
KBUILD_LDFLAGS_MODULE += -T $( srctree) /arch/m68k/kernel/module.lds
i f d e f C O N F I G _ S U N 3
LDFLAGS_vmlinux = -N
e n d i f
CHECKFLAGS += -D__mc68000__
i f d e f C O N F I G _ K G D B
# If configured for kgdb support, include debugging infos and keep the
# frame pointer
KBUILD_CFLAGS := $( subst -fomit-frame-pointer,,$( KBUILD_CFLAGS) ) -g
e n d i f
#
# Select the assembler head startup code. Order is important. The default
# head code is first, processor specific selections can override it after.
#
head-y := arch/m68k/kernel/head.o
head-$(CONFIG_SUN3) := arch/m68k/kernel/sun3-head.o
2014-08-21 16:02:10 +04:00
head-$(CONFIG_M68360) := arch/m68k/68360/head.o
2014-08-21 15:53:51 +04:00
head-$(CONFIG_M68000) := arch/m68k/68000/head.o
2014-08-19 05:39:09 +04:00
head-$(CONFIG_COLDFIRE) := arch/m68k/coldfire/head.o
2011-06-21 08:03:30 +04:00
core-y += arch/m68k/kernel/ arch/m68k/mm/
libs-y += arch/m68k/lib/
core-$(CONFIG_Q40) += arch/m68k/q40/
core-$(CONFIG_AMIGA) += arch/m68k/amiga/
core-$(CONFIG_ATARI) += arch/m68k/atari/
core-$(CONFIG_MAC) += arch/m68k/mac/
core-$(CONFIG_HP300) += arch/m68k/hp300/
core-$(CONFIG_APOLLO) += arch/m68k/apollo/
core-$(CONFIG_MVME147) += arch/m68k/mvme147/
core-$(CONFIG_MVME16x) += arch/m68k/mvme16x/
core-$(CONFIG_BVME6000) += arch/m68k/bvme6000/
core-$(CONFIG_SUN3X) += arch/m68k/sun3x/ arch/m68k/sun3/
core-$(CONFIG_SUN3) += arch/m68k/sun3/ arch/m68k/sun3/prom/
core-$(CONFIG_NATFEAT) += arch/m68k/emu/
core-$(CONFIG_M68040) += arch/m68k/fpsp040/
core-$(CONFIG_M68060) += arch/m68k/ifpsp060/
core-$(CONFIG_M68KFPU_EMU) += arch/m68k/math-emu/
2014-08-21 16:02:10 +04:00
core-$(CONFIG_M68360) += arch/m68k/68360/
2014-08-21 15:53:51 +04:00
core-$(CONFIG_M68000) += arch/m68k/68000/
2014-08-19 05:39:09 +04:00
core-$(CONFIG_COLDFIRE) += arch/m68k/coldfire/
2011-06-21 08:03:30 +04:00
all : zImage
lilo : vmlinux
if [ -f $( INSTALL_PATH) /vmlinux ] ; then mv -f $( INSTALL_PATH) /vmlinux $( INSTALL_PATH) /vmlinux.old; fi
if [ -f $( INSTALL_PATH) /System.map ] ; then mv -f $( INSTALL_PATH) /System.map $( INSTALL_PATH) /System.old; fi
cat vmlinux > $( INSTALL_PATH) /vmlinux
cp System.map $( INSTALL_PATH) /System.map
if [ -x /sbin/lilo ] ; then /sbin/lilo; else /etc/lilo/install; fi
zImage compressed : vmlinux .gz
vmlinux.gz : vmlinux
i f n d e f C O N F I G _ K G D B
cp vmlinux vmlinux.tmp
$( STRIP) vmlinux.tmp
gzip -9c vmlinux.tmp >vmlinux.gz
rm vmlinux.tmp
2005-04-17 02:20:36 +04:00
e l s e
2011-06-21 08:03:30 +04:00
gzip -9c vmlinux >vmlinux.gz
2005-04-17 02:20:36 +04:00
e n d i f
2011-06-21 08:03:30 +04:00
bzImage : vmlinux .bz 2
vmlinux.bz2 : vmlinux
i f n d e f C O N F I G _ K G D B
cp vmlinux vmlinux.tmp
$( STRIP) vmlinux.tmp
bzip2 -1c vmlinux.tmp >vmlinux.bz2
rm vmlinux.tmp
e l s e
bzip2 -1c vmlinux >vmlinux.bz2
e n d i f
archclean :
rm -f vmlinux.gz vmlinux.bz2
install :
sh $( srctree) /arch/m68k/install.sh $( KERNELRELEASE) vmlinux.gz System.map " $( INSTALL_PATH) "