diff --git a/README.md b/README.md index 915e3a6..54e17c3 100644 --- a/README.md +++ b/README.md @@ -230,6 +230,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **20.05.19:** - Bugfix do not allow Root group for Intel QuickSync ownership rules. * **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. * **22.03.19:** - Fix update logic for `VERSION=public`. * **14.03.19:** - Switch to new api endpoints, enable beta (plex pass) updates for armhf and aarch64. diff --git a/readme-vars.yml b/readme-vars.yml index fab2aa9..d03622f 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -82,6 +82,7 @@ app_setup_block: | # changelog changelogs: + - { date: "20.05.19:", desc: "Bugfix do not allow Root group for Intel QuickSync ownership rules." } - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." } - { date: "22.03.19:", desc: "Fix update logic for `VERSION=public`." } - { date: "14.03.19:", desc: "Switch to new api endpoints, enable beta (plex pass) updates for armhf and aarch64." } diff --git a/root/etc/cont-init.d/50-gid-video b/root/etc/cont-init.d/50-gid-video index 3bc9949..e7ef21a 100755 --- a/root/etc/cont-init.d/50-gid-video +++ b/root/etc/cont-init.d/50-gid-video @@ -2,7 +2,7 @@ # Check for the existence of the Intel video device if [ -e /dev/dri ]; then - VIDEO_GID=$(stat -c '%g' /dev/dri/* | grep -v 0 | head -n 1) + VIDEO_GID=$(stat -c '%g' /dev/dri/* | grep -v '^0$' | head -n 1) else exit 0 fi