init-display-sh: Don't audit writing to kmsg

modprobe would log errors to /dev/kmsg, need to explicit allow this.


```
avc:  denied  { write } for  comm="modprobe" name="kmsg" dev="tmpfs" ino=5 scontext=u:r:init-display-sh:s0 tcontext=u:object_r:kmsg_device:s0 tclass=chr_file permissive=0
```

Bug: 388717752
Test: DeviceBootTest#SELinuxUncheckedDenialBootTest
Change-Id: Iaf1157a925e480ec3c8cdd00573f3d0a4ead355b
diff --git a/whitechapel_pro/init-display-sh.te b/whitechapel_pro/init-display-sh.te
index 54ff7d6..7f64b78 100644
--- a/whitechapel_pro/init-display-sh.te
+++ b/whitechapel_pro/init-display-sh.te
@@ -8,3 +8,5 @@
 
 dontaudit init-display-sh proc_cmdline:file r_file_perms;
 
+# Allow modprobe to log to kmsg.
+allow init-display-sh kmsg_device:chr_file w_file_perms;