2005-06-24 13:01:10 +08: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 11:25:06 +08:00
|
|
|
# Copyright (C) 2014 Cadence Design Systems Inc.
|
2005-06-24 13:01:10 +08:00
|
|
|
#
|
|
|
|
# This file is included by the global makefile so that you can add your own
|
2021-10-13 14:36:22 +08:00
|
|
|
# architecture-specific flags and dependencies.
|
2005-06-24 13:01:10 +08:00
|
|
|
|
|
|
|
# Core configuration.
|
2006-12-10 18:18:48 +08:00
|
|
|
# (Use VAR=<xtensa_config> to use another default compiler.)
|
2005-06-24 13:01:10 +08: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 10:53:53 +08:00
|
|
|
variant-y := $(CONFIG_XTENSA_VARIANT_NAME)
|
2005-06-24 13:01:10 +08:00
|
|
|
|
2006-12-10 18:18:48 +08:00
|
|
|
VARIANT = $(variant-y)
|
2005-06-24 13:01:10 +08:00
|
|
|
|
2012-05-13 04:39:08 +08:00
|
|
|
ifneq ($(VARIANT),)
|
2021-05-02 01:24:36 +08:00
|
|
|
ifdef cross_compiling
|
2012-05-13 04:39:08 +08:00
|
|
|
ifndef CROSS_COMPILE
|
|
|
|
CROSS_COMPILE = xtensa_$(VARIANT)-
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2005-06-24 13:01:10 +08:00
|
|
|
# Platform configuration
|
|
|
|
|
|
|
|
platform-$(CONFIG_XTENSA_PLATFORM_XT2000) := xt2000
|
|
|
|
platform-$(CONFIG_XTENSA_PLATFORM_ISS) := iss
|
2012-11-05 11:37:14 +08:00
|
|
|
platform-$(CONFIG_XTENSA_PLATFORM_XTFPGA) := xtfpga
|
2005-06-24 13:01:10 +08:00
|
|
|
|
2007-08-05 00:23:54 +08:00
|
|
|
# temporarily until string.h is fixed
|
2012-09-17 09:44:51 +08:00
|
|
|
KBUILD_CFLAGS += -ffreestanding -D__linux__
|
2017-12-04 12:55:35 +08:00
|
|
|
KBUILD_CFLAGS += -pipe -mlongcalls -mtext-section-literals
|
2010-05-02 16:00:22 +08:00
|
|
|
KBUILD_CFLAGS += $(call cc-option,-mforce-no-pic,)
|
2017-04-29 00:40:00 +08:00
|
|
|
KBUILD_CFLAGS += $(call cc-option,-mno-serialize-volatile,)
|
2021-04-23 15:34:44 +08:00
|
|
|
ifneq ($(CONFIG_KERNEL_ABI_CALL0),)
|
|
|
|
KBUILD_CFLAGS += -mabi=call0
|
|
|
|
KBUILD_AFLAGS += -mabi=call0
|
|
|
|
endif
|
2010-05-02 16:00:22 +08:00
|
|
|
|
2017-12-04 12:55:35 +08:00
|
|
|
KBUILD_AFLAGS += -mlongcalls -mtext-section-literals
|
|
|
|
|
2012-11-14 07:16:36 +08:00
|
|
|
ifneq ($(CONFIG_LD_NO_RELAX),)
|
2018-08-24 07:20:39 +08:00
|
|
|
KBUILD_LDFLAGS := --no-relax
|
2012-11-14 07:16:36 +08:00
|
|
|
endif
|
|
|
|
|
2021-03-13 20:23:41 +08:00
|
|
|
CHECKFLAGS += -D$(if $(CONFIG_CPU_BIG_ENDIAN),__XTENSA_EB__,__XTENSA_EL__)
|
2012-12-11 05:26:25 +08:00
|
|
|
|
2008-11-06 22:40:46 +08: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 17:58:59 +08:00
|
|
|
KBUILD_DEFCONFIG := iss_defconfig
|
2005-06-24 13:01:10 +08:00
|
|
|
|
2021-10-18 20:38:06 +08:00
|
|
|
libs-y += arch/xtensa/lib/
|
2005-06-24 13:01:10 +08:00
|
|
|
|
2005-06-30 17:58:59 +08:00
|
|
|
boot := arch/xtensa/boot
|
|
|
|
|
2017-01-04 09:57:51 +08:00
|
|
|
all Image zImage uImage xipImage: vmlinux
|
2005-06-24 13:01:10 +08:00
|
|
|
$(Q)$(MAKE) $(build)=$(boot) $@
|
|
|
|
|
2018-11-13 18:19:30 +08:00
|
|
|
archheaders:
|
|
|
|
$(Q)$(MAKE) $(build)=arch/xtensa/kernel/syscalls all
|
|
|
|
|
2005-06-24 13:01:10 +08:00
|
|
|
define archhelp
|
2016-12-25 20:58:57 +08:00
|
|
|
@echo '* Image - Kernel ELF image with reset vector'
|
2005-06-24 13:01:10 +08:00
|
|
|
@echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)'
|
2016-12-25 20:58:57 +08:00
|
|
|
@echo '* uImage - U-Boot wrapped image'
|
2017-01-04 09:57:51 +08:00
|
|
|
@echo ' xipImage - XIP image'
|
2005-06-24 13:01:10 +08:00
|
|
|
endef
|