Home
last modified time | relevance | path

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

12345678910>>...33

/openbmc/linux/drivers/usb/serial/
H A Dezusb_convert.pl13 my $basename = $ARGV[0];
14 die "no base name specified" unless $basename;
35 * ${basename}_fw.h
37 * Generated from ${basename}.s by ezusb_convert.pl
44 print "static const struct ezusb_hex_record ${basename}_firmware[] = {\n";
/openbmc/openbmc/poky/meta/recipes-core/util-linux/util-linux/
H A D0001-login-utils-include-libgen.h-for-basename-API.patch4 Subject: [PATCH] login-utils: include libgen.h for basename API
6 musl has removed the non-prototype declaration of basename from string.h [1] which now results in b…
12 ../util-linux-2.39.2/login-utils/su-common.c:847:20: error: call to undeclared function 'basename';…
13 847 | shell_basename = basename(shell);
46 - shell_basename = basename(shell);
47 + shell_basename = basename(tmp);
53 - args[0] = basename(shell);
55 + args[0] = basename(tmp);
/openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-support/composefs/files/
H A D0001-musl-basename-use-portable-implementation-for-basena.patch4 Subject: [PATCH] musl: basename: use portable implementation for basename API
6 musl has removed the non-prototype declaration of basename from string.h which
9 Implement GNU basename behavior using strchr which is portable across libcs.
13 | error: call to undeclared function 'basename'; ISO C99 and later do not
15 | 43 | const char *bin = basename(argv0);
20 | 43 | const char *bin = basename(argv0);
47 - const char *bin = basename(argv0);
71 - const char *bin = basename(argv0);
/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))
102 if basename in autoloadlist:
111 f.write('%s\n' % basename)
123 modconf = d.getVar('module_conf_%s' % basename)
124 if modconf and basename in modconflist:
[all …]
/openbmc/linux/crypto/
H A Dsimd.c141 const char *basename) in simd_skcipher_create_compat() argument
162 salg->ialg_name = basename; in simd_skcipher_create_compat()
210 const char *basename) in simd_skcipher_create() argument
236 const char *basename; in simd_register_skciphers_compat() local
248 basename = algs[i].base.cra_driver_name; in simd_register_skciphers_compat()
388 const char *basename) in simd_aead_create_compat() argument
396 tfm = crypto_alloc_aead(basename, CRYPTO_ALG_INTERNAL, in simd_aead_create_compat()
409 salg->ialg_name = basename; in simd_aead_create_compat()
457 const char *basename) in simd_aead_create() argument
483 const char *basename; in simd_register_aeads_compat() local
[all …]
/openbmc/openbmc/poky/meta/recipes-kernel/kmod/kmod/
H A D0001-Use-portable-implementation-for-basename-API.patch4 Subject: [PATCH] Use portable implementation for basename API
6 musl has removed the non-prototype declaration of basename from
9 Implement GNU basename behavior using strchr which is portable across libcs
12 ../git/tools/kmod.c:71:19: error: call to undeclared function 'basename'; ISO C99 and later do not …
13 71 | "Commands:\n", basename(argv[0]));
40 - name = basename(path);
56 - modname = basename(path);
94 - "Options:\n", basename(progname));
107 - name = basename(dir);
120 - "Commands:\n", basename(argv[0]));
[all …]
/openbmc/linux/include/crypto/internal/
H A Dsimd.h19 const char *basename);
21 const char *basename);
37 const char *basename);
39 const char *basename);
/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/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/opkg/opkg/
H A D0001-libopkg-Use-libgen.h-to-provide-basename-API.patch4 Subject: [PATCH v2] libopkg: Use libgen.h to provide basename API
7 so it can be operated upon by posix basename which expect non-const
10 This became evident with latest musl where basename declaration was
18 v2: Do not override basename wholesale
40 - archive_entry_set_pathname(entry, basename(filename));
43 + archive_entry_set_pathname(entry, basename(tmp));
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/multipath-tools/files/
H A D0001-libmultipath-always-use-glibc-basename.patch4 Subject: [PATCH] libmultipath: 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 + * glibc's non-destructive version of basename()
34 +#define basename(x) __basename(x)
/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/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/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/linux/drivers/input/touchscreen/
H A Dwacom_w8001.c422 static int w8001_setup_pen(struct w8001 *w8001, char *basename, in w8001_setup_pen() argument
458 strlcat(basename, " Penabled", basename_sz); in w8001_setup_pen()
508 strlcat(basename, " 1FG", basename_sz); in w8001_setup_touch()
515 strlcat(basename, " 1FG", basename_sz); in w8001_setup_touch()
539 strlcat(basename, " 2FG", basename_sz); in w8001_setup_touch()
547 strlcat(basename, " Touchscreen", basename_sz); in w8001_setup_touch()
598 char basename[64]; in w8001_connect() local
628 strscpy(basename, "Wacom Serial", sizeof(basename)); in w8001_connect()
630 err_pen = w8001_setup_pen(w8001, basename, sizeof(basename)); in w8001_connect()
631 err_touch = w8001_setup_touch(w8001, basename, sizeof(basename)); in w8001_connect()
[all …]
/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 = d.expand(urllib.parse.unquote(ud.basename))
H A Dgcp.py45 ud.basename = ud.parm['downloadfilename']
47 ud.basename = os.path.basename(ud.path)
49 ud.localfile = d.expand(urllib.parse.unquote(ud.basename))
/openbmc/openbmc/poky/meta/recipes-connectivity/connman/connman/
H A D0001-src-log.c-Include-libgen.h-for-basename-API.patch4 Subject: [PATCH v2] src/log.c: Include libgen.h for basename API
6 Use POSIX version of basename. This comes to front with latest musl
10 Fix it by applying the basename on a copy of string since posix version
46 - openlog(basename(program), option, LOG_DAEMON);
48 + openlog(basename(tmp), option, LOG_DAEMON);
/openbmc/qemu/scripts/
H A Dshaderinclude.py13 basename = os.path.basename(file_path)
14 varname = basename.replace('-', '_').replace('.', '_')
/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/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-multimedia/recipes-multimedia/libcamera/libcamera/
H A D0001-ipu3-Use-posix-basename.patch4 Subject: [PATCH] ipu3: Use posix basename
6 musl does not implement GNU basename extention and with latest musl
10 ../git/utils/ipu3/ipu3-pack.c:21:47: error: call to undeclared function 'basename'; ISO C99 and lat…
13 before program exit. Always use the basename APIs from libgen.h which is
45 printf("Usage: %s input-file output-file\n", basename(argv0));
67 printf("Usage: %s input-file output-file\n", basename(argv0));
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/drbd/drbd-utils/
H A D0001-drbdmon-add-LDFLAGS-when-linking.patch25 @@ -72,7 +72,7 @@ $(dsaext-obj): $(basename $(dsaext-obj)).cpp $(basename $(dsaext-obj)).h
26 $(integerparse-obj): $(basename $(integerparse-obj)).cpp $(basename $(integerparse-obj)).h
/openbmc/linux/tools/mm/
H A Dslabinfo-gnuplot.sh61 out_file=`basename "$file"`
116 file="$file"`basename "$i"`
151 out=`basename "$in"`"-slabs-by-loss"
160 out=`basename "$in"`"-slabs-by-size"
168 out=`basename "$in"`"-totals"
/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//)"

12345678910>>...33