2005-04-17 02:20:36 +04:00
#
# sparc/Makefile
#
# Makefile for the architecture dependent flags and dependencies on the
2008-12-03 10:17:12 +03:00
# Sparc and sparc64.
2005-04-17 02:20:36 +04:00
#
2008-12-03 10:17:12 +03:00
# Copyright (C) 1994,1996,1998 David S. Miller (davem@caip.rutgers.edu)
# Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz)
# We are not yet configured - so test on arch
i f e q ( $( ARCH ) , s p a r c )
KBUILD_DEFCONFIG := sparc32_defconfig
e l s e
KBUILD_DEFCONFIG := sparc64_defconfig
e n d i f
i f e q ( $( CONFIG_SPARC 32) , y )
#####
# sparc32
2005-04-17 02:20:36 +04:00
#
2008-11-17 07:04:20 +03:00
CHECKFLAGS += -D__sparc__
2012-05-15 23:21:55 +04:00
LDFLAGS := -m elf32_sparc
2008-11-17 07:04:20 +03:00
export BITS := 32
2009-12-06 04:17:55 +03:00
UTS_MACHINE := sparc
2005-04-17 02:20:36 +04:00
2012-05-15 23:21:55 +04:00
KBUILD_CFLAGS += -m32 -mcpu= v8 -pipe -mno-fpu -fcall-used-g5 -fcall-used-g7
KBUILD_AFLAGS += -m32 -Wa,-Av8
2005-04-17 02:20:36 +04:00
2008-12-03 10:17:12 +03:00
e l s e
#####
# sparc64
#
2012-05-15 23:21:55 +04:00
CHECKFLAGS += -D__sparc__ -D__sparc_v9__ -D__arch64__ -m64
LDFLAGS := -m elf64_sparc
export BITS := 64
UTS_MACHINE := sparc64
2008-12-03 10:17:12 +03:00
2012-05-15 23:21:55 +04:00
KBUILD_CFLAGS += -m64 -pipe -mno-fpu -mcpu= ultrasparc -mcmodel= medlow
KBUILD_CFLAGS += -ffixed-g4 -ffixed-g5 -fcall-used-g7 -Wno-sign-compare
KBUILD_CFLAGS += -Wa,--undeclared-regs
2008-12-03 10:17:12 +03:00
KBUILD_CFLAGS += $( call cc-option,-mtune= ultrasparc3)
KBUILD_AFLAGS += -m64 -mcpu= ultrasparc -Wa,--undeclared-regs
i f e q ( $( CONFIG_MCOUNT ) , y )
KBUILD_CFLAGS += -pg
e n d i f
e n d i f
2005-04-17 02:20:36 +04:00
2008-12-03 14:11:52 +03:00
head-y := arch/sparc/kernel/head_$( BITS) .o
2008-12-03 10:17:12 +03:00
2012-05-15 23:27:15 +04:00
# See arch/sparc/Kbuild for the core part of the kernel
core-y += arch/sparc/
2008-12-03 10:17:12 +03:00
2008-11-30 09:16:52 +03:00
libs-y += arch/sparc/prom/
2008-12-03 14:10:25 +03:00
libs-y += arch/sparc/lib/
2005-04-17 02:20:36 +04:00
2013-03-19 19:11:07 +04:00
drivers-$(CONFIG_PM) += arch/sparc/power/
2006-10-18 06:21:48 +04:00
drivers-$(CONFIG_OPROFILE) += arch/sparc/oprofile/
2008-12-03 14:14:26 +03:00
boot := arch/sparc/boot
2005-04-17 02:20:36 +04:00
2009-08-17 05:21:47 +04:00
# Default target
all : zImage
2011-01-26 09:36:35 +03:00
image zImage uImage tftpboot.img vmlinux.aout : vmlinux
2008-12-03 14:14:26 +03:00
$( Q) $( MAKE) $( build) = $( boot) $( boot) /$@
2005-04-17 02:20:36 +04:00
archclean :
2008-12-03 14:14:26 +03:00
$( Q) $( MAKE) $( clean) = $( boot)
2005-04-17 02:20:36 +04:00
2008-08-19 09:37:18 +04:00
# This is the image used for packaging
2008-12-03 14:14:26 +03:00
KBUILD_IMAGE := $( boot) /zImage
2008-08-19 09:37:18 +04:00
2005-04-17 02:20:36 +04:00
# Don't use tabs in echo arguments.
2008-12-03 10:17:12 +03:00
i f e q ( $( ARCH ) , s p a r c )
2005-04-17 02:20:36 +04:00
d e f i n e a r c h h e l p
echo '* image - kernel image ($(boot)/image)'
2008-08-19 09:37:18 +04:00
echo '* zImage - stripped kernel image ($(boot)/zImage)'
2011-01-26 09:36:35 +03:00
echo ' uImage - U-Boot SPARC32 Image (only for LEON)'
2005-04-17 02:20:36 +04:00
echo ' tftpboot.img - image prepared for tftp'
e n d e f
2008-12-03 10:17:12 +03:00
e l s e
d e f i n e a r c h h e l p
2009-08-17 05:21:47 +04:00
echo '* vmlinux - standard sparc64 kernel'
echo '* zImage - stripped and compressed sparc64 kernel ($(boot)/zImage)'
echo ' vmlinux.aout - a.out kernel for sparc64'
2008-12-03 10:17:12 +03:00
echo ' tftpboot.img - image prepared for tftp'
e n d e f
e n d i f