mirror of
https://github.com/Evolution-X-Devices/device_google_gs201
synced 2026-01-27 18:37:19 +00:00
Android 15.0.0 Release 20 (BP1A.250305.019) # -----BEGIN PGP SIGNATURE----- # # iF0EABECAB0WIQRDQNE1cO+UXoOBCWTorT+BmrEOeAUCZ8eo7QAKCRDorT+BmrEO # eN4GAJ4zBTRmknJtiHTlKaXFFCxh6RaE0QCfVZMelWDtp9SyAoTrojuN1flREII= # =d0db # -----END PGP SIGNATURE----- # gpg: Signature made Wed Mar 5 03:29:17 2025 EET # gpg: using DSA key 4340D13570EF945E83810964E8AD3F819AB10E78 # gpg: Good signature from "The Android Open Source Project <initial-contribution@android.com>" [ultimate] # By Nina Chen (9) and others # Via Android Build Coastguard Worker (22) and others * tag 'android-15.0.0_r20': (22 commits) modem_svc: move shared_modem_platform related sepolicy to gs-common Update SELinux error Allow tachyon service to make binder calls to GCA Update SELinux error Update SELinux error Revert "modem_svc: move shared_modem_platform related sepolicy t..." modem_svc: move shared_modem_platform related sepolicy to gs-common Update ldaf sensor device filename Update SELinux error Update SELinux error sepolicy: allow dump_power to read battery_history_device Update SELinux error sepolicy: allow dump_power to read debugfs Remove duplicate service entries Revert "Update SELinux error" Update SELinux error convert-to-ext4-sh.te: use su domain instead modem_svc: use shared_modem_platform to replace all modem_svc_sit Update SELinux error sepolicy: allow dumpstate to execute dump_power ... Conflicts: sepolicy/gs201-sepolicy.mk Change-Id: Ie0faabb66c73c2e4da10f9f8f0a65fa49e68a7dc
17 lines
669 B
Plaintext
17 lines
669 B
Plaintext
# File containing sepolicies for GCA-Eng & GCA-Next.
|
|
userdebug_or_eng(`
|
|
# Allows camera app to access the GXP device and properties.
|
|
allow debug_camera_app gxp_device:chr_file rw_file_perms;
|
|
get_prop(debug_camera_app, vendor_gxp_prop)
|
|
|
|
# Allows camera app to search for GXP firmware file.
|
|
allow debug_camera_app vendor_fw_file:dir search;
|
|
|
|
# Allows GCA-Eng to find and access the EdgeTPU.
|
|
allow debug_camera_app edgetpu_app_service:service_manager find;
|
|
allow debug_camera_app edgetpu_device:chr_file { getattr read write ioctl map };
|
|
|
|
# Allows tachyon_service to communicate with GCA-Eng via binder.
|
|
binder_call(edgetpu_tachyon_server, debug_camera_app);
|
|
')
|