Searched refs:fs_config (Results 1 – 11 of 11) sorted by relevance
/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/releasetools/ |
D | test_build_image.py | 107 in_dir, fs_config = SetUpInDirAndFsConfig('/path/to/in_dir', prop_dict) 109 self.assertEqual('fs-config', fs_config) 114 fs_config = common.MakeTempFile(suffix='.txt') 115 with open(fs_config, 'w') as fs_config_fp: 117 return fs_config 136 in_dir, fs_config = SetUpInDirAndFsConfig(origin_in, prop_dict) 145 self.assertTrue(filecmp.cmp(fs_config_system, fs_config)) 167 in_dir, fs_config = SetUpInDirAndFsConfig(origin_in, prop_dict) 176 with open(fs_config) as fs_config_fp:
|
D | build_image.py | 168 fs_config = prop_dict.get("fs_config") 172 return origin_in, fs_config 175 return origin_in, fs_config 193 if fs_config: 201 with open(fs_config) as fr: 203 fs_config = merged_fs_config 204 prop_dict["first_pass"] = (in_dir, fs_config) 205 return in_dir, fs_config 266 def BuildImageMkfs(in_dir, prop_dict, out_file, target_out, fs_config): argument 305 if fs_config: [all …]
|
D | add_img_to_target_files.py | 589 fs_config = os.path.join( 591 if not os.path.exists(fs_config): 592 fs_config = None 595 if fs_config: 596 image_props["fs_config"] = fs_config
|
D | common.py | 1963 fs_config = "META/" + tree_subdir.lower() + "_filesystem_config.txt" 1965 os.path.join(unpack_dir, fs_config), 2104 fs_config = "META/" + tree_subdir.lower() + "_filesystem_config.txt" 2106 …os.path.join(unpack_dir, tree_subdir), os.path.join(unpack_dir, fs_config), "vendor_boot", info_di…
|
/build/make/tools/fs_config/ |
D | Android.bp | 21 name: "soong-fs_config", 22 pkgPath: "android/soong/fs_config", 28 "fs_config.go", 34 name: "fs_config", 35 srcs: ["fs_config.c"], 430 // TODO(jiyong): add fs_config for oem, system_dlkm, vendor_dlkm, odm_dlkm partitions
|
D | fs_config_generator.py | 781 def _file_key(fs_config): argument 842 return StringWrapper(fs_config.path) 1009 def _to_fs_entry(self, fs_config, out_file): argument 1022 mode = fs_config.mode 1023 user = fs_config.user 1024 group = fs_config.group 1025 caps = fs_config.caps 1026 path = fs_config.path 1086 def _emit_entry(self, fs_config): argument 1089 path = fs_config.path [all …]
|
D | fs_config.go | 15 package fs_config package
|
D | fs_config.c | 109 fs_config(buffer, is_dir, product_out_path, &uid, &gid, &mode, &capabilities); in main()
|
D | README.md | 14 `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:
|
/build/make/core/ |
D | Makefile | 5590 fs_config \ 6152 define fs_config macro 6153 …-type d) | cut -c 3- | sort | sed 's,^,$(2),' | $(HOST_OUT_EXECUTABLES)/fs_config -C -D $(TARGET_O… 6433 $(HOST_OUT_EXECUTABLES)/fs_config \ 6792 $(hide) $(call fs_config,$(zip_root)/SYSTEM,system/) > $(zip_root)/META/filesystem_config.txt 6796 …$(hide) $(call fs_config,$(zip_root)/VENDOR,vendor/) > $(zip_root)/META/vendor_filesystem_config.t… 6800 …$(hide) $(call fs_config,$(zip_root)/PRODUCT,product/) > $(zip_root)/META/product_filesystem_confi… 6804 …$(hide) $(call fs_config,$(zip_root)/SYSTEM_EXT,system_ext/) > $(zip_root)/META/system_ext_filesys… 6808 $(hide) $(call fs_config,$(zip_root)/ODM,odm/) > $(zip_root)/META/odm_filesystem_config.txt 6812 …$(hide) $(call fs_config,$(zip_root)/VENDOR_DLKM,vendor_dlkm/) > $(zip_root)/META/vendor_dlkm_file… [all …]
|