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

Commit b7eaa14f authored by Sundong Ahn's avatar Sundong Ahn Committed by Android (Google) Code Review
Browse files

Merge "Add disable_configstore" into rvc-dev

parents 7bf05d75 11a113a6
Loading
Loading
Loading
Loading
+11 −0
Original line number Original line Diff line number Diff line
@@ -35,3 +35,14 @@ LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR)/etc/seccomp_policy
LOCAL_SRC_FILES := seccomp_policy/configstore@1.1-$(TARGET_ARCH).policy
LOCAL_SRC_FILES := seccomp_policy/configstore@1.1-$(TARGET_ARCH).policy
include $(BUILD_PREBUILT)
include $(BUILD_PREBUILT)
endif
endif

# disable configstore
include $(CLEAR_VARS)
LOCAL_MODULE := disable_configstore
LOCAL_MODULE_CLASS := EXECUTABLES
LOCAL_SRC_FILES:= disable_configstore.cpp
LOCAL_OVERRIDES_MODULES := android.hardware.configstore@1.1-service
LOCAL_VENDOR_MODULE := true
LOCAL_UNINSTALLABLE_MODULE := true

include $(BUILD_EXECUTABLE)
+19 −0
Original line number Original line Diff line number Diff line
/*
 * Copyright (C) 2020 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.1 (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.1
 *
 * 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.
 */

int main() {
    return 1;
}