diff options
author | josephjang <josephjang@google.com> | 2020-09-24 09:51:08 +0800 |
---|---|---|
committer | Joseph Jang <josephjang@google.com> | 2020-09-30 02:55:06 +0000 |
commit | 72c410d261e749ab87a3a755ebe24ac1634483e4 (patch) | |
tree | 56e8450b2fa2b28e5ce472a383f9ee419d11c0f9 /compatibility_matrices/exclude/fcm_exclude.cpp | |
parent | 897f0d48bbf71226676aa00e65737e2fde762256 (diff) |
fastboot: add a new oem command for post wipe userdata
When user input 'fastboot erase userdata' in fastbootd, may need an
oem specific API doOemSpecificErase() to wipe other userdata in device.
If oem doesn't need this specific API, oem could return NOT_SUPPORTED
to fastbootd.
Bug: 169173873
Change-Id: Ie12ede31ef071a3c15265777b55746536a861292
Diffstat (limited to 'compatibility_matrices/exclude/fcm_exclude.cpp')
-rw-r--r-- | compatibility_matrices/exclude/fcm_exclude.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compatibility_matrices/exclude/fcm_exclude.cpp b/compatibility_matrices/exclude/fcm_exclude.cpp index 4240788ea1..459a6e2fc8 100644 --- a/compatibility_matrices/exclude/fcm_exclude.cpp +++ b/compatibility_matrices/exclude/fcm_exclude.cpp @@ -58,6 +58,7 @@ bool ShouldCheckMissingHalsInFcm(const std::string& package) { // 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", + "android.hardware.fastboot@1.1", }; auto package_has_prefix = [&](const std::string& prefix) { |