diff options
author | alperak <alperyasinak1@gmail.com> | 2023-12-22 09:55:06 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-12-22 06:39:36 -0800 |
commit | 1f2c2ebcbcf5944225462f530e0d56b20f1b4630 (patch) | |
tree | 3f9e45724717dec2c5ee3231e0de1a919dc2412f | |
parent | 4929a3c44755dcc856c0b83f53a4cbd7359f670d (diff) | |
download | meta-openembedded-1f2c2ebcbcf5944225462f530e0d56b20f1b4630.tar.gz |
driverctl: upgrade 0.111 -> 0.115
Changelog:
* driverctl: Fix duplicate ID write error
* driverctl: add list-persisted command
* Fix device driver binding issue after re-enumeration
* driverctl: fix list_devices() when `driver_override` is not set
Signed-off-by: alperak <alperyasinak1@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/driverctl/driverctl_0.111.bb | 28 | ||||
-rw-r--r-- | meta-oe/recipes-support/driverctl/driverctl_0.115.bb | 23 |
2 files changed, 23 insertions, 28 deletions
diff --git a/meta-oe/recipes-support/driverctl/driverctl_0.111.bb b/meta-oe/recipes-support/driverctl/driverctl_0.111.bb deleted file mode 100644 index f5f542c541..0000000000 --- a/meta-oe/recipes-support/driverctl/driverctl_0.111.bb +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | SUMMARY = "driverctl is a device driver control utility for Linux" | ||
2 | LICENSE = "LGPL-2.1-only" | ||
3 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/LGPL-2.1-only;md5=1a6d268fd218675ffea8be556788b780" | ||
4 | |||
5 | REQUIRED_DISTRO_FEATURES = "systemd" | ||
6 | |||
7 | DEPENDS = "systemd" | ||
8 | RDEPENDS:${PN} += "bash bash-completion" | ||
9 | |||
10 | SRC_URI = " git://gitlab.com/driverctl/driverctl.git;branch=master" | ||
11 | SRCREV = "fa9dce43d1a667d6e6e26895fbed01b3b04362c9" | ||
12 | |||
13 | S = "${WORKDIR}/git" | ||
14 | |||
15 | inherit pkgconfig systemd features_check | ||
16 | |||
17 | FILES:${PN} += "${libdir}" | ||
18 | FILES:${PN} += "${libdir}/udev" | ||
19 | FILES:${PN} += "${libdir}/udev/rules.d" | ||
20 | FILES:${PN} += "${systemd_unitdir}" | ||
21 | FILES:${PN} += "${systemd_unitdir}/system" | ||
22 | FILES:${PN} += "${datadir}" | ||
23 | FILES:${PN} += "${datadir}/bash-completion" | ||
24 | FILES:${PN} += "${datadir}/bash-completion/completions" | ||
25 | |||
26 | do_install () { | ||
27 | oe_runmake install DESTDIR=${D} | ||
28 | } | ||
diff --git a/meta-oe/recipes-support/driverctl/driverctl_0.115.bb b/meta-oe/recipes-support/driverctl/driverctl_0.115.bb new file mode 100644 index 0000000000..d37563eda9 --- /dev/null +++ b/meta-oe/recipes-support/driverctl/driverctl_0.115.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | SUMMARY = "driverctl is a device driver control utility for Linux" | ||
2 | LICENSE = "LGPL-2.1-only" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" | ||
4 | |||
5 | REQUIRED_DISTRO_FEATURES = "systemd" | ||
6 | |||
7 | DEPENDS = "systemd" | ||
8 | RDEPENDS:${PN} += "bash bash-completion" | ||
9 | |||
10 | SRC_URI = "git://gitlab.com/driverctl/driverctl.git;branch=master;protocol=https" | ||
11 | SRCREV = "2ba60536eb20ca0a6a751bd8b6501dba84ec45d3" | ||
12 | |||
13 | S = "${WORKDIR}/git" | ||
14 | |||
15 | inherit pkgconfig systemd features_check | ||
16 | |||
17 | do_install () { | ||
18 | oe_runmake install DESTDIR=${D} | ||
19 | } | ||
20 | |||
21 | FILES:${PN} += "${libdir}" | ||
22 | FILES:${PN} += "${datadir}" | ||
23 | |||