From 9b2d17ea9575a8531fdfff220f89662eacb93667 Mon Sep 17 00:00:00 2001 From: LuK1337 Date: Tue, 5 Jan 2021 13:42:00 +0100 Subject: [PATCH] Switch to QTI bootctrl HAL Change-Id: Ie5079fd4c40cb1f7414f2cba9f98d350f03047d8 --- Android.bp | 1 + bootctrl/Android.bp | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 bootctrl/Android.bp diff --git a/Android.bp b/Android.bp index 9515b25..dfecee0 100644 --- a/Android.bp +++ b/Android.bp @@ -1,2 +1,3 @@ soong_namespace { + imports: ["hardware/qcom-caf/bootctrl"], } diff --git a/bootctrl/Android.bp b/bootctrl/Android.bp new file mode 100644 index 0000000..4de03aa --- /dev/null +++ b/bootctrl/Android.bp @@ -0,0 +1,11 @@ +// +// Copyright (C) 2022 The Android Open Source Project +// SPDX-License-Identifier: Apache-2.0 +// + +cc_library_shared { + name: "android.hardware.boot@1.1-impl-qti", + stem: "android.hardware.boot@1.0-impl-1.1-qti", + defaults: ["android.hardware.boot@1.1-impl-qti_defaults"], + static_libs: ["libgptutils.oplus"], +}