summarylogtreecommitdiffstats
path: root/oki.install
diff options
context:
space:
mode:
Diffstat (limited to 'oki.install')
-rw-r--r--oki.install15
1 files changed, 15 insertions, 0 deletions
diff --git a/oki.install b/oki.install
new file mode 100644
index 000000000000..305d0c83590e
--- /dev/null
+++ b/oki.install
@@ -0,0 +1,15 @@
+post_install() {
+ echo -e "
+ If you experience any problems with printing
+ (like extra pages with PostScript code), try
+ blacklisting the module 'usblp'.
+
+ # echo \"blacklist usblp\" > /etc/modprobe.d/usblp.conf
+ "
+}
+
+post_upgrade() {
+ if [ "$(vercmp $2 1.4-2)" -lt 0 ]; then
+ post_install "$1"
+ fi
+}