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
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
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
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
#
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/
i f n e q ( $( PLATFORM ) , )
core-y += arch/xtensa/platform-$( PLATFORM) /
e n d i f
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
archinc := include/asm-xtensa
2005-06-24 09:01:10 +04:00
2005-09-12 00:30:22 +04:00
archprepare : $( archinc ) /.platform
2005-06-24 09:01:10 +04:00
2006-12-10 13:18:48 +03:00
# Update processor variant and platform symlinks if something which affects
2005-06-24 09:01:10 +04:00
# them changed.
2006-06-09 09:12:42 +04:00
$(archinc)/.platform : $( wildcard include /config /arch /*.h ) include /config /auto .conf
2006-12-10 13:18:48 +03:00
@echo ' SYMLINK $(archinc)/variant -> $(archinc)/variant-$(VARIANT)'
2005-06-30 13:58:59 +04:00
$( Q) mkdir -p $( archinc)
2006-12-10 13:18:48 +03:00
$( Q) ln -fsn $( srctree) /$( archinc) /variant-$( VARIANT) $( archinc) /variant
2005-06-30 13:58:59 +04:00
@echo ' SYMLINK $(archinc)/platform -> $(archinc)/platform-$(PLATFORM)'
$( Q) ln -fsn $( srctree) /$( archinc) /platform-$( PLATFORM) $( archinc) /platform
@touch $@
2005-06-24 09:01:10 +04:00
all : zImage
bzImage : zImage
zImage zImage.initrd : vmlinux
$( Q) $( MAKE) $( build) = $( boot) $@
2005-09-09 22:57:26 +04:00
CLEAN_FILES += arch/xtensa/vmlinux.lds \
2006-12-10 13:18:48 +03:00
$( archinc) /platform $( archinc) /variant \
2005-06-30 13:58:59 +04:00
$( archinc) /.platform
2005-06-24 09:01:10 +04:00
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