From 17b7f02a3ac62fa4b8be6d14da92750274fa4463 Mon Sep 17 00:00:00 2001 From: Ben Radey Date: Tue, 25 Nov 2025 02:28:58 -0500 Subject: [PATCH] Attempt at hack to support QL-600 --- Containerfile-asrock-x570 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Containerfile-asrock-x570 b/Containerfile-asrock-x570 index 41636a5..9aac5c1 100644 --- a/Containerfile-asrock-x570 +++ b/Containerfile-asrock-x570 @@ -1,5 +1,11 @@ FROM ghcr.io/benradey/workstation-nvidia-base:latest +# Special handling for QL-600 label printer. This relies on the files inside of the RPM being manually extracted to /var/opt, which cannot be handled inside of this Containerfile. +RUN ln -sf /opt/brother/PTouch/ql600/cupswrapper/brother_lpdwrapper_ql600 /usr/lib/cups/filter/brother_lpdwrapper_ql600 && \ + dnf5 install -y \ + perl-File-Copy && \ + dnf5 clean all + # Build nvidia akmod with flag that produces proprietary kernal driver for older hardware RUN echo "%_without_kmod_nvidia_detect 1" > /etc/rpm/macros.nvidia-kmod && \ mkdir -p /var/log/akmods /var/cache/akmods/nvidia /var/tmp && \