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

..--

audio/22-Nov-2023-1,050835

audio_remote_submix/22-Nov-2023-2,2841,802

camera/22-Nov-2023-16,91511,161

consumerir/22-Nov-2023-157114

fingerprint/22-Nov-2023-158118

gralloc/22-Nov-2023-1,087715

hwcomposer/22-Nov-2023-181128

input/evdev/22-Nov-2023-2,7481,778

local_time/22-Nov-2023-158114

nfc/22-Nov-2023-10875

nfc-nci/22-Nov-2023-159113

power/22-Nov-2023-10475

radio/22-Nov-2023-1,097902

sensors/22-Nov-2023-12,4929,378

soundtrigger/22-Nov-2023-971802

thermal/22-Nov-2023-221172

tv_input/22-Nov-2023-179127

usbaudio/22-Nov-2023-1,9741,490

usbcamera/22-Nov-2023-1,9141,230

vibrator/22-Nov-2023-238170

vr/22-Nov-2023-8657

Android.mkD22-Nov-2023124 65

README.androidD22-Nov-2023878 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