Searched refs:fs_config (Results 1 – 13 of 13) sorted by relevance
/build/make/tools/releasetools/ |
D | test_build_image.py | 108 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:
|
D | build_image.py | 152 fs_config = prop_dict.get("fs_config") 156 return origin_in, fs_config 159 return origin_in, fs_config 177 if fs_config: 185 with open(fs_config) as fr: 187 fs_config = merged_fs_config 188 prop_dict["first_pass"] = (in_dir, fs_config) 189 return in_dir, fs_config 231 def BuildImageMkfs(in_dir, prop_dict, out_file, target_out, fs_config): argument 266 if fs_config: [all …]
|
D | add_img_to_target_files | 378 fs_config = os.path.join( 380 if not os.path.exists(fs_config): 381 fs_config = None 384 if fs_config: 385 image_props["fs_config"] = fs_config
|
D | add_img_to_target_files.py | 378 fs_config = os.path.join( 380 if not os.path.exists(fs_config): 381 fs_config = None 384 if fs_config: 385 image_props["fs_config"] = fs_config
|
D | common.py | 1372 fs_config = "META/" + tree_subdir.lower() + "_filesystem_config.txt" 1374 os.path.join(unpack_dir, fs_config),
|
/build/make/tools/fs_config/end_to_end_test/ |
D | run_test.sh | 1 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/ |
D | Android.bp | 16 name: "soong-fs_config", 17 pkgPath: "android/soong/fs_config", 23 "fs_config.go", 29 name: "fs_config", 30 srcs: ["fs_config.c"],
|
D | fs_config_generator.py | 758 def _file_key(fs_config): argument 819 return StringWrapper(fs_config.path) 986 def _to_fs_entry(self, fs_config, out_file): argument 999 mode = fs_config.mode 1000 user = fs_config.user 1001 group = fs_config.group 1002 caps = fs_config.caps 1003 path = fs_config.path 1063 def _emit_entry(self, fs_config): argument 1066 path = fs_config.path [all …]
|
D | fs_config.go | 15 package fs_config package
|
D | README | 10 The fs_config_dirs and fs_config_files binary files are interpreted by the libcutils fs_config() 115 Thus the fs_config tools will match on specified paths before attempting prefix, and match on the 125 From within the fs_config directory, unit tests can be executed like so:
|
D | fs_config.c | 136 fs_config(buffer, is_dir, product_out_path, &uid, &gid, &mode, &capabilities); in main()
|
/build/make/tools/fs_get_stats/ |
D | fs_get_stats.c | 62 fs_config(argv[3], is_dir, argv[4], &uid, &gid, &perms, &capabilities); in main()
|
/build/make/core/ |
D | Makefile | 4116 fs_config \ 4494 define fs_config macro 4495 …-type d) | cut -c 3- | sort | sed 's,^,$(2),' | $(HOST_OUT_EXECUTABLES)/fs_config -C -D $(TARGET_O… 4599 $(HOST_OUT_EXECUTABLES)/fs_config \ 4837 $(hide) $(call fs_config,$(zip_root)/SYSTEM,system/) > $(zip_root)/META/filesystem_config.txt 4840 …$(hide) $(call fs_config,$(zip_root)/VENDOR,vendor/) > $(zip_root)/META/vendor_filesystem_config.t… 4843 …$(hide) $(call fs_config,$(zip_root)/PRODUCT,product/) > $(zip_root)/META/product_filesystem_confi… 4846 …$(hide) $(call fs_config,$(zip_root)/SYSTEM_EXT,system_ext/) > $(zip_root)/META/system_ext_filesys… 4849 $(hide) $(call fs_config,$(zip_root)/ODM,odm/) > $(zip_root)/META/odm_filesystem_config.txt 4852 $(hide) $(call fs_config,$(zip_root)/ROOT,) > $(zip_root)/META/root_filesystem_config.txt [all …]
|