/openbmc/qemu/tcg/tci/ |
H A D | README | 16 interpreter for the generated bytecode, it is possible to 26 The additional file tcg/tci.c adds the interpreter and disassembler. 35 For hosts without native TCG, the interpreter TCI must be enabled by 37 configure --enable-tcg-interpreter 39 If configure is called without --enable-tcg-interpreter, it will 44 For hosts with native TCG, the interpreter TCI can be enabled by 46 configure --enable-tcg-interpreter 54 once with interpreter and once without interpreter and compare the resulting 61 configure --cpu=unknown --enable-tcg-interpreter 115 in the interpreter. These opcodes raise a runtime exception, so it is
|
/openbmc/openbmc/poky/meta/recipes-graphics/cairo/ |
H A D | cairo_1.18.2.bb | 18 LICENSE:${PN}-script-interpreter = "MPL-1.1 | LGPL-2.1-only" 69 PACKAGES =+ "cairo-gobject cairo-script-interpreter cairo-perf-utils" 74 SUMMARY:cairo-script-interpreter = "The Cairo library script interpreter" 75 DESCRIPTION:cairo-script-interpreter = "The Cairo script interpreter implements \ 83 FILES:${PN}-script-interpreter = "${libdir}/libcairo-script-interpreter.so.*"
|
/openbmc/linux/Documentation/admin-guide/ |
H A D | binfmt-misc.rst | 8 To achieve this you must tell binfmt_misc which interpreter has to be invoked 19 ``:name:type:offset:magic:mask:interpreter:flags`` (where you can choose the 49 - ``interpreter`` 54 of the interpreter. It is a string of capital letters, each controls a 69 of the binary to the interpreter as an argument. When this flag is 72 the interpreter to execute non-readable binaries. This feature 73 should be used with care - the interpreter has to be trusted not to 78 the interpreter. When this flag is included, these attributes are 80 This feature should be used with care as the interpreter 98 - the interpreter string may not exceed 127 characters [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/python/python3-installer/ |
H A D | interpreter.patch | 28 + "--interpreter", 32 + help=f"interpreter (defaults to {sys.executable})", 41 - interpreter=sys.executable, 42 + interpreter=args.interpreter,
|
/openbmc/linux/Documentation/userspace-api/ |
H A D | ELF.rst | 20 interpreter. Other PT_INTERP headers are ignored (since Linux 2.4.11). 31 ELF interpreter's last PT_GNU_PROPERTY program header is used (since 32 Linux 5.8). If interpreter doesn't have one, then the last PT_GNU_PROPERTY
|
/openbmc/linux/fs/ |
H A D | binfmt_misc.c | 59 const char *interpreter; /* filename of interpreter */ member 212 retval = copy_string_kernel(fmt->interpreter, bprm); in load_misc_binary() 218 retval = bprm_change_interp(fmt->interpreter, bprm); in load_misc_binary() 227 interp_file = open_exec(fmt->interpreter); in load_misc_binary() 233 bprm->interpreter = interp_file; in load_misc_binary() 493 e->interpreter = p; in create_entry() 498 if (!e->interpreter[0]) in create_entry() 500 pr_debug("register: interpreter: {%s}\n", e->interpreter); in create_entry() 562 dp += sprintf(dp, "%s\ninterpreter %s\n", status, e->interpreter); in entry_status() 775 f = open_exec(e->interpreter); in bm_register_write() [all …]
|
H A D | binfmt_elf.c | 592 struct file *interpreter, in load_elf_interp() argument 612 if (!interpreter->f_op->mmap) in load_elf_interp() 637 map_addr = elf_map(interpreter, load_addr + vaddr, in load_elf_interp() 825 struct file *interpreter = NULL; /* to shut gcc up */ in load_elf_binary() local 898 interpreter = open_exec(elf_interpreter); in load_elf_binary() 900 retval = PTR_ERR(interpreter); in load_elf_binary() 901 if (IS_ERR(interpreter)) in load_elf_binary() 908 would_dump(bprm, interpreter); in load_elf_binary() 917 retval = elf_read(interpreter, interp_elf_ex, in load_elf_binary() 949 if (interpreter) { in load_elf_binary() [all …]
|
H A D | binfmt_elf_fdpic.c | 194 struct file *interpreter = NULL; /* to shut gcc up */ in load_elf_fdpic_binary() local 262 interpreter = open_exec(interpreter_name); in load_elf_fdpic_binary() 263 retval = PTR_ERR(interpreter); in load_elf_fdpic_binary() 264 if (IS_ERR(interpreter)) { in load_elf_fdpic_binary() 265 interpreter = NULL; in load_elf_fdpic_binary() 274 would_dump(bprm, interpreter); in load_elf_fdpic_binary() 277 retval = kernel_read(interpreter, bprm->buf, in load_elf_fdpic_binary() 304 if (!is_elf(&interp_params.hdr, interpreter)) in load_elf_fdpic_binary() 310 retval = elf_fdpic_fetch_phdrs(&interp_params, interpreter); in load_elf_fdpic_binary() 390 retval = elf_fdpic_map_file(&interp_params, interpreter, in load_elf_fdpic_binary() [all …]
|
H A D | compat_binfmt_elf.c | 114 #define COMPAT_ARCH_SETUP_ADDITIONAL_PAGES(bprm, ex, interpreter) \ argument 115 compat_arch_setup_additional_pages(bprm, interpreter)
|
/openbmc/openbmc/poky/meta/recipes-devtools/patchelf/patchelf/ |
H A D | 0001-Set-interpreter-only-when-necessary.patch | 4 Subject: [PATCH] Set interpreter only when necessary 6 If the given interpreter is already set, nothing needs to be done. 25 + debug("given interpreter is already set\n");
|
/openbmc/qemu/scripts/ |
H A D | qemu-binfmt-conf.sh | 190 Configure binfmt_misc to use qemu interpreter 193 --qemu-path: set path to qemu interpreter ($QEMU_PATH) 194 --qemu-suffix: add a suffix to the default interpreter name 205 --persistent: if yes, the interpreter is loaded when binfmt is 214 To remove interpreter, use : 301 interpreter $qemu
|
/openbmc/linux/kernel/bpf/ |
H A D | Kconfig | 3 # BPF interpreter that, for example, classic socket filters depend on. 47 BPF programs are normally handled by a BPF interpreter. This option 58 bool "Permanently enable BPF JIT and remove BPF interpreter" 61 Enables BPF JIT and removes BPF interpreter to avoid speculative 62 execution of BPF instructions by the interpreter.
|
/openbmc/openbmc/poky/meta/recipes-devtools/patchelf/ |
H A D | patchelf_0.18.0.bb | 1 SUMMARY = "Tool to allow editing of RPATH and interpreter fields in ELF binaries" 8 file://0001-Set-interpreter-only-when-necessary.patch \
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/libhugetlbfs/files/ |
H A D | 0012-huge_page_setup_helper-use-python3-interpreter.patch | 4 Subject: [PATCH] huge_page_setup_helper: use python3 interpreter 7 interpreter explicitly. This removes dependency to python2 and will not
|
/openbmc/linux/include/linux/ |
H A D | elf.h | 31 #define ARCH_SETUP_ADDITIONAL_PAGES(bprm, ex, interpreter) \ argument 32 arch_setup_additional_pages(bprm, interpreter)
|
/openbmc/linux/tools/testing/selftests/kselftest/ |
H A D | runner.sh | 119 interpreter=$(head -n 1 "$TEST" | cut -c 3-) 120 cmd="$stdbuf $interpreter ./$BASENAME_TEST"
|
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/apache2/apache2/ |
H A D | 0008-Fix-perl-install-directory-to-usr-bin.patch | 11 bad interpreter: No such file or directory 28 - perlbin="/replace/with/path/to/perl/interpreter"
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | python_pep517.bbclass | 24 # The interpreter to use for installed scripts 52 …nativepython3 -m installer ${INSTALL_WHEEL_COMPILE_BYTECODE} --interpreter "${USRBINPATH}/env ${PE…
|
/openbmc/openbmc/poky/meta/recipes-core/glibc/glibc/ |
H A D | 0017-Replace-echo-with-printf-builtin-in-nscd-init-script.patch | 6 The nscd init script calls for #! /bin/bash interpreter 9 switch the shell interpreter to #!/bin/sh.
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/postgresql/files/ |
H A D | 0001-tcl.m4-Recognize-tclsh9.patch | 24 AC_ARG_VAR(TCLSH, [Tcl interpreter program (tclsh)])dnl
|
/openbmc/linux/net/bpfilter/ |
H A D | Kconfig | 22 the elf interpreter.
|
/openbmc/openbmc/poky/meta/recipes-devtools/python/ |
H A D | python3-installer_0.7.0.bb | 9 SRC_URI += "file://interpreter.patch \
|
/openbmc/linux/arch/x86/include/asm/ |
H A D | elf.h | 375 #define COMPAT_ARCH_SETUP_ADDITIONAL_PAGES(bprm, ex, interpreter) \ argument 376 compat_arch_setup_additional_pages(bprm, interpreter, \
|
/openbmc/linux/Documentation/firmware-guide/acpi/ |
H A D | debug.rst | 29 specific part of the ACPI interpreter. To build the debug_layer bitmask, look 63 The ACPI interpreter uses several different levels, but the Linux
|
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-extended/mime-construct/ |
H A D | mime-construct_1.11.bb | 24 #change the interpreter in file
|