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

Commit 7b5c277d authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 10338099 from 90721097 to udc-release

Change-Id: Ib6ffe19372b4934bcd8681b5aec8af1de1018307
parents acaf4e60 90721097
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3586,7 +3586,7 @@ Dumpstate::RunStatus Dumpstate::ParseCommandlineAndRun(int argc, char* argv[]) {
        // an app; they are irrelevant here because bugreport is triggered via command line.
        // Update Last ID before calling Run().
        Initialize();
        status = Run(-1 /* calling_uid */, "" /* calling_package */);
        status = Run(0 /* calling_uid */, "" /* calling_package */);
    }
    return status;
}
+2 −1
Original line number Diff line number Diff line
@@ -165,7 +165,8 @@ static int otapreopt_chroot(const int argc, char **arg) {

    // Bind mount necessary directories.
    constexpr const char* kBindMounts[] = {
            "/data", "/dev", "/proc", "/sys"
            "/data", "/dev", "/proc", "/sys",
            "/sys/fs/selinux" /* Required for apexd which includes libselinux */
    };
    for (size_t i = 0; i < arraysize(kBindMounts); ++i) {
        std::string trg = StringPrintf("/postinstall%s", kBindMounts[i]);