| /OK3568_Linux_fs/buildroot/utils/ |
| H A D | scancpan | 688 sub fsname { subroutine 720 my $fsname = fsname( $distname ); 721 my $dirname = q{package/} . $fsname; 723 my $mkname = $dirname . q{/} . $fsname . q{.mk}; 724 my $hashname = $dirname . q{/} . $fsname . q{.hash}; 725 my $brname = brname( $fsname ); 740 say {$fh} qq{\tbool "${fsname}"}; 743 my $brdep = brname( fsname( $dep ) ); 750 say {$fh} qq{\ncomment "${fsname} needs a toolchain w/ dynamic library"}; 763 my @dependencies = map( { q{host-} . fsname( $_ ); } sort @{$deps_build{$distname}} ); [all …]
|
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | jffs2.c | 475 char *fsname; in do_jffs2_fsload() local 502 fsname = (cramfs_check(part) ? "CRAMFS" : "JFFS2"); in do_jffs2_fsload() 503 printf("### %s loading '%s' to 0x%lx\n", fsname, filename, offset); in do_jffs2_fsload() 514 fsname, size, offset); in do_jffs2_fsload() 517 printf("### %s LOAD ERROR<%x> for %s!\n", fsname, size, filename); in do_jffs2_fsload() 576 char *fsname; in do_jffs2_fsinfo() local 586 fsname = (cramfs_check(part) ? "CRAMFS" : "JFFS2"); in do_jffs2_fsinfo() 587 printf("### filesystem type is %s\n", fsname); in do_jffs2_fsinfo()
|
| /OK3568_Linux_fs/u-boot/fs/zfs/ |
| H A D | zfs.c | 1309 get_filesystem_dnode(dnode_end_t *mosmdn, char *fsname, in get_filesystem_dnode() argument 1328 while (*fsname) { in get_filesystem_dnode() 1332 while (*fsname == '/') in get_filesystem_dnode() 1333 fsname++; in get_filesystem_dnode() 1335 if (!*fsname || *fsname == '@') in get_filesystem_dnode() 1338 cname = fsname; in get_filesystem_dnode() 1339 while (*fsname && !isspace(*fsname) && *fsname != '/') in get_filesystem_dnode() 1340 fsname++; in get_filesystem_dnode() 1341 ch = *fsname; in get_filesystem_dnode() 1342 *fsname = 0; in get_filesystem_dnode() [all …]
|
| /OK3568_Linux_fs/buildroot/package/busybox/ |
| H A D | 0006-Support-PARTLABEL.patch | 167 @@ -311,6 +350,8 @@ int resolve_mount_spec(char **fsname) 168 tmp = get_devname_from_uuid(*fsname + 5); 169 else if (is_prefixed_with(*fsname, "LABEL=")) 170 tmp = get_devname_from_label(*fsname + 6); 171 + else if (is_prefixed_with(*fsname, "PARTLABEL=")) 172 + tmp = get_devname_from_partlabel(*fsname + 10); 174 if (tmp == *fsname)
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/proc/ |
| H A D | proc-fsconfig-hidepid.c | 23 static inline int fsopen(const char *fsname, unsigned int flags) in fsopen() argument 25 return syscall(__NR_fsopen, fsname, flags); in fsopen()
|
| /OK3568_Linux_fs/buildroot/package/luarocks/ |
| H A D | buildroot.lua | 320 local fsname = args.brname or rockname 396 ok, err = fs.make_dir('package/' .. fsname:lower()) 399 generate_config(rockspec, fsname:lower()) 400 generate_mk(rockspec, fsname:lower(), licenses) 401 generate_hash(rockspec, fsname:lower(), rock_file, licenses, digest) 405 generate_test(rockspec, fsname:lower())
|
| /OK3568_Linux_fs/u-boot/drivers/dfu/ |
| H A D | dfu_mmc.c | 112 const char *fsname, *opname; in mmc_file_op() local 119 fsname = "fat"; in mmc_file_op() 122 fsname = "ext4"; in mmc_file_op() 144 sprintf(cmd_buf, "%s%s mmc %d:%d", fsname, opname, in mmc_file_op()
|
| /OK3568_Linux_fs/kernel/fs/romfs/ |
| H A D | super.c | 157 char fsname[ROMFS_MAXFN]; /* XXX dynamic? */ in romfs_readdir() local 186 sizeof(fsname) - 1); in romfs_readdir() 190 ret = romfs_dev_read(i->i_sb, offset + ROMFH_SIZE, fsname, j); in romfs_readdir() 193 fsname[j] = '\0'; in romfs_readdir() 199 if (!dir_emit(ctx, fsname, j, ino, in romfs_readdir()
|
| /OK3568_Linux_fs/kernel/fs/gfs2/ |
| H A D | lock_dlm.c | 1252 const char *fsname; in gdlm_mount() local 1279 fsname = strchr(table, ':'); in gdlm_mount() 1280 if (!fsname) { in gdlm_mount() 1286 memcpy(cluster, table, strlen(table) - strlen(fsname)); in gdlm_mount() 1287 fsname++; in gdlm_mount() 1295 error = dlm_new_lockspace(fsname, cluster, flags, GDLM_LVB_SIZE, in gdlm_mount()
|
| H A D | sys.c | 277 GFS2_ATTR(fsname, 0444, fsname_show, NULL);
|
| /OK3568_Linux_fs/kernel/security/integrity/ima/ |
| H A D | ima_policy.c | 86 char *fsname; member 346 kfree(entry->fsname); in ima_free_rule() 524 && strcmp(rule->fsname, inode->i_sb->s_type->name)) in ima_match_rules() 1285 entry->fsname = kstrdup(args[0].from, GFP_KERNEL); in ima_parse_rule() 1286 if (!entry->fsname) { in ima_parse_rule() 1688 snprintf(tbuf, sizeof(tbuf), "%s", entry->fsname); in ima_policy_show()
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | gfs2-glocks.rst | 213 /sys/kernel/debug/gfs2/<fsname>/sbstats 217 /sys/kernel/debug/gfs2/<fsname>/glstats 220 that <fsname> is replaced with the name of the gfs2 filesystem
|
| H A D | gfs2-uevents.rst | 51 recovery via the /sys/fs/gfs2/<fsname>/lock_module/recovery file.
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | ima_policy | 26 [euid=] [fowner=] [fsname=]]
|
| /OK3568_Linux_fs/buildroot/boot/grub2/ |
| H A D | 0005-calloc-Use-calloc-at-most-places.patch | 665 grub_free (fsname);
|