diff options
author | Yifan Hong <elsk@google.com> | 2020-09-15 17:08:06 -0700 |
---|---|---|
committer | Yifan Hong <elsk@google.com> | 2020-09-16 09:22:15 -0700 |
commit | cd3d7cce0fc636bc16c0b3cd82d596629b0a5479 (patch) | |
tree | a33484e968b24d90b8772549d52a62e295fd9cf9 /compatibility_matrices/exclude/fcm_exclude.cpp | |
parent | 1cfd94a8cff229e27166c121e5b421aba87a1db7 (diff) |
Reorder/cleanup FCM exempt list #3 (fastboot)
Test: m check-vintf-all
Bug: 110261831
Change-Id: I267b3ae9980d72e63187058a5bef8e4b44a2314c
Diffstat (limited to 'compatibility_matrices/exclude/fcm_exclude.cpp')
-rw-r--r-- | compatibility_matrices/exclude/fcm_exclude.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/compatibility_matrices/exclude/fcm_exclude.cpp b/compatibility_matrices/exclude/fcm_exclude.cpp index 8a35deedac..4c400e9fde 100644 --- a/compatibility_matrices/exclude/fcm_exclude.cpp +++ b/compatibility_matrices/exclude/fcm_exclude.cpp @@ -44,7 +44,6 @@ bool ShouldCheckMissingHalsInFcm(const std::string& package) { static std::vector<std::string> excluded_exact{ // TODO(b/110261831): reduce items in this list - "android.hardware.fastboot@1.0", "android.hardware.media.bufferpool@1.0", "android.hardware.media.bufferpool@2.0", "android.hardware.tv.cec@2.0", @@ -59,6 +58,10 @@ bool ShouldCheckMissingHalsInFcm(const std::string& package) { "android.hardware.common", "android.hardware.graphics.common", "android.hardware.keymaster", + + // Fastboot HAL is only used by recovery. Recovery is owned by OEM. Framework + // does not depend on this HAL, hence it is not declared in any manifests or matrices. + "android.hardware.fastboot@1.0", }; auto package_has_prefix = [&](const std::string& prefix) { |