summaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorSteve Muckle <smuckle@google.com>2021-01-13 12:28:01 -0800
committerSteve Muckle <smuckle@google.com>2021-01-13 12:28:01 -0800
commit523ee43806d1660e0266e377b455709f48adf6ac (patch)
treefe5df394b564a4b6791221dfe0f99e22c3dc675e /Android.bp
parent9d71ba31f8ab260578a38b1594426b338956e1d6 (diff)
downloadx86-64-523ee43806d1660e0266e377b455709f48adf6ac.tar.gz
Add Android.bp with filegroup for kernel
Soong targets cannot refer to files outside of their directory and children. Add a filegroup target that users of kernel prebuilts can reference instead. Test: N/A Change-Id: Ib0162c64e96eef94ac334473be9ffd95390a8ebf
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp18
1 files changed, 18 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..51664bf
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,18 @@
+// Copyright (C) 2021 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.
+
+filegroup {
+ name: "kernel_prebuilts-5.10-x86_64",
+ srcs: ["kernel-5.10"],
+}