aboutsummaryrefslogtreecommitdiff
path: root/en/devices/architecture/hidl-cpp
diff options
context:
space:
mode:
authorAndroid Partner Docs <noreply@android.com>2017-12-05 15:57:15 -0800
committerClay Murphy <claym@google.com>2017-12-05 21:16:56 -0800
commita63d28d20492979243f7cac739a506d308334a86 (patch)
treeae2e203f4bf4eb3072e9a06ba2e512dc9230d8da /en/devices/architecture/hidl-cpp
parent54024816e734bc99e432f281baabcf4718b9197a (diff)
downloadsource.android.com-a63d28d20492979243f7cac739a506d308334a86.tar.gz
Docs: Changes to source.android.com
- 178024672 CDD updates for Android 8.1 (O MR1). by Gina Dimino <gdimino@google.com> - 178024315 Document tags pushed to AOSP for December Security Releas... by Android Partner Docs <noreply@android.com> - 178019963 Add TextClassifier feature to Site Updates. by Mark Hecomovich <mheco@google.com> - 177986632 Add CTS/CTS-Verifier downloads for CTS-8.1R1 Release by Android Partner Docs <noreply@android.com> - 177981307 Update December Pixel bulletin to note that firmware imag... by Android Partner Docs <noreply@android.com> - 177977792 Note Source->Setup rename in site updates. by Billy Lamberta <blamb@google.com> - 177972113 Add O MR1 doc changes to Site Updates by Clay Murphy <claym@google.com> - 177970750 Integrate O MR1 branch into mainline by Clay Murphy <claym@google.com> - 177966804 Fix typo: Digital Stream Digital > Direct Stream Digital by Christina Nguyen <cqn@google.com> - 177966781 Exclude Android 8.1 compatibility directory from localiza... by Danielle Roberts <daroberts@google.com> - 177857487 Specify additional ABI breaking changes. by Android Partner Docs <noreply@android.com> - 177855089 Add attribution for William Roberts by Danielle Roberts <daroberts@google.com> - 177844366 Devsite localized content from translation request 63bb47... by Android Partner Docs <noreply@android.com> - 177840956 Devsite localized content from translation request 3a9204... by Android Partner Docs <noreply@android.com> - 177840933 Devsite localized content from translation request 526dee... by Android Partner Docs <noreply@android.com> - 177840699 Devsite localized content from translation request f000cb... by Android Partner Docs <noreply@android.com> - 177833559 Fix table in Dec pixel bulletin by Danielle Roberts <daroberts@google.com> - 177832645 Fix broken link in Security bulletin by Danielle Roberts <daroberts@google.com> - 177830793 Fix index files for security bulletins by Danielle Roberts <daroberts@google.com> - 177829204 December 2017 Android and Pixel security bulletins by Danielle Roberts <daroberts@google.com> - 177619977 Add links to most recently localized files by Clay Murphy <claym@google.com> - 177553556 Devsite localized content from translation request df5038... by Android Partner Docs <noreply@android.com> - 177553553 Devsite localized content from translation request 3feff8... by Android Partner Docs <noreply@android.com> - 177553549 Devsite localized content from translation request 57c74f... by Android Partner Docs <noreply@android.com> - 177530761 Devsite localized content from translation request 52ae7a... by Android Partner Docs <noreply@android.com> - 177530750 Devsite localized content from translation request f48e7b... by Android Partner Docs <noreply@android.com> - 177402074 Make CVE-2017-0639 optional by Android Partner Docs <noreply@android.com> - 177220538 Devsite localized content from translation request eaaf1d... by Android Partner Docs <noreply@android.com> - 177208086 Fixing bad link. by Heidi von Markham <hvm@google.com> - 177091447 updated CVEs by Android Partner Docs <noreply@android.com> - 177091159 Devsite localized content from translation request dcaa09... by Android Partner Docs <noreply@android.com> - 177091156 Devsite localized content from translation request 23af27... by Android Partner Docs <noreply@android.com> - 177087486 Update HIDL documentation to reflect actual passthrough i... by Android Partner Docs <noreply@android.com> PiperOrigin-RevId: 178024672 Change-Id: I593c61d26aac1fdcebb184ac048dbca7696161b1
Diffstat (limited to 'en/devices/architecture/hidl-cpp')
-rw-r--r--en/devices/architecture/hidl-cpp/index.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/en/devices/architecture/hidl-cpp/index.html b/en/devices/architecture/hidl-cpp/index.html
index f42d8f8a..7d8466cb 100644
--- a/en/devices/architecture/hidl-cpp/index.html
+++ b/en/devices/architecture/hidl-cpp/index.html
@@ -92,11 +92,13 @@ hidl-gen -o $LOC -Landroidbp-impl -randroid.hardware:hardware/interfaces \
<p>For the HAL to work in passthrough mode (for legacy devices), you must have
the function <em>HIDL_FETCH_IModuleName</em> residing in
-<code>/system/lib(64)?/hw/android.hardware.package@3.0-impl(-$OPTIONAL_IDENTIFIER).so</code>
+<code>/system/lib(64)?/hw/android.hardware.package@3.0-impl($OPTIONAL_IDENTIFIER).so</code>
where <code>$OPTIONAL_IDENTIFIER</code> is a string identifying the passthrough
implementation. The passthrough mode requirements are met automatically by the
above commands, which also create the <code>android.hardware.nfc@1.0-impl</code>
-target.</p>
+target, but any extension can be used. For instance
+<code>android.hardware.nfc@1.0-impl-foo</code> uses <code>-foo</code> to
+differentiate itself.</p>
<p>Next, fill out the stubs with functionality and setup a daemon. Example
daemon code (supporting passthrough):</p>