2011-06-21 14:03:30 +10:00
#
# m68k/Makefile
#
# This file is included by the global makefile so that you can add your own
2021-10-13 15:36:22 +09:00
# architecture-specific flags and dependencies.
2011-06-21 14:03:30 +10:00
#
# 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 21:16:14 +02:00
KBUILD_DEFCONFIG := multi_defconfig
2008-04-04 14:57:38 +02:00
2021-05-02 02:24:36 +09:00
i f d e f c r o s s _ c o m p i l i n g
2012-05-12 22:14:36 +02:00
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 14:03:30 +10: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
2020-05-26 21:38:09 +09:00
cpuflags-$(CONFIG_M68060) = -m68060
2011-06-21 14:03:30 +10:00
e n d i f
i f n d e f C O N F I G _ M 6 8 0 6 0
2020-05-26 21:38:09 +09:00
cpuflags-$(CONFIG_M68040) = -m68040
2011-06-21 14:03:30 +10:00
e n d i f
2020-05-26 21:38:09 +09:00
cpuflags-$(CONFIG_M68030) =
cpuflags-$(CONFIG_M68020) =
cpuflags-$(CONFIG_M68000) = -m68000
cpuflags-$(CONFIG_M5441x) = $( call cc-option,-mcpu= 54455,-mcfv4e)
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)
cpuflags-$(CONFIG_M537x) = $( call cc-option,-mcpu= 537x,-m5307)
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)
cpuflags-$(CONFIG_M525x) = $( call cc-option,-mcpu= 5253,-m5200)
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)
# Evaluate tune cc-option calls now
cpuflags-y := $( cpuflags-y)
2011-06-21 14:03:30 +10:00
KBUILD_AFLAGS += $( cpuflags-y)
2019-01-16 16:23:24 +11:00
KBUILD_CFLAGS += $( cpuflags-y)
KBUILD_CFLAGS += -pipe -ffreestanding
2011-03-22 13:39:27 +10:00
i f d e f C O N F I G _ M M U
2021-02-07 18:02:33 +11:00
KBUILD_CFLAGS += -ffixed-a2
2011-06-21 14:03:30 +10:00
e l s e
# we can use a m68k-linux-gcc toolchain with these in place
2020-05-26 21:38:10 +09:00
KBUILD_CPPFLAGS += -DUTS_SYSNAME= \" uClinux\"
KBUILD_CPPFLAGS += -D__uClinux__
2011-06-21 14:03:30 +10:00
e n d i f
2018-08-24 08:20:39 +09:00
KBUILD_LDFLAGS := -m m68kelf
2011-06-21 14:03:30 +10:00
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
libs-y += arch/m68k/lib/
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
kbuild: fix broken builds because of GZIP,BZIP2,LZOP variables
Redefine GZIP, BZIP2, LZOP variables as KGZIP, KBZIP2, KLZOP resp.
GZIP, BZIP2, LZOP env variables are reserved by the tools. The original
attempt to redefine them internally doesn't work in makefiles/scripts
intercall scenarios, e.g., "make GZIP=gzip bindeb-pkg" and results in
broken builds. There can be other broken build commands because of this,
so the universal solution is to use non-reserved env variables for the
compression tools.
Fixes: 8dfb61dcbace ("kbuild: add variables for compression tools")
Signed-off-by: Denis Efremov <efremov@linux.com>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-06-08 12:59:44 +03:00
$( KGZIP) -9c vmlinux.tmp >vmlinux.gz
2011-06-21 14:03:30 +10:00
rm vmlinux.tmp
2005-04-16 15:20:36 -07:00
e l s e
kbuild: fix broken builds because of GZIP,BZIP2,LZOP variables
Redefine GZIP, BZIP2, LZOP variables as KGZIP, KBZIP2, KLZOP resp.
GZIP, BZIP2, LZOP env variables are reserved by the tools. The original
attempt to redefine them internally doesn't work in makefiles/scripts
intercall scenarios, e.g., "make GZIP=gzip bindeb-pkg" and results in
broken builds. There can be other broken build commands because of this,
so the universal solution is to use non-reserved env variables for the
compression tools.
Fixes: 8dfb61dcbace ("kbuild: add variables for compression tools")
Signed-off-by: Denis Efremov <efremov@linux.com>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-06-08 12:59:44 +03:00
$( KGZIP) -9c vmlinux >vmlinux.gz
2005-04-16 15:20:36 -07:00
e n d i f
2011-06-21 14:03:30 +10: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
kbuild: fix broken builds because of GZIP,BZIP2,LZOP variables
Redefine GZIP, BZIP2, LZOP variables as KGZIP, KBZIP2, KLZOP resp.
GZIP, BZIP2, LZOP env variables are reserved by the tools. The original
attempt to redefine them internally doesn't work in makefiles/scripts
intercall scenarios, e.g., "make GZIP=gzip bindeb-pkg" and results in
broken builds. There can be other broken build commands because of this,
so the universal solution is to use non-reserved env variables for the
compression tools.
Fixes: 8dfb61dcbace ("kbuild: add variables for compression tools")
Signed-off-by: Denis Efremov <efremov@linux.com>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-06-08 12:59:44 +03:00
$( KBZIP2) -1c vmlinux.tmp >vmlinux.bz2
2011-06-21 14:03:30 +10:00
rm vmlinux.tmp
e l s e
kbuild: fix broken builds because of GZIP,BZIP2,LZOP variables
Redefine GZIP, BZIP2, LZOP variables as KGZIP, KBZIP2, KLZOP resp.
GZIP, BZIP2, LZOP env variables are reserved by the tools. The original
attempt to redefine them internally doesn't work in makefiles/scripts
intercall scenarios, e.g., "make GZIP=gzip bindeb-pkg" and results in
broken builds. There can be other broken build commands because of this,
so the universal solution is to use non-reserved env variables for the
compression tools.
Fixes: 8dfb61dcbace ("kbuild: add variables for compression tools")
Signed-off-by: Denis Efremov <efremov@linux.com>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2020-06-08 12:59:44 +03:00
$( KBZIP2) -1c vmlinux >vmlinux.bz2
2011-06-21 14:03:30 +10:00
e n d i f
2020-06-17 12:11:53 +09:00
CLEAN_FILES += vmlinux.gz vmlinux.bz2
2011-06-21 14:03:30 +10:00
2018-11-13 11:30:29 +05:30
archheaders :
$( Q) $( MAKE) $( build) = arch/m68k/kernel/syscalls all
2022-05-03 11:47:16 +09:00
install : KBUILD_IMAGE := vmlinux .gz
2011-06-21 14:03:30 +10:00
install :
2022-05-03 11:47:16 +09:00
$( call cmd,install)