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"], +}