bpf_progs: explicitly set btf to false on offload.o & test.o
These need to have no btf information to not fail loading on S.
(this is currently a no-op, as 'false' is the default,
this may change in the future)
Test: TreeHugger
Signed-off-by: Maciej Żenczykowski <maze@google.com>
Change-Id: I4117b7154583a9657387d495f8c19672f807e176
diff --git a/bpf_progs/Android.bp b/bpf_progs/Android.bp
index 1958aa8..0c21c9b 100644
--- a/bpf_progs/Android.bp
+++ b/bpf_progs/Android.bp
@@ -87,6 +87,7 @@
bpf {
name: "offload.o",
srcs: ["offload.c"],
+ btf: false,
cflags: [
"-Wall",
"-Werror",
@@ -107,6 +108,7 @@
bpf {
name: "test.o",
srcs: ["test.c"],
+ btf: false,
cflags: [
"-Wall",
"-Werror",