diff options
| author | Christos Margiolis <christos@FreeBSD.org> | 2026-05-06 16:00:38 +0000 |
|---|---|---|
| committer | Christos Margiolis <christos@FreeBSD.org> | 2026-05-21 17:32:42 +0000 |
| commit | 6024e3f99a1e3f5e52fd50c26789fc2dc98fd9c1 (patch) | |
| tree | b9cbbf5ae8a41167ebdc01b7a1c6d4fe2cd4f9da | |
| parent | a8c74d6c64dfddae95b9c6d48a8ea82b7c4d7b25 (diff) | |
Add audio group
To be initially used by virtual_oss(8) loopback devices.
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Reviewed by: emaste
Pull-Request: https://ron-dev.freebsd.org/FreeBSD/src/pulls/26
| -rw-r--r-- | etc/group | 1 | ||||
| -rw-r--r-- | sys/sys/conf.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/etc/group b/etc/group index af42fa1bcc11..740b970787b8 100644 --- a/etc/group +++ b/etc/group @@ -15,6 +15,7 @@ sshd:*:22: smmsp:*:25: mailnull:*:26: guest:*:31: +audio:*:43: video:*:44: realtime:*:47: idletime:*:48: diff --git a/sys/sys/conf.h b/sys/sys/conf.h index e5a6be9b891c..a6713ee91190 100644 --- a/sys/sys/conf.h +++ b/sys/sys/conf.h @@ -155,6 +155,7 @@ typedef int dumper_hdr_t(struct dumperinfo *di, struct kerneldumpheader *kdh); #define GID_OPERATOR 5 #define GID_BIN 7 #define GID_GAMES 13 +#define GID_AUDIO 43 #define GID_VIDEO 44 #define GID_RT_PRIO 47 #define GID_ID_PRIO 48 |
