Merge changes from topic "ramdisk"

* changes:
  Add e2fsck to fs_config
  Make ramdisk_available.
This commit is contained in:
Yifan Hong 2020-01-24 22:39:35 +00:00 committed by Gerrit Code Review
commit d66e442c21
5 changed files with 7 additions and 0 deletions

View file

@ -33,6 +33,7 @@ cc_defaults {
cc_library_headers {
name: "libbase_headers",
vendor_available: true,
ramdisk_available: true,
recovery_available: true,
host_supported: true,
native_bridge_supported: true,
@ -112,6 +113,7 @@ cc_library {
name: "libbase",
defaults: ["libbase_defaults"],
vendor_available: true,
ramdisk_available: true,
recovery_available: true,
host_supported: true,
native_bridge_supported: true,

View file

@ -196,6 +196,7 @@ static const struct fs_path_config android_files[] = {
{ 00750, AID_ROOT, AID_SHELL, CAP_MASK_LONG(CAP_SETUID) |
CAP_MASK_LONG(CAP_SETGID),
"system/bin/simpleperf_app_runner" },
{ 00755, AID_ROOT, AID_ROOT, 0, "first_stage_ramdisk/system/bin/e2fsck" },
// generic defaults
{ 00755, AID_ROOT, AID_ROOT, 0, "bin/*" },
{ 00640, AID_ROOT, AID_SHELL, 0, "fstab.*" },

View file

@ -39,6 +39,7 @@ cc_library_headers {
name: "liblog_headers",
host_supported: true,
vendor_available: true,
ramdisk_available: true,
recovery_available: true,
native_bridge_supported: true,
export_include_dirs: ["include"],
@ -62,6 +63,7 @@ cc_library_headers {
cc_library {
name: "liblog",
host_supported: true,
ramdisk_available: true,
recovery_available: true,
native_bridge_supported: true,
srcs: liblog_sources,

View file

@ -3,6 +3,7 @@
cc_library {
name: "libsparse",
host_supported: true,
ramdisk_available: true,
recovery_available: true,
unique_host_soname: true,
srcs: [

View file

@ -2,6 +2,7 @@ cc_library_static {
name: "libpropertyinfoparser",
host_supported: true,
vendor_available: true,
ramdisk_available: true,
recovery_available: true,
native_bridge_supported: true,
srcs: ["property_info_parser.cpp"],