bpfloader: 4.19+ required error message "Android V" -> "Android U QPR2"
This fixes up yesterday's commit that added
the error message in the first place.
Android U hopefully launches ~Sep/Oct 2023
Android U QPR1 should be approx. a quarter after that,
so ~Dec 2023 or ~Jan 2024.
Android U QPR2 presumably releases another quarter later,
ie. around March/April 2024.
Per: https://www.kernel.org/category/releases.html
The 4.14 LTS kernel series projected EOL is Jan, 2024
This means that U QPR1 is the last one that 'should'
still support 4.14.
We are free to drop support in U QPR2+ as those will
be released after 4.14 goes EOL.
aosp/main only merges into branches *after* the current
udc-qpr-dev and thus will not end up in U QPR1.
Test: TreeHugger
Signed-off-by: Maciej Żenczykowski <maze@google.com>
Change-Id: I3ad6cada3d40c8d2bb0ee07ff52b4e36e1689bde
diff --git a/bpfloader/BpfLoader.cpp b/bpfloader/BpfLoader.cpp
index e1dbd06..f2318c1 100644
--- a/bpfloader/BpfLoader.cpp
+++ b/bpfloader/BpfLoader.cpp
@@ -252,7 +252,7 @@
android::base::InitLogging(argv, &android::base::KernelLogger);
if (!android::bpf::isAtLeastKernelVersion(4, 19, 0)) {
- ALOGE("Android V requires kernel 4.19.");
+ ALOGE("Android U QPR2 requires kernel 4.19.");
return 1;
}