Home
last modified time | relevance | path

Searched refs:fs_config (Results 1 – 13 of 13) sorted by relevance

/build/make/tools/releasetools/
Dtest_build_image.py108 in_dir, fs_config = SetUpInDirAndFsConfig('/path/to/in_dir', prop_dict)
110 self.assertEqual('fs-config', fs_config)
115 fs_config = common.MakeTempFile(suffix='.txt')
116 with open(fs_config, 'w') as fs_config_fp:
118 return fs_config
137 in_dir, fs_config = SetUpInDirAndFsConfig(origin_in, prop_dict)
146 self.assertTrue(filecmp.cmp(fs_config_system, fs_config))
168 in_dir, fs_config = SetUpInDirAndFsConfig(origin_in, prop_dict)
177 with open(fs_config) as fs_config_fp:
Dbuild_image.py156 fs_config = prop_dict.get("fs_config")
160 return origin_in, fs_config
163 return origin_in, fs_config
181 if fs_config:
189 with open(fs_config) as fr:
191 fs_config = merged_fs_config
192 prop_dict["first_pass"] = (in_dir, fs_config)
193 return in_dir, fs_config
235 def BuildImageMkfs(in_dir, prop_dict, out_file, target_out, fs_config): argument
271 if fs_config:
[all …]
Dadd_img_to_target_files.py411 fs_config = os.path.join(
413 if not os.path.exists(fs_config):
414 fs_config = None
417 if fs_config:
418 image_props["fs_config"] = fs_config
Dadd_img_to_target_files411 fs_config = os.path.join(
413 if not os.path.exists(fs_config):
414 fs_config = None
417 if fs_config:
418 image_props["fs_config"] = fs_config
Dcommon.py1791 fs_config = "META/" + tree_subdir.lower() + "_filesystem_config.txt"
1793 os.path.join(unpack_dir, fs_config),
/build/make/tools/fs_config/end_to_end_test/
Drun_test.sh1 cd $ANDROID_BUILD_TOP/build/make/tools/fs_config/end_to_end_test
3 $ANDROID_BUILD_TOP/build/make/tools/fs_config/fs_config_generator.py fsconfig \
15 $ANDROID_BUILD_TOP/build/make/tools/fs_config/fs_config_generator.py fsconfig \
27 $ANDROID_BUILD_TOP/build/make/tools/fs_config/fs_config_generator.py fsconfig \
38 $ANDROID_BUILD_TOP/build/make/tools/fs_config/fs_config_generator.py fsconfig \
49 $ANDROID_BUILD_TOP/build/make/tools/fs_config/fs_config_generator.py fsconfig \
60 $ANDROID_BUILD_TOP/build/make/tools/fs_config/fs_config_generator.py fsconfig \
/build/make/tools/fs_config/
Dfs_config_generator.py757 def _file_key(fs_config): argument
818 return StringWrapper(fs_config.path)
985 def _to_fs_entry(self, fs_config, out_file): argument
998 mode = fs_config.mode
999 user = fs_config.user
1000 group = fs_config.group
1001 caps = fs_config.caps
1002 path = fs_config.path
1062 def _emit_entry(self, fs_config): argument
1065 path = fs_config.path
[all …]
DAndroid.bp25 name: "soong-fs_config",
26 pkgPath: "android/soong/fs_config",
32 "fs_config.go",
38 name: "fs_config",
39 srcs: ["fs_config.c"],
DREADME.md14 `fs_config()` function, along with the built-in defaults, to serve as overrides to complete the
60 Thus the `fs_config` tools will match on specified paths before attempting prefix, and match on the
70 From within the `fs_config` directory, unit tests can be executed like so:
Dfs_config.go15 package fs_config package
Dfs_config.c137 fs_config(buffer, is_dir, product_out_path, &uid, &gid, &mode, &capabilities); in main()
/build/make/tools/fs_get_stats/
Dfs_get_stats.c63 fs_config(argv[3], is_dir, argv[4], &uid, &gid, &perms, &capabilities); in main()
/build/make/core/
DMakefile4332 fs_config \
4752 define fs_config macro
4753 …-type d) | cut -c 3- | sort | sed 's,^,$(2),' | $(HOST_OUT_EXECUTABLES)/fs_config -C -D $(TARGET_O…
4952 $(HOST_OUT_EXECUTABLES)/fs_config \
5258 $(hide) $(call fs_config,$(zip_root)/SYSTEM,system/) > $(zip_root)/META/filesystem_config.txt
5261 …$(hide) $(call fs_config,$(zip_root)/VENDOR,vendor/) > $(zip_root)/META/vendor_filesystem_config.t…
5264 …$(hide) $(call fs_config,$(zip_root)/PRODUCT,product/) > $(zip_root)/META/product_filesystem_confi…
5267 …$(hide) $(call fs_config,$(zip_root)/SYSTEM_EXT,system_ext/) > $(zip_root)/META/system_ext_filesys…
5270 $(hide) $(call fs_config,$(zip_root)/ODM,odm/) > $(zip_root)/META/odm_filesystem_config.txt
5273 …$(hide) $(call fs_config,$(zip_root)/VENDOR_DLKM,vendor_dlkm/) > $(zip_root)/META/vendor_dlkm_file…
[all …]