├── AndroidProducts.mk ├── BoardConfig.mk ├── Generic.kl ├── README ├── audio_policy_configuration.xml ├── bluetooth ├── bdroid_buildcfg.h ├── bt_vendor.conf ├── bt_vendor_400.conf └── vnd_rpi4.txt ├── boot ├── cmdline.txt ├── config.txt ├── fixup4.dat └── start4.elf ├── bootanimations └── bootanimation.zip ├── external_camera_config.xml ├── firmware └── brcm │ ├── BCM4345C0.hcd │ ├── BCM4345C5.hcd │ ├── brcmfmac43455-sdio.bin │ ├── brcmfmac43455-sdio.clm_blob │ ├── brcmfmac43455-sdio.txt │ ├── brcmfmac43456-sdio.bin │ ├── brcmfmac43456-sdio.clm_blob │ └── brcmfmac43456-sdio.txt ├── fstab.rpi4 ├── init.rpi4.rc ├── init.rpi4.usb.rc ├── init.usb.rc ├── manifest.xml ├── overlay ├── RpFrameworkOverlay │ ├── Android.bp │ ├── AndroidManifest.xml │ └── res │ │ ├── values │ │ └── config.xml │ │ └── xml │ │ └── global_keys.xml └── packages │ └── services │ └── Car │ └── service │ └── res │ └── values │ └── config.xml ├── rpi4_car.mk ├── sepolicy ├── bluetooth.te ├── bootanim.te ├── cameraserver.te ├── device.te ├── file_contexts ├── hal_camera_default.te ├── hal_graphics_allocator_default.te ├── hal_graphics_composer_default.te ├── hal_tv_cec_mock.te ├── init.te ├── kernel.te ├── mediaserver.te ├── mediaswcodec.te ├── netd.te ├── platform_app.te ├── priv_app.te ├── surfaceflinger.te ├── system_app.te ├── system_server.te ├── te_macros └── untrusted_app_all.te └── ueventd.rc /AndroidProducts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/AndroidProducts.mk -------------------------------------------------------------------------------- /BoardConfig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/BoardConfig.mk -------------------------------------------------------------------------------- /Generic.kl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/Generic.kl -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/README -------------------------------------------------------------------------------- /audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/audio_policy_configuration.xml -------------------------------------------------------------------------------- /bluetooth/bdroid_buildcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/bluetooth/bdroid_buildcfg.h -------------------------------------------------------------------------------- /bluetooth/bt_vendor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/bluetooth/bt_vendor.conf -------------------------------------------------------------------------------- /bluetooth/bt_vendor_400.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/bluetooth/bt_vendor_400.conf -------------------------------------------------------------------------------- /bluetooth/vnd_rpi4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/bluetooth/vnd_rpi4.txt -------------------------------------------------------------------------------- /boot/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/boot/cmdline.txt -------------------------------------------------------------------------------- /boot/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/boot/config.txt -------------------------------------------------------------------------------- /boot/fixup4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/boot/fixup4.dat -------------------------------------------------------------------------------- /boot/start4.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/boot/start4.elf -------------------------------------------------------------------------------- /bootanimations/bootanimation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/bootanimations/bootanimation.zip -------------------------------------------------------------------------------- /external_camera_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/external_camera_config.xml -------------------------------------------------------------------------------- /firmware/brcm/BCM4345C0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/firmware/brcm/BCM4345C0.hcd -------------------------------------------------------------------------------- /firmware/brcm/BCM4345C5.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/firmware/brcm/BCM4345C5.hcd -------------------------------------------------------------------------------- /firmware/brcm/brcmfmac43455-sdio.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/firmware/brcm/brcmfmac43455-sdio.bin -------------------------------------------------------------------------------- /firmware/brcm/brcmfmac43455-sdio.clm_blob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/firmware/brcm/brcmfmac43455-sdio.clm_blob -------------------------------------------------------------------------------- /firmware/brcm/brcmfmac43455-sdio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/firmware/brcm/brcmfmac43455-sdio.txt -------------------------------------------------------------------------------- /firmware/brcm/brcmfmac43456-sdio.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/firmware/brcm/brcmfmac43456-sdio.bin -------------------------------------------------------------------------------- /firmware/brcm/brcmfmac43456-sdio.clm_blob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/firmware/brcm/brcmfmac43456-sdio.clm_blob -------------------------------------------------------------------------------- /firmware/brcm/brcmfmac43456-sdio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/firmware/brcm/brcmfmac43456-sdio.txt -------------------------------------------------------------------------------- /fstab.rpi4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/fstab.rpi4 -------------------------------------------------------------------------------- /init.rpi4.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/init.rpi4.rc -------------------------------------------------------------------------------- /init.rpi4.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/init.rpi4.usb.rc -------------------------------------------------------------------------------- /init.usb.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/init.usb.rc -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/manifest.xml -------------------------------------------------------------------------------- /overlay/RpFrameworkOverlay/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/overlay/RpFrameworkOverlay/Android.bp -------------------------------------------------------------------------------- /overlay/RpFrameworkOverlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/overlay/RpFrameworkOverlay/AndroidManifest.xml -------------------------------------------------------------------------------- /overlay/RpFrameworkOverlay/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/overlay/RpFrameworkOverlay/res/values/config.xml -------------------------------------------------------------------------------- /overlay/RpFrameworkOverlay/res/xml/global_keys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/overlay/RpFrameworkOverlay/res/xml/global_keys.xml -------------------------------------------------------------------------------- /overlay/packages/services/Car/service/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/overlay/packages/services/Car/service/res/values/config.xml -------------------------------------------------------------------------------- /rpi4_car.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/rpi4_car.mk -------------------------------------------------------------------------------- /sepolicy/bluetooth.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/sepolicy/bluetooth.te -------------------------------------------------------------------------------- /sepolicy/bootanim.te: -------------------------------------------------------------------------------- 1 | gpu_access(bootanim) 2 | -------------------------------------------------------------------------------- /sepolicy/cameraserver.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/sepolicy/cameraserver.te -------------------------------------------------------------------------------- /sepolicy/device.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/sepolicy/device.te -------------------------------------------------------------------------------- /sepolicy/file_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/sepolicy/file_contexts -------------------------------------------------------------------------------- /sepolicy/hal_camera_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/sepolicy/hal_camera_default.te -------------------------------------------------------------------------------- /sepolicy/hal_graphics_allocator_default.te: -------------------------------------------------------------------------------- 1 | gpu_access(hal_graphics_allocator_default) 2 | -------------------------------------------------------------------------------- /sepolicy/hal_graphics_composer_default.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/sepolicy/hal_graphics_composer_default.te -------------------------------------------------------------------------------- /sepolicy/hal_tv_cec_mock.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/sepolicy/hal_tv_cec_mock.te -------------------------------------------------------------------------------- /sepolicy/init.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/sepolicy/init.te -------------------------------------------------------------------------------- /sepolicy/kernel.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/sepolicy/kernel.te -------------------------------------------------------------------------------- /sepolicy/mediaserver.te: -------------------------------------------------------------------------------- 1 | allow mediaserver gpu_device:dir search; 2 | -------------------------------------------------------------------------------- /sepolicy/mediaswcodec.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/sepolicy/mediaswcodec.te -------------------------------------------------------------------------------- /sepolicy/netd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/sepolicy/netd.te -------------------------------------------------------------------------------- /sepolicy/platform_app.te: -------------------------------------------------------------------------------- 1 | gpu_access(platform_app) 2 | -------------------------------------------------------------------------------- /sepolicy/priv_app.te: -------------------------------------------------------------------------------- 1 | gpu_access(priv_app) 2 | -------------------------------------------------------------------------------- /sepolicy/surfaceflinger.te: -------------------------------------------------------------------------------- 1 | gpu_access(surfaceflinger) 2 | -------------------------------------------------------------------------------- /sepolicy/system_app.te: -------------------------------------------------------------------------------- 1 | gpu_access(system_app) 2 | -------------------------------------------------------------------------------- /sepolicy/system_server.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/sepolicy/system_server.te -------------------------------------------------------------------------------- /sepolicy/te_macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/sepolicy/te_macros -------------------------------------------------------------------------------- /sepolicy/untrusted_app_all.te: -------------------------------------------------------------------------------- 1 | gpu_access(untrusted_app_all) 2 | -------------------------------------------------------------------------------- /ueventd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snappautomotive/firmware-device_snappautomotive_rpi/HEAD/ueventd.rc --------------------------------------------------------------------------------