Home
last modified time | relevance | path

Searched refs:srctree (Results 1 – 25 of 451) sorted by relevance

12345678910>>...19

/openbmc/linux/arch/x86/tools/
H A DMakefile16 reformatter = $(srctree)/arch/x86/tools/objdump_reformat.awk
17 chkobjdump = $(srctree)/arch/x86/tools/chkobjdump.awk
32 HOSTCFLAGS_insn_decoder_test.o := -Wall -I$(srctree)/tools/arch/x86/lib/ -I$(srctree)/tools/arch/x8…
34 HOSTCFLAGS_insn_sanity.o := -Wall -I$(srctree)/tools/arch/x86/lib/ -I$(srctree)/tools/arch/x86/incl…
37srctree)/tools/arch/x86/lib/insn.c $(srctree)/tools/arch/x86/lib/inat.c $(srctree)/tools/arch/x86/…
39srctree)/tools/arch/x86/lib/insn.c $(srctree)/tools/arch/x86/lib/inat.c $(srctree)/tools/arch/x86/…
41 HOST_EXTRACFLAGS += -I$(srctree)/tools/include
/openbmc/linux/Documentation/
H A DMakefile10 $(shell $(srctree)/scripts/documentation-file-ref-check --warn)
15 $(shell $(srctree)/scripts/get_abi.pl validate --dir $(srctree)/Documentation/ABI)
24 _SPHINXDIRS = $(sort $(patsubst $(srctree)/Documentation/%/index.rst,%,$(wildcard $(srctree)/Docu…
43 @$(srctree)/scripts/sphinx-pre-install
59 KERNELDOC = $(srctree)/scripts/kernel-doc
60 KERNELDOC_CONF = -D kerneldoc_srctree=$(srctree) -D kerneldoc_bin=$(KERNELDOC)
62 ifneq ($(wildcard $(srctree)/.config),)
85 BUILDDIR=$(abspath $(BUILDDIR)) SPHINX_CONF=$(abspath $(srctree)/$(src)/$5/$(SPHINX_CONF)) \
86 $(PYTHON3) $(srctree)/scripts/jobserver-exec \
87 $(CONFIG_SHELL) $(srctree)/Documentation/sphinx/parallel-wrapper.sh \
[all …]
/openbmc/linux/tools/thermal/thermal-engine/
H A DMakefile4 ifeq ($(srctree),)
5 srctree := $(patsubst %/,%,$(dir $(CURDIR))) macro
6 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
7 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
12 CFLAGS += -I$(srctree)/tools/thermal/lib
13 CFLAGS += -I$(srctree)/tools/lib/thermal/include
15 LDFLAGS = -L$(srctree)/tools/thermal/lib
16 LDFLAGS += -L$(srctree)/tools/lib/thermal
/openbmc/linux/tools/lib/thermal/
H A DMakefile10 ifeq ($(srctree),)
11 srctree := $(patsubst %/,%,$(dir $(CURDIR))) macro
12 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
13 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
64 -I$(srctree)/tools/lib/thermal/include \
65 -I$(srctree)/tools/lib/ \
66 -I$(srctree)/tools/include \
67 -I$(srctree)/tools/arch/$(SRCARCH)/include/ \
68 -I$(srctree)/tools/arch/$(SRCARCH)/include/uapi \
69 -I$(srctree)/tools/include/uapi
[all …]
/openbmc/linux/tools/thermal/thermometer/
H A DMakefile4 ifeq ($(srctree),)
5 srctree := $(patsubst %/,%,$(dir $(CURDIR))) macro
6 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
7 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
12 CFLAGS += -I$(srctree)/tools/thermal/lib
14 LDFLAGS = -L$(srctree)/tools/thermal/lib
/openbmc/linux/tools/thermal/lib/
H A DMakefile10 ifeq ($(srctree),)
11 srctree := $(patsubst %/,%,$(dir $(CURDIR))) macro
12 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
13 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
64 -I$(srctree)/tools/lib/thermal/include \
65 -I$(srctree)/tools/lib/ \
66 -I$(srctree)/tools/include \
67 -I$(srctree)/tools/arch/$(SRCARCH)/include/ \
68 -I$(srctree)/tools/arch/$(SRCARCH)/include/uapi \
69 -I$(srctree)/tools/include/uapi
[all …]
/openbmc/linux/scripts/
H A DMakefile.defconf11 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh \
12 -m -O $(objtree) $(srctree)/arch/$(ARCH)/configs/$(1) \
13 $(foreach config,$(2),$(srctree)/arch/$(ARCH)/configs/$(config).config)
14 +$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig
25 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh \
26 -Q -m -O $(objtree) $(srctree)/arch/$(ARCH)/configs/$(1) \
27 $(foreach config,$(2),$(srctree)/arch/$(ARCH)/configs/$(config).config)
28 +$(Q)$(MAKE) -f $(srctree)/Makefile olddefconfig
H A Dgenerate_rust_analyzer.py21 def generate_crates(srctree, objtree, sysroot_src, external_src, cfgs): argument
63 srctree / "rust" / "compiler_builtins.rs",
69 srctree / "rust" / "alloc" / "lib.rs",
76 srctree / "rust" / "macros" / "lib.rs",
84 srctree / "rust" / "build_error.rs",
90 srctree / "rust"/ "bindings" / "lib.rs",
98 srctree / "rust" / "kernel" / "lib.rs",
104 str(srctree / "rust" / "kernel"),
119 extra_dirs = map(lambda dir: srctree / dir, ("samples", "drivers"))
158 … "crates": generate_crates(args.srctree, args.objtree, args.sysroot_src, args.exttree, args.cfgs),
H A Drustdoc_test_gen.rs48 fn find_real_path<'a>(srctree: &Path, valid_paths: &'a mut Vec<PathBuf>, file: &str) -> &'a str { in find_real_path()
53 find_candidates(srctree, valid_paths, Path::new(""), &potential_components); in find_real_path()
55 srctree: &Path, in find_real_path()
63 if srctree in find_real_path()
82 if srctree.join("rust/kernel").join(&prefix).is_dir() { in find_real_path()
83 find_candidates(srctree, valid_paths, &prefix, components_rest); in find_real_path()
109 let srctree = std::env::var("srctree").unwrap(); in main() localVariable
110 let srctree = Path::new(&srctree); in main() localVariable
144 real_path = find_real_path(srctree, &mut valid_paths, file); in main()
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dcreate_npm.py88 def _run_npm_install(self, d, srctree, registry, dev): argument
96 bb.utils.remove(os.path.join(srctree, "node_modules"), recurse=True)
99 env.run("npm install", workdir=srctree)
101 def _generate_shrinkwrap(self, d, srctree, dev): argument
106 env.run("npm shrinkwrap", workdir=srctree)
108 return os.path.join(srctree, "npm-shrinkwrap.json")
110 def _handle_licenses(self, srctree, shrinkwrap_file, dev): argument
121 with open(os.path.join(srctree, package_json), "r") as f:
130 basedir = os.path.join(srctree, destdir)
159 _get_package_licenses(srctree, "${PN}")
[all …]
H A Dcreate_buildsys.py29 def process(self, srctree, classes, lines_before, lines_after, handled, extravalues): argument
33 if RecipeHandler.checkfiles(srctree, ['CMakeLists.txt']):
35 values = CmakeRecipeHandler.extract_cmake_deps(lines_before, srctree, extravalues)
47 def extract_cmake_deps(outlines, srctree, extravalues, cmakelistsfile=None): argument
61 srcfiles = RecipeHandler.checkfiles(srctree, ['CMakeLists.txt'])
170 … if handler.process_line(srctree, fn, line, libdeps, pcdeps, deps, outlines, inherits, values):
216 … if handler.process_findpackage(srctree, fn, pkg, deps, outlines, inherits, values):
272 handler.post_process(srctree, libdeps, pcdeps, deps, outlines, inherits, values)
282 def process_line(self, srctree, fn, line, libdeps, pcdeps, deps, outlines, inherits, values): argument
289 def process_findpackage(self, srctree, fn, pkg, deps, outlines, inherits, values): argument
[all …]
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dstandard.py39 if not args.recipename and not args.srctree and not args.fetch and not args.fetchuri:
51 elif scriptutils.is_src_url(args.srctree):
55 args.fetchuri = args.srctree
56 args.srctree = ''
57 elif args.recipename and not args.srctree:
59 args.srctree = args.recipename
70 if args.srctree and os.path.isfile(args.srctree):
71 args.fetchuri = 'file://' + os.path.abspath(args.srctree)
72 args.srctree = ''
89 if args.srctree:
[all …]
/openbmc/u-boot/board/synopsys/axs10x/
H A Dconfig.mk7 $(Q)python3 $(srctree)/board/$(BOARDDIR)/headerize-axs.py \
11 --image $(srctree)/u-boot.bin \
12 --elf $(srctree)/u-boot
14 $(Q)python3 $(srctree)/board/$(BOARDDIR)/headerize-axs.py \
18 --image $(srctree)/u-boot.bin \
19 --elf $(srctree)/u-boot
22 -d $(srctree)/u-boot-update.txt \
23 $(srctree)/u-boot-update.img &> /dev/null
/openbmc/linux/tools/objtool/
H A DMakefile5 ifeq ($(srctree),)
6 srctree := $(patsubst %/,%,$(dir $(CURDIR))) macro
7 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
10 LIBSUBCMD_DIR = $(srctree)/tools/lib/subcmd/
26 INCLUDES := -I$(srctree)/tools/include \
27 -I$(srctree)/tools/arch/$(HOSTARCH)/include/uapi \
28 -I$(srctree)/tools/arch/$(SRCARCH)/include \
29 -I$(srctree)/tools/objtool/include \
30 -I$(srctree)/tools/objtool/arch/$(SRCARCH)/include \
61 export srctree OUTPUT CFLAGS SRCARCH AWK
[all …]
/openbmc/linux/tools/perf/
H A DMakefile.perf144 ifeq ($(srctree),)
145 srctree := $(patsubst %/,%,$(dir $(CURDIR)))
146 srctree := $(patsubst %/,%,$(dir $(srctree)))
230 export srctree OUTPUT RM CC CXX LD AR CFLAGS CXXFLAGS V BISON FLEX AWK
233 include $(srctree)/tools/build/Makefile.include
246 LIBAPI_DIR = $(srctree)/tools/lib/api/
247 LIBBPF_DIR = $(srctree)/tools/lib/bpf/
248 LIBSUBCMD_DIR = $(srctree)/tools/lib/subcmd/
249 LIBSYMBOL_DIR = $(srctree)/tools/lib/symbol/
250 LIBPERF_DIR = $(srctree)/tools/lib/perf/
[all …]
/openbmc/linux/tools/power/x86/intel-speed-select/
H A DMakefile6 ifeq ($(srctree),)
7 srctree := $(patsubst %/,%,$(dir $(CURDIR))) macro
8 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
9 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
10 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
24 export srctree OUTPUT CC LD CFLAGS
25 include $(srctree)/tools/build/Makefile.include
/openbmc/linux/tools/lib/symbol/
H A DMakefile5 ifeq ($(srctree),)
6 srctree := $(patsubst %/,%,$(dir $(CURDIR))) macro
7 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
8 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
73 export srctree OUTPUT CC LD CFLAGS V
74 include $(srctree)/tools/build/Makefile.include
75 include $(srctree)/tools/scripts/Makefile.include
/openbmc/linux/tools/lib/perf/
H A DMakefile10 ifeq ($(srctree),)
11 srctree := $(patsubst %/,%,$(dir $(CURDIR))) macro
12 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
13 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
65 -I$(srctree)/tools/lib/perf/include \
66 -I$(srctree)/tools/lib/ \
67 -I$(srctree)/tools/include \
68 -I$(srctree)/tools/arch/$(SRCARCH)/include/ \
69 -I$(srctree)/tools/arch/$(SRCARCH)/include/uapi \
70 -I$(srctree)/tools/include/uapi
[all …]
/openbmc/linux/
H A DMakefile69 # cmd_depmod = $(srctree)/scripts/depmod.sh $(DEPMOD) $(KERNELRELEASE)
243 srctree := . macro
248 srctree := .. macro
250 srctree := $(abs_srctree) macro
256 srctree := $(abs_srctree) macro
260 VPATH := $(srctree)
262 export building_out_of_srctree srctree objtree VPATH
361 $(MAKE) -f $(srctree)/Makefile $$i; \
366 include $(srctree)/scripts/Kbuild.include
373 include $(srctree)/script
[all...]
/openbmc/linux/fs/unicode/
H A DMakefile21 -a $(srctree)/$(src)/DerivedAge.txt \
22 -c $(srctree)/$(src)/DerivedCombiningClass.txt \
23 -p $(srctree)/$(src)/DerivedCoreProperties.txt \
24 -d $(srctree)/$(src)/UnicodeData.txt \
25 -f $(srctree)/$(src)/CaseFolding.txt \
26 -n $(srctree)/$(src)/NormalizationCorrections.txt \
27 -t $(srctree)/$(src)/NormalizationTest.txt \
/openbmc/linux/arch/um/
H A DMakefile25 MODE_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/shared/skas
39 include $(srctree)/$(ARCH_DIR)/Makefile-skas
40 include $(srctree)/$(HOST_DIR)/Makefile.um
45 ARCH_INCLUDE := -I$(srctree)/$(SHARED_HEADERS)
46 ARCH_INCLUDE += -I$(srctree)/$(HOST_DIR)/um/shared
47 KBUILD_CPPFLAGS += -I$(srctree)/$(HOST_DIR)/um
72 -D_FILE_OFFSET_BITS=64 -idirafter $(srctree)/include \
76 include $(srctree)/$(ARCH_DIR)/Makefile-os-Linux
78 KBUILD_CPPFLAGS += -I$(srctree)/$(HOST_DIR)/include \
79 -I$(srctree)/$(HOST_DIR)/include/uapi \
[all …]
/openbmc/linux/drivers/pinctrl/renesas/
H A DMakefile55 CFLAGS_pfc-sh7203.o += -I$(srctree)/arch/sh/include/cpu-sh2a
56 CFLAGS_pfc-sh7264.o += -I$(srctree)/arch/sh/include/cpu-sh2a
57 CFLAGS_pfc-sh7269.o += -I$(srctree)/arch/sh/include/cpu-sh2a
58 CFLAGS_pfc-sh7720.o += -I$(srctree)/arch/sh/include/cpu-sh3
59 CFLAGS_pfc-sh7722.o += -I$(srctree)/arch/sh/include/cpu-sh4
60 CFLAGS_pfc-sh7723.o += -I$(srctree)/arch/sh/include/cpu-sh4
61 CFLAGS_pfc-sh7724.o += -I$(srctree)/arch/sh/include/cpu-sh4
62 CFLAGS_pfc-sh7734.o += -I$(srctree)/arch/sh/include/cpu-sh4
63 CFLAGS_pfc-sh7757.o += -I$(srctree)/arch/sh/include/cpu-sh4
64 CFLAGS_pfc-sh7785.o += -I$(srctree)/arch/sh/include/cpu-sh4
[all …]
/openbmc/linux/tools/lib/api/
H A DMakefile5 ifeq ($(srctree),)
6 srctree := $(patsubst %/,%,$(dir $(CURDIR))) macro
7 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
8 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
72 export srctree OUTPUT CC LD CFLAGS V
73 include $(srctree)/tools/build/Makefile.include
74 include $(srctree)/tools/scripts/Makefile.include
/openbmc/linux/tools/lib/subcmd/
H A DMakefile5 ifeq ($(srctree),)
6 srctree := $(patsubst %/,%,$(dir $(CURDIR))) macro
7 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
8 srctree := $(patsubst %/,%,$(dir $(srctree))) macro
74 export srctree OUTPUT CC LD CFLAGS V
75 include $(srctree)/tools/build/Makefile.include
/openbmc/u-boot/scripts/kconfig/
H A DMakefile51 $(Q)perl $(srctree)/$(src)/streamline_config.pl --$@ $(srctree) $(Kconfig) > .tmp.config
71 --files-from=$(srctree)/scripts/kconfig/POTFILES.in \
72 --directory=$(srctree) --directory=$(objtree) \
75 $(Q)(for i in `ls $(srctree)/arch/*/Kconfig \
76 $(srctree)/arch/*/um/Kconfig`; \
118 ifneq ($(wildcard $(srctree)/arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG)),)
123 $(Q)$(MAKE) -f $(srctree)/Makefile $(KBUILD_DEFCONFIG)
134 configfiles=$(wildcard $(srctree)/kernel/configs/$@ $(srctree)/arch/$(SRCARCH)/configs/$@)
138 $(Q)$(CONFIG_SHELL) $(srctree)/scripts/kconfig/merge_config.sh -m .config $(configfiles)
139 +$(Q)yes "" | $(MAKE) -f $(srctree)/Makefile oldconfig
[all …]

12345678910>>...19