Home
last modified time | relevance | path

Searched refs:basename (Results 1 – 25 of 726) sorted by relevance

12345678910>>...30

/openbmc/openbmc/poky/meta/recipes-devtools/cmake/cmake/
H A Dcmake-setup.py13 return os.path.basename(os.environ["OECORE_NATIVE_SYSROOT"])
15 return os.path.basename(os.environ["OECORE_TARGET_SYSROOT"])
17 return os.path.basename(os.environ["TARGET_PREFIX"].strip("-"))
28 cross_file = os.path.join(sysroot, 'usr/share/cmake/%s-toolchain.cmake' % (os.path.basename(os.envi…
/openbmc/openbmc/poky/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/
H A D0001-Define-portable-basename-function.patch4 Subject: [PATCH] Define portable basename function
6 Newer version of musl have removed prototype for basename in string.h [1]
8 define local basename utility function.
27 + * basename is implemented differently across different C libraries. This
43 - r = hashmap_put(h, basename(p), p);
52 - return strcmp(basename(s1), basename(s2));
/openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-utils/overlayfs/overlayfs-tools/
H A D0001-always-use-glibc-basename.patch4 Subject: [PATCH 1/2] always use glibc basename()
6 There is a use of basename() which expects it to be GNU version of
7 basename, which is not available in other libcs e.g. musl on Linux
26 + * GNU basename implementation
33 +#define basename(x) __basename(x)
/openbmc/openbmc/poky/meta/lib/patchtest/selftest/
H A Dselftest24 print("Testsuite summary for %s" % os.path.basename(topdir))
72 print("XFAIL: %s (file: %s)" % (testid.strip("."), os.path.basename(patch)))
75 print("XPASS: %s (file: %s)" % (testid.strip("."), os.path.basename(patch)))
78 print("XSKIP: %s (file: %s)" % (testid.strip("."), os.path.basename(patch)))
80 … print("%s: %s (%s)" % (result.upper(), testid.strip("."), os.path.basename(patch)))
88 … print("Bad result on test %s against %s" % (testid.strip("."), os.path.basename(patch)))
/openbmc/u-boot/lib/lzma/
H A Dimport_lzmasdk.sh18 BASENAME=`basename $1 .tar.bz2`
31 echo Copying $TMPDIR/$i \-\> `basename $i`
33 chmod -x `basename $i`
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dkernel-module-split.bbclass89 def frob_metadata(file, pkg, pattern, format, basename):
97 autoload = d.getVar('module_autoload_%s' % basename)
98 if autoload and autoload == basename:
99 …replaced by KERNEL_MODULE_AUTOLOAD for cases where basename == module name, please drop it" % base…
100 if autoload and basename not in autoloadlist:
101 …ned but '%s' isn't included in KERNEL_MODULE_AUTOLOAD, please add it there" % (basename, basename))
104 conf = '%s/%s.conf' % (d.getVar('modulesloaddir'), basename)
107 if basename in autoloadlist:
114 f.write('%s\n' % basename)
124 postinst += d.getVar('autoload_postinst_fragment') % (autoload or basename)
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dretain.py101 archive_prefix = os.path.basename(archive).split('.tar')[0]
104 …l('Archive %s name does not start with expected prefix "%s"' % (os.path.basename(archive), expecte…
108 …le without tarball-named subdirectory within tarball %s: %s' % (os.path.basename(archive), ti.name…
112 … self.fail('Did not find log.do_compile in output archive %s' % os.path.basename(archive))
154 if glob.glob(os.path.join(retain_outdir, '%s_*.tar.gz' % os.path.basename(stamps_dir))):
161 if not glob.glob(os.path.join(retain_outdir, '%s_*.tar.gz' % os.path.basename(stamps_dir))):
224 archive_prefix = os.path.basename(archive).split('.tar')[0]
232 …le without tarball-named subdirectory within tarball %s: %s' % (os.path.basename(archive), ti.name…
237 … self.fail('Did not find log.do_compile in output archive %s' % os.path.basename(archive))
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/mraa/mraa/
H A D0001-mraa-Use-posix-basename.patch4 Subject: [PATCH 1/2] mraa: Use posix basename
8 declaration is flagged as error. Use posix basename and make a copy of
9 string to operate on to emulate GNU basename behaviour.
35 - if (fnmatch(IIO_DEVICE_WILDCARD, basename(path), 0) == 0) {
37 + if (fnmatch(IIO_DEVICE_WILDCARD, basename(tmp), 0) == 0) {
/openbmc/qemu/scripts/
H A Dshaderinclude.py13 basename = os.path.basename(file_path)
14 varname = basename.replace('-', '_').replace('.', '_')
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dsftp.py76 ud.basename = ud.parm['downloadfilename']
78 ud.basename = os.path.basename(ud.path)
80 ud.localfile = ud.basename
H A Dgcp.py45 ud.basename = ud.parm['downloadfilename']
47 ud.basename = os.path.basename(ud.path)
49 ud.localfile = ud.basename
H A Ds3.py76 ud.basename = ud.parm['downloadfilename']
78 ud.basename = os.path.basename(ud.path)
80 ud.localfile = ud.basename
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-filter/ipset/ipset/
H A D0001-ipset-Define-portable-basename-function.patch4 Subject: [PATCH] ipset: Define portable basename function
6 Newer version of musl have removed prototype for basename in string.h [1]
8 define own basename utility function and not depend on platform for it.
26 +/* basename is implemented differently across different C libraries. This
43 - if (!strcmp(basename(argv[0]), "ipset-translate")) {
/openbmc/openbmc/poky/scripts/contrib/
H A Dddimage46 DEV=`basename $ACTUAL_DEVICE`
86 DEV=`basename $1`
88 PARENT_BLKDEV=`basename $(readlink -f "/sys/class/block/$DEV/..")`
96 if check_mount_device /dev/`basename $CHILD_BLKDEV` ; then
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc/
H A Dx86_basename.patch4 Subject: [PATCH] replace basename() with sscanf()
6 klibc lacks basename()
23 - if (sscanf(basename(sysfs_name), "int13_dev%hhx", &devnum) != 1) {
26 - "entry: %s\n", basename(sysfs_name));
/openbmc/openbmc/meta-openembedded/meta-python/recipes-extended/python-pykickstart/
H A Dpython3-pykickstart_3.63.bb24 basename=`basename $file`
25 [ $basename != "__init__.py" ] && mv $file ${dirname}/test_${basename}
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/libhugetlbfs/files/
H A D0013-elflink.c-include-libgen.h-for-basename.patch4 Subject: [PATCH] elflink.c: include libgen.h for basename
11 elflink.c:363:19: error: implicit declaration of function 'basename' [-Wimplicit-function-declarati…
12 363 | binary2 = basename(binary);
15 363 | binary2 = basename(binary);
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/drbd/drbd-utils/
H A D0001-drbdmon-add-LDFLAGS-when-linking.patch25 @@ -76,10 +76,10 @@ $(dsaext-obj): $(basename $(dsaext-obj)).cpp $(basename $(dsaext-obj)).h
26 $(integerparse-obj): $(basename $(integerparse-obj)).cpp $(basename $(integerparse-obj)).h
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-gnome/gcab/gcab/
H A D0001-gcab-enums.c.etemplate-include-basename-instead-of-f.patch4 Subject: [PATCH] gcab-enums.c.etemplate: include @basename@ instead of full
14 glib-mkenum supports also @basename@ since 2.22 which would avoid this QA issue
16 @basename@ base name of the current input file (Since: 2.22)
34 +#include "@basename@"
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/netsniff-ng/files/
H A D0001-Cmds-automatically-create-folder.patch18 install -C $(1) $(2)/$(shell basename $(1))
20 - INSTX = echo -e " INST\t$(1)" && install -C $(1) $(2)/$(shell basename $(1))
22 + install -C $(1) $(2)/$(shell basename $(1))
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/brotli/
H A Dbrotli_1.1.0.bb18 basename=$(basename ${lib})
19 mv -v "${lib}" "${D}${libdir}/$(echo ${basename} | sed s/-static//)"
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-connectivity/gupnp/gssdp/
H A D0001-gssdp-enums.c.template-use-basename-instead-of-filen.patch4 Subject: [PATCH] gssdp-enums.c.template: use basename instead of filename
25 +/* enumerations from "@basename@" */
26 +#include "@basename@"
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-connectivity/gupnp/gupnp/
H A D0001-gupnp-enums.c.template-use-basename-instead-of-filen.patch4 Subject: [PATCH] gupnp-enums.c.template: use @basename@ instead of @filename@
25 +/* enumerations from "@basename@" */
26 +#include "@basename@"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/protobuf/protobuf/
H A Drun-ptest9 write_exe=`basename ${write_exe_full_path}`
17 read_exe=`basename ${read_exe_full_path}`
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/
H A D0008-Define-glibc-compatible-basename-for-non-glibc-syste.patch4 Subject: [PATCH 08/22] Define glibc compatible basename() for non-glibc
8 using non-posix basename implementation, we have a way out
26 +#define basename(src) (strrchr(src,'/') ? strrchr(src,'/')+1 : src)

12345678910>>...30