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

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

Snap for 11286711 from 3f992e64 to 24Q2-release

Change-Id: I22c7c8040e3b44938a22e871ecb2625136692c77
parents 0fc827c2 3f992e64
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -41,9 +41,6 @@
    {
      "name": "liblp_test"
    },
    {
      "name": "vts_libsnapshot_test"
    },
    {
      "name": "vab_legacy_tests"
    },
+2 −2
Original line number Diff line number Diff line
@@ -380,8 +380,8 @@ bool RemountPartition(Fstab& fstab, Fstab& mounts, FstabEntry& entry) {

    // Now remount!
    for (const auto& mnt_point : {mount_point, entry.mount_point}) {
        if (::mount(blk_device.c_str(), mnt_point.c_str(), entry.fs_type.c_str(), MS_REMOUNT,
                    nullptr) == 0) {
        if (::mount(blk_device.c_str(), mnt_point.c_str(), entry.fs_type.c_str(),
                    MS_REMOUNT | MS_NOATIME, nullptr) == 0) {
            LOG(INFO) << "Remounted " << mnt_point << " as RW";
            return true;
        }
+35 −0
Original line number Diff line number Diff line
// Copyright (C) 2024 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

cc_library {
    name: "libvendorsupport",
    native_bridge_supported: true,
    llndk: {
        symbol_file: "libvendorsupport.map.txt",
    },
    srcs: ["version_props.c"],
    cflags: [
        "-Wall",
        "-Werror",
    ],
    local_include_dirs: ["include/vendorsupport"],
    export_include_dirs: ["include"],
    shared_libs: [
        "liblog",
    ],
}
+2 −0
Original line number Diff line number Diff line
jiyong@google.com
justinyun@google.com
+7 −0
Original line number Diff line number Diff line
{
  "postsubmit": [
    {
      "name": "libvendorsupport-tests"
    }
  ]
}
Loading