Searched refs:directory (Results 1 - 11 of 11) sorted by relevance

/u-boot/scripts/
H A Dgen_compile_commands.py26 # The tools/ directory adopts a different build system, and produces .cmd
35 directory: The work directory where the objects were built.
43 directory_help = ('specify the output directory used for the U-Boot build '
44 '(defaults to the working directory)')
45 parser.add_argument('-d', '--directory', type=str, default='.',
63 'If nothing is specified, the current directory is searched')
69 os.path.realpath(args.directory),
72 args.paths if len(args.paths) > 0 else [args.directory])
75 def cmdfiles_in_dir(directory)
[all...]
H A Dmkmakefile4 # directory, to allow make to be started from there.
8 # $1 - Kernel src directory
30 MAKEFLAGS += --no-print-directory
H A Dget_maintainer.pl335 die "$P: The current directory does not appear to be "
365 ##if pattern is a directory and it lacks a trailing slash, add one
535 ##if $file is a directory and it lacks a trailing slash, add one
726 ##if pattern is a directory and it lacks a trailing slash, add one
1035 $P [options] -f file|directory
1075 --pattern-depth => Number of pattern directory traversals (default: 0 (all))
1090 Using "-f directory" may give unexpected results:
1092 directory are examined as git recurses directories.
1094 Used with "--nogit", directory is used as a pattern match,
1095 no individual file within the directory o
[all...]
/u-boot/fs/yaffs2/
H A Dyaffs_verify.h36 void yaffs_verify_dir(struct yaffs_obj *directory);
H A Dyaffs_verify.c368 /* Verify parent is a directory */
372 "Obj %d's parent is not a directory (type %d)",
442 yaffs_trace(YAFFS_TRACE_ALWAYS, "Parent is not directory");
457 "Object in directory %d times",
463 void yaffs_verify_dir(struct yaffs_obj *directory) argument
468 if (!directory) {
473 if (yaffs_skip_full_verification(directory->my_dev))
476 if (directory->variant_type != YAFFS_OBJECT_TYPE_DIRECTORY) {
479 directory->variant_type);
485 list_for_each(lh, &directory
[all...]
H A Dyaffs_guts.c1268 void yaffs_add_obj_to_dir(struct yaffs_obj *directory, struct yaffs_obj *obj) argument
1270 if (!directory) {
1272 "tragedy: Trying to add an object to a null pointer directory"
1277 if (directory->variant_type != YAFFS_OBJECT_TYPE_DIRECTORY) {
1279 "tragedy: Trying to add an object to a non-directory"
1289 yaffs_verify_dir(directory);
1294 list_add(&obj->siblings, &directory->variant.dir_variant.children);
1295 obj->parent = directory;
1297 if (directory == obj->my_dev->unlinked_dir
1298 || directory
4310 yaffs_find_by_name(struct yaffs_obj *directory, const YCHAR *name) argument
[all...]
H A Dyaffs_guts.h363 * - a directory (no data, has children links
439 /* directory structure stuff */
545 int empty_lost_n_found; /* Auto-empty lost+found directory on mount */
582 * Linux uses it to protect the directory during unlocking.
600 int defered_dir_update; /* Set to defer directory updates */
752 /* Dirty directory handling */
930 void yaffs_add_obj_to_dir(struct yaffs_obj *directory, struct yaffs_obj *obj);
/u-boot/tools/
H A Dzynqmp_psu_init_minimize.sh15 run from the top-level U-Boot source directory.
23 If INPUT_DIR and OUTPUT_DIR are the same directory,
/u-boot/dts/upstream/
H A DMakefile22 MAKEFLAGS += -rR --no-print-directory
35 # o print "Entering directory ...";
36 MAKEFLAGS += -rR --no-print-directory
/u-boot/tools/patman/
H A Dfunc_test.py38 def directory_excursion(directory):
39 """Change directory to `directory` for a limited to the context block."""
42 os.chdir(directory)
75 str: Full path to file in the test directory
107 This copies patch files from the test directory as needed by the series
/u-boot/
H A DMakefile55 # their own directory. If in some directory we have a dependency on
123 # kbuild supports saving output files in a separate directory.
124 # To locate output files in a separate directory two syntaxes are supported.
125 # In both cases the working directory must be the root of the kernel src.
130 # Set the environment variable KBUILD_OUTPUT to point to the directory
138 # KBUILD_SRC is set on invocation of make in OBJ directory
142 # OK, Make called in directory where kernel src resides
143 # Do we want to locate output files in a separate directory?
156 # Invoke a second make in the output directory, passin
[all...]

Completed in 85 milliseconds