Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6019dc1a authored by Justin Yun's avatar Justin Yun
Browse files

Do not install debug packages for user build

Debug packages must be installed only for the debug build.

logpersist.start is a debug package but installed only in user build
only for cf targets.

Bug: 384834219
Test: lunch aosp_cf_x86_64_phone-trunk_staging-user &&
      m file_diff.timestamp
Change-Id: I60e4333ec607295bae4554a39cda3835f8f847cb
parent b0b317ff
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -470,7 +470,6 @@ android_filesystem_defaults {
        "locksettings", // base_system
        "logcat", // base_system
        "logd", // base_system
        "logpersist.start",
        "lpdump", // base_system
        "lshal", // base_system
        "make_f2fs", // media_system
@@ -527,7 +526,6 @@ android_filesystem_defaults {
        "sfdo", // base_system
        "sgdisk", // base_system
        "sm", // base_system
        "snapshotctl", // base_system
        "snapuserd", // base_system
        "storaged", // base_system
        "surfaceflinger", // base_system
@@ -585,6 +583,7 @@ android_filesystem_defaults {
            "iperf3",
            "iw",
            "layertracegenerator",
            "logpersist.start",
            "logtagd.rc",
            "ot-cli-ftd",
            "ot-ctl",
@@ -595,6 +594,7 @@ android_filesystem_defaults {
            "sanitizer-status",
            "servicedispatcher",
            "showmap",
            "snapshotctl",
            "sqlite3",
            "ss",
            "start_with_lockagent",
@@ -911,4 +911,9 @@ android_system_image {
        compressor: "lz4hc,9",
        compress_hints: "erofs_compress_hints.txt",
    },
    deps: [
        // DO NOT update this list. Instead, update the system_image_defaults to
        // sync with the base_system.mk
        "logpersist.start", // cf only
    ],
}