You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker 7ee447c011
v811_spc009_project
4 months ago
..
audio v811_spc009_project 4 months ago
audio_remote_submix v811_spc009_project 4 months ago
camera v811_spc009_project 4 months ago
consumerir v811_spc009_project 4 months ago
fingerprint v811_spc009_project 4 months ago
gralloc v811_spc009_project 4 months ago
hwcomposer v811_spc009_project 4 months ago
input/evdev v811_spc009_project 4 months ago
local_time v811_spc009_project 4 months ago
nfc v811_spc009_project 4 months ago
nfc-nci v811_spc009_project 4 months ago
power v811_spc009_project 4 months ago
radio v811_spc009_project 4 months ago
sensors v811_spc009_project 4 months ago
soundtrigger v811_spc009_project 4 months ago
thermal v811_spc009_project 4 months ago
tv_input v811_spc009_project 4 months ago
usbaudio v811_spc009_project 4 months ago
usbcamera v811_spc009_project 4 months ago
vibrator v811_spc009_project 4 months ago
vr v811_spc009_project 4 months ago
Android.mk v811_spc009_project 4 months ago
README.android v811_spc009_project 4 months ago

README.android

Default (and possibly architecture dependents) HAL modules go here. 


libhardware.so eventually should contain *just* the HAL hub
(hardware.c), everything in it should be rewritten as modules.

Modules are .so in /vendor/lib/hw/ and have a well defined naming
convention:

    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.product.board>.so
    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.board.platform>.so
    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.arch>.so
    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.default.so

They also have a well defined interface which lives in include/hardware/.

A module can have several variants: "default", "arch" and "board", and they're
loaded in the "board", "arch" and "default" order.
The source code for the "board" variant, usually lives under partners/...

The source code for "default" and "arch" would usually
live under hardware/modules/.