mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-21 05:57:05 +00:00
a5718b3032
When inserting/removing USB device not handled by upower (Mouse/Keyboard/USB-Sticks..) upower spams on later kernels: | Sep 17 15:38:46 imx6qdl-variscite-som upowerd[553]: unhandled action 'bind' on /sys/devices/soc0/soc/2100000.aips-bus/2184200.usb/ci_hdrc.1/usb1/1-1/1-1.2 | Sep 17 15:38:46 imx6qdl-variscite-som upowerd[553]: unhandled action 'bind' on /sys/devices/soc0/soc/2100000.aips-bus/2184200.usb/ci_hdrc.1/usb1/1-1/1-1.2/1-1.2:1.0 | Sep 17 15:38:46 imx6qdl-variscite-som upowerd[553]: unhandled action 'bind' on /sys/devices/soc0/soc/2100000.aips-bus/2184200.usb/ci_hdrc.1/usb1/1-1/1-1.2/1-1.2:1.0/0003:41> Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
38 lines
1.5 KiB
BlitzBasic
38 lines
1.5 KiB
BlitzBasic
DESCRIPTION = "UPower is an abstraction for enumerating power devices, listening to device events and querying history and statistics. "
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=0de8fbf1d97a140d1d93b9f14dcfbf08"
|
|
|
|
DEPENDS = "intltool-native libusb1 libgudev glib-2.0 dbus-glib polkit"
|
|
|
|
SRC_URI = " \
|
|
http://upower.freedesktop.org/releases/${BPN}-${PV}.tar.xz \
|
|
file://0001-linux-lower-severity-of-unhandled-action-messages.patch \
|
|
"
|
|
SRC_URI[md5sum] = "236bb439d9ff1151450b3d8582399532"
|
|
SRC_URI[sha256sum] = "24bcc2f6ab25a2533bac70b587bcb019e591293076920f5b5e04bdedc140a401"
|
|
|
|
inherit autotools pkgconfig gettext gobject-introspection systemd
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
|
|
PACKAGECONFIG[idevice] = "--with-idevice,--without-idevice,libimobiledevice libplist"
|
|
PACKAGECONFIG[systemd] = "--with-systemdutildir=${systemd_unitdir} --with-systemdsystemunitdir=${systemd_system_unitdir}, \
|
|
--without-systemdutildir --without-systemdsystemunitdir,systemd"
|
|
|
|
EXTRA_OECONF = " --with-backend=linux"
|
|
|
|
SYSTEMD_SERVICE_${PN} = "upower.service"
|
|
# don't start on boot by default - dbus does that on demand
|
|
SYSTEMD_AUTO_ENABLE = "disable"
|
|
|
|
do_configure_prepend() {
|
|
sed -i -e s:-nonet:\:g ${S}/doc/man/Makefile.am
|
|
sed -i -e 's: doc : :g' ${S}/Makefile.am
|
|
}
|
|
|
|
RDEPENDS_${PN} += "dbus"
|
|
RRECOMMENDS_${PN} += "pm-utils"
|
|
FILES_${PN} += "${datadir}/dbus-1/ \
|
|
${datadir}/polkit-1/ \
|
|
${base_libdir}/udev/* \
|
|
"
|