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.
2014-06-16 07:25:06 +04:00
# Copyright (C) 2014 Cadence Design Systems Inc.
2005-06-24 09:01:10 +04:00
#
# This file is included by the global makefile so that you can add your own
2021-10-13 09:36:22 +03:00
# architecture-specific flags and dependencies.
2005-06-24 09:01:10 +04:00
# 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
kbuild: do not quote string values in include/config/auto.conf
The previous commit fixed up all shell scripts to not include
include/config/auto.conf.
Now that include/config/auto.conf is only included by Makefiles,
we can change it into a more Make-friendly form.
Previously, Kconfig output string values enclosed with double-quotes
(both in the .config and include/config/auto.conf):
CONFIG_X="foo bar"
Unlike shell, Make handles double-quotes (and single-quotes as well)
verbatim. We must rip them off when used.
There are some patterns:
[1] $(patsubst "%",%,$(CONFIG_X))
[2] $(CONFIG_X:"%"=%)
[3] $(subst ",,$(CONFIG_X))
[4] $(shell echo $(CONFIG_X))
These are not only ugly, but also fragile.
[1] and [2] do not work if the value contains spaces, like
CONFIG_X=" foo bar "
[3] does not work correctly if the value contains double-quotes like
CONFIG_X="foo\"bar"
[4] seems to work better, but has a cost of forking a process.
Anyway, quoted strings were always PITA for our Makefiles.
This commit changes Kconfig to stop quoting in include/config/auto.conf.
These are the string type symbols referenced in Makefiles or scripts:
ACPI_CUSTOM_DSDT_FILE
ARC_BUILTIN_DTB_NAME
ARC_TUNE_MCPU
BUILTIN_DTB_SOURCE
CC_IMPLICIT_FALLTHROUGH
CC_VERSION_TEXT
CFG80211_EXTRA_REGDB_KEYDIR
EXTRA_FIRMWARE
EXTRA_FIRMWARE_DIR
EXTRA_TARGETS
H8300_BUILTIN_DTB
INITRAMFS_SOURCE
LOCALVERSION
MODULE_SIG_HASH
MODULE_SIG_KEY
NDS32_BUILTIN_DTB
NIOS2_DTB_SOURCE
OPENRISC_BUILTIN_DTB
SOC_CANAAN_K210_DTB_SOURCE
SYSTEM_BLACKLIST_HASH_LIST
SYSTEM_REVOCATION_KEYS
SYSTEM_TRUSTED_KEYS
TARGET_CPU
UNUSED_KSYMS_WHITELIST
XILINX_MICROBLAZE0_FAMILY
XILINX_MICROBLAZE0_HW_VER
XTENSA_VARIANT_NAME
I checked them one by one, and fixed up the code where necessary.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
2021-12-14 05:53:53 +03:00
variant-y := $( CONFIG_XTENSA_VARIANT_NAME)
2005-06-24 09:01:10 +04:00
2006-12-10 13:18:48 +03:00
VARIANT = $( variant-y)
2005-06-24 09:01:10 +04:00
2012-05-13 00:39:08 +04:00
i f n e q ( $( VARIANT ) , )
2021-05-01 20:24:36 +03:00
ifdef cross_compiling
2012-05-13 00:39:08 +04:00
ifndef CROSS_COMPILE
CROSS_COMPILE = xtensa_$( VARIANT) -
endif
endif
e n d i f
2005-06-24 09:01:10 +04:00
# Platform configuration
platform-$(CONFIG_XTENSA_PLATFORM_XT2000) := xt2000
platform-$(CONFIG_XTENSA_PLATFORM_ISS) := iss
2012-11-05 07:37:14 +04:00
platform-$(CONFIG_XTENSA_PLATFORM_XTFPGA) := xtfpga
2005-06-24 09:01:10 +04:00
2007-08-04 20:23:54 +04:00
# temporarily until string.h is fixed
2012-09-17 05:44:51 +04:00
KBUILD_CFLAGS += -ffreestanding -D__linux__
2017-12-04 07:55:35 +03:00
KBUILD_CFLAGS += -pipe -mlongcalls -mtext-section-literals
2010-05-02 12:00:22 +04:00
KBUILD_CFLAGS += $( call cc-option,-mforce-no-pic,)
2017-04-28 19:40:00 +03:00
KBUILD_CFLAGS += $( call cc-option,-mno-serialize-volatile,)
2024-01-11 07:20:00 +03:00
KBUILD_CFLAGS += $( call cc-option,-mno-fdpic,)
2021-04-23 10:34:44 +03:00
i f n e q ( $( CONFIG_KERNEL_ABI_CALL 0) , )
KBUILD_CFLAGS += -mabi= call0
KBUILD_AFLAGS += -mabi= call0
e n d i f
2010-05-02 12:00:22 +04:00
2017-12-04 07:55:35 +03:00
KBUILD_AFLAGS += -mlongcalls -mtext-section-literals
2024-01-11 07:20:00 +03:00
KBUILD_AFLAGS += $( call cc-option,-mno-fdpic,)
KBUILD_LDFLAGS += -m elf32xtensa
2017-12-04 07:55:35 +03:00
2012-11-14 03:16:36 +04:00
i f n e q ( $( CONFIG_LD_NO_RELAX ) , )
2024-01-11 07:20:00 +03:00
KBUILD_LDFLAGS += --no-relax
2012-11-14 03:16:36 +04:00
e n d i f
2021-03-13 15:23:41 +03:00
CHECKFLAGS += -D$( if $( CONFIG_CPU_BIG_ENDIAN) ,__XTENSA_EB__,__XTENSA_EL__)
2012-12-11 01:26:25 +04:00
2008-11-06 17:40:46 +03:00
vardirs := $( patsubst %,arch/xtensa/variants/%/,$( variant-y) )
plfdirs := $( patsubst %,arch/xtensa/platforms/%/,$( platform-y) )
KBUILD_CPPFLAGS += $( patsubst %,-I$( srctree) /%include,$( vardirs) $( plfdirs) )
2005-06-30 13:58:59 +04:00
KBUILD_DEFCONFIG := iss_defconfig
2005-06-24 09:01:10 +04:00
2021-10-18 15:38:06 +03:00
libs-y += arch/xtensa/lib/
2005-06-24 09:01:10 +04:00
2005-06-30 13:58:59 +04:00
boot := arch/xtensa/boot
2017-01-04 04:57:51 +03:00
all Image zImage uImage xipImage : vmlinux
2005-06-24 09:01:10 +04:00
$( Q) $( MAKE) $( build) = $( boot) $@
2018-11-13 13:19:30 +03:00
archheaders :
$( Q) $( MAKE) $( build) = arch/xtensa/kernel/syscalls all
2005-06-24 09:01:10 +04:00
d e f i n e a r c h h e l p
2016-12-25 15:58:57 +03:00
@echo '* Image - Kernel ELF image with reset vector'
2005-06-24 09:01:10 +04:00
@echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)'
2016-12-25 15:58:57 +03:00
@echo '* uImage - U-Boot wrapped image'
2017-01-04 04:57:51 +03:00
@echo ' xipImage - XIP image'
2005-06-24 09:01:10 +04:00
e n d e f