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