From 455c3c165348fa9ea65c65b004d4dda1426d04be Mon Sep 17 00:00:00 2001 From: Ray Chi Date: Tue, 1 Mar 2022 21:54:40 +0800 Subject: [PATCH] Allow hal_usb_gadget_impl to access proc_irq Bug: 220996010 Test: build pass Change-Id: Id9a9adbdc921629b6e89d0850dd8acaf76b1a891 --- whitechapel_pro/hal_usb_gadget_impl.te | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/whitechapel_pro/hal_usb_gadget_impl.te b/whitechapel_pro/hal_usb_gadget_impl.te index 83dff037..30041467 100644 --- a/whitechapel_pro/hal_usb_gadget_impl.te +++ b/whitechapel_pro/hal_usb_gadget_impl.te @@ -8,3 +8,10 @@ init_daemon_domain(hal_usb_gadget_impl) allow hal_usb_gadget_impl configfs:dir { create rmdir }; allow hal_usb_gadget_impl functionfs:dir { watch watch_reads }; set_prop(hal_usb_gadget_impl, vendor_usb_config_prop) + +# parser the number of dwc3 irq +allow hal_usb_gadget_impl proc_interrupts:file r_file_perms; + +# change irq to other cores +allow hal_usb_gadget_impl proc_irq:dir r_dir_perms; +allow hal_usb_gadget_impl proc_irq:file w_file_perms;