diff --git a/Dockerfile b/Dockerfile index caadef7..30b3475 100644 --- a/Dockerfile +++ b/Dockerfile @@ -247,6 +247,7 @@ RUN \ libssl1.1 \ libva \ libva-intel-driver \ + mesa-dri-ati \ libvpx \ libxml2 \ libxslt \ diff --git a/README.md b/README.md index c53455e..137d54f 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ docker create \ -v :/config \ -v :/recordings \ --device /dev/dri:/dev/dri `#optional` \ - --device /dev/drb:/dev/dvb `#optional` \ + --device /dev/dvb:/dev/dvb `#optional` \ --restart unless-stopped \ linuxserver/tvheadend ``` @@ -107,7 +107,7 @@ services: - 9982:9982 devices: - /dev/dri:/dev/dri #optional - - /dev/drb:/dev/dvb #optional + - /dev/dvb:/dev/dvb #optional restart: unless-stopped ``` @@ -269,6 +269,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **18.08.19:** - Add AMD drivers. * **02.08.19:** - Attempt to automatically fix permissions on /dev/dri and /dev/dvb. * **28.06.19:** - Rebasing to alpine 3.10. * **27.03.19:** - Rebase to Alpine 3.9, fix init logic to only chown once. diff --git a/readme-vars.yml b/readme-vars.yml index 63aae11..9dce51a 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -53,7 +53,7 @@ opt_param_usage_include_ports: false opt_param_device_map: true opt_param_devices: - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your AMD/Intel GPU for hardware accelerated video encoding (vaapi)." } - - { device_path: "/dev/dvb", device_host_path: "/dev/drb", desc: "Only needed if you want to pass through a DVB card to the container. If you use IPTV or HDHomeRun you can leave it out." } + - { device_path: "/dev/dvb", device_host_path: "/dev/dvb", desc: "Only needed if you want to pass through a DVB card to the container. If you use IPTV or HDHomeRun you can leave it out." } opt_cap_add_param: false optional_block_1: true optional_block_1_items: @@ -126,6 +126,7 @@ app_setup_block: | # changelog changelogs: + - { date: "18.08.19:", desc: "Add AMD drivers." } - { date: "02.08.19:", desc: "Attempt to automatically fix permissions on /dev/dri and /dev/dvb." } - { date: "28.06.19:", desc: "Rebasing to alpine 3.10." } - { date: "27.03.19:", desc: "Rebase to Alpine 3.9, fix init logic to only chown once." }