• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

audio/14-Jan-2024-1,050835

audio_remote_submix/15-Dec-2024-2,1091,662

camera/14-Jan-2024-16,91511,161

consumerir/14-Jan-2024-157114

fingerprint/14-Jan-2024-158118

gralloc/15-Dec-2024-1,094721

hwcomposer/14-Jan-2024-181128

input/evdev/14-Jan-2024-2,7471,777

local_time/14-Jan-2024-158114

nfc/14-Jan-2024-10875

nfc-nci/14-Jan-2024-159113

power/14-Jan-2024-10475

radio/15-Dec-2024-1,098903

sensors/14-Jan-2024-13,0879,860

soundtrigger/14-Jan-2024-965796

thermal/14-Jan-2024-221172

tv_input/14-Jan-2024-179127

usbaudio/15-Dec-2024-2,1551,658

usbcamera/14-Jan-2024-1,9141,230

vibrator/14-Jan-2024-238170

vr/14-Jan-2024-8657

Android.mkD14-Jan-2024124 65

README.androidD14-Jan-2024878 2415

README.android

1Default (and possibly architecture dependents) HAL modules go here.
2
3
4libhardware.so eventually should contain *just* the HAL hub
5(hardware.c), everything in it should be rewritten as modules.
6
7Modules are .so in /vendor/lib/hw/ and have a well defined naming
8convention:
9
10    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.product.board>.so
11    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.board.platform>.so
12    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.<ro.arch>.so
13    /vendor/lib/hw/<*_HARDWARE_MODULE_ID>.default.so
14
15They also have a well defined interface which lives in include/hardware/.
16
17A module can have several variants: "default", "arch" and "board", and they're
18loaded in the "board", "arch" and "default" order.
19The source code for the "board" variant, usually lives under partners/...
20
21The source code for "default" and "arch" would usually
22live under hardware/modules/.
23
24