* [refpolicy] [PATCH 0/2] device file context fixes
@ 2012-08-16 9:37 Dominick Grift
2012-08-16 9:37 ` [refpolicy] [PATCH 1/2] There can be more than a single watchdog interface Dominick Grift
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Dominick Grift @ 2012-08-16 9:37 UTC (permalink / raw)
To: refpolicy
I noticed that my /dev/watchdog0 character device node is still device_t and while reviewing i noticed a possible typo.
Dominick Grift (2):
There can be more than a single watchdog interface
Fix a suspected typo
policy/modules/kernel/devices.fc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--
1.7.11.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* [refpolicy] [PATCH 1/2] There can be more than a single watchdog interface
2012-08-16 9:37 [refpolicy] [PATCH 0/2] device file context fixes Dominick Grift
@ 2012-08-16 9:37 ` Dominick Grift
2012-08-16 9:37 ` [refpolicy] [PATCH 2/2] Fix a suspected typo Dominick Grift
2012-08-21 19:32 ` [refpolicy] [PATCH 0/2] device file context fixes Christopher J. PeBenito
2 siblings, 0 replies; 4+ messages in thread
From: Dominick Grift @ 2012-08-16 9:37 UTC (permalink / raw)
To: refpolicy
Signed-off-by: Dominick Grift <dominick.grift@gmail.com>
---
policy/modules/kernel/devices.fc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/policy/modules/kernel/devices.fc b/policy/modules/kernel/devices.fc
index 02b7ac1..29f1dc0 100644
--- a/policy/modules/kernel/devices.fc
+++ b/policy/modules/kernel/devices.fc
@@ -125,7 +125,7 @@ ifdef(`distro_suse', `
/dev/vrtpanel -c gen_context(system_u:object_r:mouse_device_t,s0)
/dev/vttuner -c gen_context(system_u:object_r:v4l_device_t,s0)
/dev/vtx.* -c gen_context(system_u:object_r:v4l_device_t,s0)
-/dev/watchdog -c gen_context(system_u:object_r:watchdog_device_t,s0)
+/dev/watchdog.* -c gen_context(system_u:object_r:watchdog_device_t,s0)
/dev/winradio. -c gen_context(system_u:object_r:v4l_device_t,s0)
/dev/z90crypt -c gen_context(system_u:object_r:crypt_device_t,s0)
/dev/zero -c gen_context(system_u:object_r:zero_device_t,s0)
--
1.7.11.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [refpolicy] [PATCH 2/2] Fix a suspected typo
2012-08-16 9:37 [refpolicy] [PATCH 0/2] device file context fixes Dominick Grift
2012-08-16 9:37 ` [refpolicy] [PATCH 1/2] There can be more than a single watchdog interface Dominick Grift
@ 2012-08-16 9:37 ` Dominick Grift
2012-08-21 19:32 ` [refpolicy] [PATCH 0/2] device file context fixes Christopher J. PeBenito
2 siblings, 0 replies; 4+ messages in thread
From: Dominick Grift @ 2012-08-16 9:37 UTC (permalink / raw)
To: refpolicy
Signed-off-by: Dominick Grift <dominick.grift@gmail.com>
---
policy/modules/kernel/devices.fc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/policy/modules/kernel/devices.fc b/policy/modules/kernel/devices.fc
index 29f1dc0..06a0e93 100644
--- a/policy/modules/kernel/devices.fc
+++ b/policy/modules/kernel/devices.fc
@@ -126,7 +126,7 @@ ifdef(`distro_suse', `
/dev/vttuner -c gen_context(system_u:object_r:v4l_device_t,s0)
/dev/vtx.* -c gen_context(system_u:object_r:v4l_device_t,s0)
/dev/watchdog.* -c gen_context(system_u:object_r:watchdog_device_t,s0)
-/dev/winradio. -c gen_context(system_u:object_r:v4l_device_t,s0)
+/dev/winradio.* -c gen_context(system_u:object_r:v4l_device_t,s0)
/dev/z90crypt -c gen_context(system_u:object_r:crypt_device_t,s0)
/dev/zero -c gen_context(system_u:object_r:zero_device_t,s0)
--
1.7.11.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [refpolicy] [PATCH 0/2] device file context fixes
2012-08-16 9:37 [refpolicy] [PATCH 0/2] device file context fixes Dominick Grift
2012-08-16 9:37 ` [refpolicy] [PATCH 1/2] There can be more than a single watchdog interface Dominick Grift
2012-08-16 9:37 ` [refpolicy] [PATCH 2/2] Fix a suspected typo Dominick Grift
@ 2012-08-21 19:32 ` Christopher J. PeBenito
2 siblings, 0 replies; 4+ messages in thread
From: Christopher J. PeBenito @ 2012-08-21 19:32 UTC (permalink / raw)
To: refpolicy
On 08/16/12 05:37, Dominick Grift wrote:
> I noticed that my /dev/watchdog0 character device node is still device_t and while reviewing i noticed a possible typo.
>
> Dominick Grift (2):
> There can be more than a single watchdog interface
> Fix a suspected typo
>
> policy/modules/kernel/devices.fc | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
This set is merged.
--
Chris PeBenito
Tresys Technology, LLC
www.tresys.com | oss.tresys.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-08-21 19:32 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-16 9:37 [refpolicy] [PATCH 0/2] device file context fixes Dominick Grift
2012-08-16 9:37 ` [refpolicy] [PATCH 1/2] There can be more than a single watchdog interface Dominick Grift
2012-08-16 9:37 ` [refpolicy] [PATCH 2/2] Fix a suspected typo Dominick Grift
2012-08-21 19:32 ` [refpolicy] [PATCH 0/2] device file context fixes Christopher J. PeBenito
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.