Home
last modified time | relevance | path

Searched refs:ARCH (Results 1 - 25 of 128) sorted by relevance

123456

/kernel/linux/linux-6.6/tools/testing/selftests/wireguard/qemu/
H A DMakefile9 BUILD_PATH ?= $(PWD)/build/$(ARCH)
12 ARCH ?= macro
15 ifeq ($(ARCH),)
16 ARCH := $(HOST_ARCH) macro
49 ifeq ($(HOST_ARCH),$(ARCH))
56 ifeq ($(ARCH),aarch64)
62 ifeq ($(HOST_ARCH),$(ARCH))
68 else ifeq ($(ARCH),aarch64_be)
74 ifeq ($(HOST_ARCH),$(ARCH))
80 else ifeq ($(ARCH),ar
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/nolibc/
H A DMakefile12 ifeq ($(ARCH),)
14 ARCH = $(SUBARCH) macro
17 # XARCH extends the kernel's ARCH with a few variants of the same
19 # and the Qemu program used. It is copied as-is into ARCH except for
22 # XARCH | ARCH | config
29 # ARCH is already set. For simplicity, ARCH is sufficient for all
34 XARCH = $(or $(XARCH_$(ARCH)),$(ARCH))
40 ARCH macro
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/wireguard/qemu/
H A DMakefile9 ifneq (,$(ARCH))
10 CBUILD := $(subst -gcc,,$(lastword $(subst /, ,$(firstword $(wildcard $(foreach bindir,$(subst :, ,$(PATH)),$(bindir)/$(ARCH)-*-gcc))))))
12 $(error The toolchain for $(ARCH) is not installed)
16 ARCH := $(firstword $(subst -, ,$(CBUILD))) macro
21 BUILD_PATH ?= $(PWD)/build/$(ARCH)
61 ifeq ($(HOST_ARCH),$(ARCH))
71 ifeq ($(ARCH),aarch64)
75 ifeq ($(HOST_ARCH),$(ARCH))
81 else ifeq ($(ARCH),aarch64_be)
85 ifeq ($(HOST_ARCH),$(ARCH))
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/ipc/
H A DMakefile3 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/) macro
4 ifeq ($(ARCH),i386)
5 ARCH := x86 macro
8 ifeq ($(ARCH),x86_64)
9 ARCH := x86 macro
/kernel/linux/linux-6.6/scripts/package/debian/
H A Drules17 $(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) \
25 $(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) \
33 $(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) clean
/kernel/linux/linux-5.10/tools/testing/selftests/ipc/
H A DMakefile3 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/) macro
4 ifeq ($(ARCH),i386)
5 ARCH := x86 macro
8 ifeq ($(ARCH),x86_64)
9 ARCH := x86 macro
/kernel/linux/linux-6.6/tools/testing/selftests/amd-pstate/
H A DMakefile7 ARCH ?= $(shell uname -m 2>/dev/null || echo not) macro
8 ARCH := $(shell echo $(ARCH) | sed -e s/i.86/x86/ -e s/x86_64/x86/) macro
10 ifeq (x86,$(ARCH))
/kernel/linux/linux-5.10/scripts/
H A DMakefile27 # Additional ARCH settings for x86
28 ifeq ($(ARCH),x86_64)
29 ARCH := x86 macro
32 # Additional ARCH settings for loongarch
33 ifeq ($(ARCH),loongarch64)
34 ARCH := loongarch macro
37 HOSTCFLAGS_sorttable.o += -I$(srctree)/tools/arch/$(ARCH)/include
H A Ddecodecode64 if [ -z "$ARCH" ]; then
66 aarch64*) ARCH=arm64 ;;
67 arm*) ARCH=arm ;;
78 if [ "$ARCH" = "arm" ]; then
86 if [ "$ARCH" = "arm64" ]; then
/kernel/linux/linux-6.6/scripts/
H A Ddecodecode66 if [ -z "$ARCH" ]; then
68 aarch64*) ARCH=arm64 ;;
69 arm*) ARCH=arm ;;
80 if [ "$ARCH" = "arm" ]; then
88 if [ "$ARCH" = "arm64" ]; then
96 if [ "$ARCH" = "riscv" ]; then
135 if [ "$ARCH" = "riscv" ]; then
/kernel/linux/linux-5.10/scripts/dtc/
H A Ddtx_diff57 The shell variable \${ARCH} must provide the architecture containing
62 may not work since \${ARCH} is part of the include path. The following
65 `basename $0` ARCH=arch_of_dtx_1 DTx_1 >tmp_dtx_1.dts
66 `basename $0` ARCH=arch_of_dtx_2 DTx_2 >tmp_dtx_2.dts
126 if [ "${ARCH}" = "" ] ; then
129 echo " shell variable \$ARCH not set" >&2
134 if [ "${dtx_arch}" != "" -a "${dtx_arch}" != "${ARCH}" ] ; then
138 echo " but does not match shell variable \$ARCH" >&2
139 echo " >>\$ARCH<< is: >>${ARCH}<<" >
[all...]
/kernel/linux/linux-6.6/scripts/dtc/
H A Ddtx_diff57 The shell variable \${ARCH} must provide the architecture containing
62 may not work since \${ARCH} is part of the include path. The following
65 `basename $0` ARCH=arch_of_dtx_1 DTx_1 >tmp_dtx_1.dts
66 `basename $0` ARCH=arch_of_dtx_2 DTx_2 >tmp_dtx_2.dts
126 if [ "${ARCH}" = "" ] ; then
129 echo " shell variable \$ARCH not set" >&2
134 if [ "${dtx_arch}" != "" -a "${dtx_arch}" != "${ARCH}" ] ; then
138 echo " but does not match shell variable \$ARCH" >&2
139 echo " >>\$ARCH<< is: >>${ARCH}<<" >
[all...]
/kernel/linux/linux-5.10/scripts/atomic/
H A Dgen-atomic-fallback.sh5 ARCH=$2
190 for xchg in "${ARCH}xchg" "${ARCH}cmpxchg" "${ARCH}cmpxchg64"; do
195 gen_proto "${meta}" "${name}" "${ARCH}" "atomic" "int" ${args}
206 gen_proto "${meta}" "${name}" "${ARCH}" "atomic64" "s64" ${args}
/kernel/linux/linux-5.10/tools/testing/selftests/breakpoints/
H A DMakefile4 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/) macro
8 ifeq ($(ARCH),x86)
11 ifneq (,$(filter $(ARCH),aarch64 arm64))
/kernel/linux/linux-6.6/tools/testing/selftests/breakpoints/
H A DMakefile4 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/) macro
8 ifeq ($(ARCH),x86)
11 ifneq (,$(filter $(ARCH),aarch64 arm64))
/kernel/linux/linux-6.6/tools/testing/selftests/mm/
H A DMakefile8 ifeq ($(ARCH),)
15 ARCH ?= $(shell echo $(uname_M) | sed -e 's/aarch64.*/arm64/' -e 's/ppc64.*/ppc64/') macro
72 ifneq ($(ARCH),arm64)
76 ifeq ($(ARCH),x86_64)
98 ifneq (,$(findstring $(ARCH),ppc64))
104 ifneq (,$(filter $(ARCH),arm64 ia64 mips64 parisc64 ppc64 riscv64 s390x sparc64 x86_64))
124 ifeq ($(ARCH),x86_64)
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/
H A DMakefile4 # ARCH can be overridden by the user for cross compiling
5 ARCH ?= $(shell uname -m) macro
6 ARCH := $(shell echo $(ARCH) | sed -e s/ppc.*/powerpc/) macro
8 ifeq ($(ARCH),powerpc)
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/
H A DMakefile4 # ARCH can be overridden by the user for cross compiling
5 ARCH ?= $(shell uname -m) macro
6 ARCH := $(shell echo $(ARCH) | sed -e s/ppc.*/powerpc/) macro
8 ifeq ($(ARCH),powerpc)
/kernel/linux/linux-5.10/lib/raid6/test/
H A DMakefile18 ARCH := $(shell uname -m 2>/dev/null | sed -e /s/i.86/i386/) macro
19 ifeq ($(ARCH),i386)
23 ifeq ($(ARCH),x86_64)
28 ifeq ($(ARCH),arm)
32 ifeq ($(ARCH),aarch64)
37 ifeq ($(findstring ppc,$(ARCH)),ppc)
43 ifeq ($(ARCH),loongarch64)
66 else ifeq ($(ARCH),loongarch64)
/kernel/linux/linux-6.6/lib/raid6/test/
H A DMakefile19 ARCH := $(shell uname -m 2>/dev/null | sed -e /s/i.86/i386/) macro
20 ifeq ($(ARCH),i386)
24 ifeq ($(ARCH),x86_64)
29 ifeq ($(ARCH),arm)
33 ifeq ($(ARCH),aarch64)
38 ifeq ($(findstring ppc,$(ARCH)),ppc)
44 ifeq ($(ARCH),loongarch64)
67 else ifeq ($(ARCH),loongarch64)
/kernel/linux/linux-5.10/tools/testing/selftests/
H A Dlib.mk30 ARCH ?= $(SUBARCH) macro
55 $(MAKE) --no-builtin-rules ARCH=$(ARCH) -C $(top_srcdir) headers_install
58 ARCH=$(ARCH) -C $(top_srcdir) headers_install
/kernel/linux/linux-5.10/arch/h8300/boot/
H A DMakefile27 CLEAN_FILES += arch/$(ARCH)/vmlinux.bin arch/$(ARCH)/vmlinux.srec arch/$(ARCH)/uImage.bin
/kernel/linux/linux-6.6/tools/include/nolibc/
H A DMakefile11 ifeq ($(ARCH),)
13 ARCH = $(SUBARCH) macro
26 nolibc_arch := $(patsubst arm64,aarch64,$(ARCH))
63 @echo " ARCH = $(ARCH)"
67 # Note: when ARCH is "x86" we concatenate both x86_64 and i386
72 $(Q)if [ "$(ARCH)" = "x86" ]; then \
82 echo "Fatal: architecture $(ARCH) not yet supported by nolibc." >&2; \
/kernel/linux/linux-6.6/tools/testing/selftests/vDSO/
H A DMakefile5 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/) macro
10 ifeq ($(ARCH),$(filter $(ARCH),x86 x86_64))
/kernel/linux/build/
H A Dkernel.mk104 $(hide) $(KERNEL_MAKE) -C $(KERNEL_SRC_TMP_PATH) ARCH=$(KERNEL_ARCH) $(KERNEL_CROSS_COMPILE) distclean
105 $(hide) $(KERNEL_MAKE) -C $(KERNEL_SRC_TMP_PATH) ARCH=$(KERNEL_ARCH) $(KERNEL_CROSS_COMPILE) $(DEFCONFIG_FILE)
107 $(hide) $(KERNEL_MAKE) -C $(KERNEL_SRC_TMP_PATH) ARCH=$(KERNEL_ARCH) $(KERNEL_CROSS_COMPILE) modules_prepare
109 $(hide) $(KERNEL_MAKE) -C $(KERNEL_SRC_TMP_PATH) ARCH=$(KERNEL_ARCH) $(KERNEL_CROSS_COMPILE) -j64 $(KERNEL_IMAGE)
112 $(hide) $(KERNEL_MAKE) -C $(KERNEL_SRC_TMP_PATH) ARCH=$(KERNEL_ARCH) $(KERNEL_CROSS_COMPILE) dtbs

Completed in 6 milliseconds

123456