[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20191115180653.GA6873@Limone>
Date: Fri, 15 Nov 2019 19:06:53 +0100
From: Gon Solo <gonsolo@...il.com>
To: mchehab+samsung@...nel.org
Cc: linux-media@...r.kernel.org, mchehab@...radead.org, jp@...w.nl,
crope@....fi, sean@...s.org, linux-kernel@...r.kernel.org,
kernel-team@...ts.ubuntu.com,
pkg-systemd-maintainers@...oth-lists.debian.net,
systemd-devel@...ts.freedesktop.org
Subject: Re: [PATCH 4/4] Add support for Logilink VG0022A.
Hi!
Context: In the upcoming 5.5 kernel there will be (hopefully) support
for the Logilink VG0022A DVB-T2 usb stick. Since this device has a bug a
kernel quirk has been added. An additional quirk is needed for suspend
to work. This is documented here. Hopefully it will be picked up in
distributions or if not, owners of this device can find this
information on the internet.
Standby for this Logilink VG0022A device does not work. I had to
manually unload the module dvb_usb_af9035:
cat /lib/systemd/system-sleep/suspend-modules:
=====
case $1 in
pre)
for mod in $(</etc/suspend-modules.conf); do
rmmod $mod
done
;;
post)
for mod in $(</etc/suspend-modules.conf); do
modprobe $mod
done
;;
esac
=====
cat /etc/suspend-modules.conf:
=====
dvb_usb_af9035
=====
Cheers,
g
Powered by blists - more mailing lists