forked from LineageOS/android_hardware_lineage_interfaces
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lineage/interfaces: add update-makefiles.sh script
Generates the makefile/blueprint structure inside hardware/lineage/interfaces. Package names need to start with vendor.lineage, for example, [email protected], else hidl-gen will fail. Usage: ./hardware/lineage/interfaces/update-makefiles.sh If the script finds a *.hal file, it will create Android.bp and Android.mk files inside the respective directory that turn those files into an interface. Also, regenerate blueprints using the script. Change-Id: Id169bd74e76cd83d4572e14cebf91db7629640cc
- Loading branch information
Showing
5 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// This is an autogenerated file, do not edit. | ||
subdirs = [ | ||
"fingerprint", | ||
"fingerprint/2.0", | ||
] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// This is an autogenerated file, do not edit. | ||
subdirs = [ | ||
"device/1.0-legacy", | ||
"provider/2.4-legacy", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// This is an autogenerated file, do not edit. | ||
subdirs = [ | ||
"1.0-bcm", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
source system/tools/hidl/update-makefiles-helper.sh | ||
|
||
do_makefiles_update \ | ||
"vendor.lineage:hardware/lineage/interfaces" \ | ||
"android.hardware:hardware/interfaces" \ | ||
"android.hidl:system/libhidl/transport" |