2005-06-24 09:01:10 +04: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) 2001 - 2005 Tensilica Inc.
#
# 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
# Core configuration.
2006-12-10 13:18:48 +03:00
# (Use VAR=<xtensa_config> to use another default compiler.)
2005-06-24 09:01:10 +04:00
2006-12-10 13:18:48 +03:00
variant-$(CONFIG_XTENSA_VARIANT_FSF) := fsf
2008-10-21 20:11:43 +04:00
variant-$(CONFIG_XTENSA_VARIANT_DC232B) := dc232b
2009-03-04 18:21:32 +03:00
variant-$(CONFIG_XTENSA_VARIANT_S6000) := s6000
2006-12-10 13:18:48 +03:00
variant-$(CONFIG_XTENSA_VARIANT_LINUX_CUSTOM) := custom
2005-06-24 09:01:10 +04:00
2006-12-10 13:18:48 +03:00
VARIANT = $( variant-y)
export VARIANT
2005-06-24 09:01:10 +04:00
# Platform configuration
platform-$(CONFIG_XTENSA_PLATFORM_XT2000) := xt2000
platform-$(CONFIG_XTENSA_PLATFORM_ISS) := iss
2009-03-04 18:21:33 +03:00
platform-$(CONFIG_XTENSA_PLATFORM_S6105) := s6105
2005-06-24 09:01:10 +04:00
PLATFORM = $( platform-y)
export PLATFORM
2007-08-04 20:23:54 +04:00
# temporarily until string.h is fixed
2007-10-15 00:21:35 +04:00
KBUILD_CFLAGS += -ffreestanding
2007-08-04 20:23:54 +04:00
2007-10-15 00:21:35 +04:00
KBUILD_CFLAGS += -pipe -mlongcalls
2005-06-24 09:01:10 +04:00
2008-11-06 17:40:46 +03:00
vardirs := $( patsubst %,arch/xtensa/variants/%/,$( variant-y) )
plfdirs := $( patsubst %,arch/xtensa/platforms/%/,$( platform-y) )
i f e q ( $( KBUILD_SRC ) , )
KBUILD_CPPFLAGS += $( patsubst %,-I%include,$( vardirs) $( plfdirs) )
e l s e
KBUILD_CPPFLAGS += $( patsubst %,-I$( srctree) /%include,$( vardirs) $( plfdirs) )
e n d i f
2005-06-30 13:58:59 +04:00
KBUILD_DEFCONFIG := iss_defconfig
2005-06-24 09:01:10 +04:00
# ramdisk/initrd support
# You need a compressed ramdisk image, named ramdisk.gz in
# arch/xtensa/boot/ramdisk
core-$(CONFIG_EMBEDDED_RAMDISK) += arch/xtensa/boot/ramdisk/
# Test for cross compiling
2006-12-10 13:18:48 +03:00
i f n e q ( $( VARIANT ) , )
2005-06-24 09:01:10 +04:00
COMPILE_ARCH = $( shell uname -m)
ifneq ( $( COMPILE_ARCH) , xtensa)
ifndef CROSS_COMPILE
2006-12-10 13:18:48 +03:00
CROSS_COMPILE = xtensa_$( VARIANT) -
2005-06-24 09:01:10 +04:00
endif
endif
e n d i f
2009-04-03 03:58:53 +04:00
# Only build variant and/or platform if it includes a Makefile
buildvar := $( shell test -a $( srctree) /arch/xtensa/variants/$( VARIANT) /Makefile && echo arch/xtensa/variants/$( VARIANT) /)
buildplf := $( shell test -a $( srctree) /arch/xtensa/platforms/$( PLATFORM) /Makefile && echo arch/xtensa/platforms/$( PLATFORM) /)
# Find libgcc.a
2005-06-24 09:01:10 +04:00
2007-10-15 00:21:35 +04:00
LIBGCC := $( shell $( CC) $( KBUILD_CFLAGS) -print-libgcc-file-name)
2005-06-24 09:01:10 +04:00
head-y := arch/xtensa/kernel/head.o
2005-06-30 13:58:59 +04:00
core-y += arch/xtensa/kernel/ arch/xtensa/mm/
2009-04-03 03:58:53 +04:00
core-y += $( buildvar) $( buildplf)
2005-06-24 09:01:10 +04:00
libs-y += arch/xtensa/lib/ $( LIBGCC)
2005-06-30 13:58:59 +04:00
boot := arch/xtensa/boot
2005-06-24 09:01:10 +04:00
all : zImage
bzImage : zImage
zImage zImage.initrd : vmlinux
$( Q) $( MAKE) $( build) = $( boot) $@
d e f i n e a r c h h e l p
@echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)'
e n d e f