~ruther/guix-local

ref: 64668f7c15fa639831209f25e313c99a1047de7b guix-local/gnu/packages/patches/hplip-usb-timeout.patch -rw-r--r-- 739 bytes
64668f7c — Rutherther etc: release: Add spare space to the release VM image. a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Source: <https://bugs.launchpad.net/hplip/+bug/1922404>

--- a/config_usb_printer.py
+++ b/config_usb_printer.py
@@ -28,6 +28,7 @@
 # Std Lib
 import sys
 import os
+import time
 
 # Local
 from base.g import *
@@ -181,9 +182,10 @@
        # ******************************* RUNNING FIRMWARE DOWNLOAD TO DEVICE FOR SUPPORTED PRINTER'S
        fw_download_req = mq.get('fw-download', False)
        if fw_download_req:
-           fw_cmd = "hp-firmware -y3 -s %s"%param
+           fw_cmd = "hp-firmware -n -y3 -s %s"%param
            log.info(fw_cmd)
            fw_sts, fw_out = utils.run(fw_cmd)
+           time.sleep(5)
            if fw_sts == 0:
                log.debug("Firmware downloaded to %s "%device_uri)
            else: