Comment 12 for bug 96454

Revision history for this message
Stanislav German-Evtushenko (giner) wrote : Re: [Feisty] MASTER: HP LaserJet 1000/1005/1018/1020 don't work because of missing firmware

Script for get and install firmwares
(you must run this script by su or sudo)

#!/bin/bash
printers="1000 1005 1018 1020"
cd /tmp
for prn in $printers; do
    img="sihp${prn}.img"
    dl="sihp${prn}.dl"
    getweb $prn
    if [ -f $img ]; then
        arm2hpdl $img > /usr/share/foo2zjs/firmware/$dl
        rm $img
    fi;
done