Commit Graph

65394 Commits (2d5a94b742d5b21f480d299c319a58a5c989b382)

Author SHA1 Message Date
Thomas Petazzoni 2d5a94b742 package/docopt-cpp: fix comment header in .mk file
This was missed in commit
43f96ced67 ("package/docopt-cpp: new
package")

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-31 13:55:10 +01:00
Aaltonen Eero 43f96ced67 package/docopt-cpp: new package
Add docopt.cpp library that can be used to create intuitive command
line interfaces with very little code by describing the valid calls
using the (POSIX.1-2017) command line utility argument syntax.

Signed-off-by: Eero Aaltonen <eero.aaltonen@vaisala.com>
Reviewed-by: Angelo Compagnucci <angelo@amarulasolutions.com>
Tested-by: Angelo Compagnucci <angelo@amarulasolutions.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-31 13:46:55 +01:00
Fabrice Fontaine fbe2a973da package/oracle-mysql: add CPE variables
cpe:2.3🅰️oracle:mysql is a valid CPE identifier for this package:

  https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Aoracle%3Amysql

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-31 13:25:39 +01:00
Fabrice Fontaine bada3ae53f utils/genrandconfig: handle a10disp
a10disp will raise the following build failure with a mainline kernel:

cp: cannot stat '/home/autobuild/autobuild/instance-0/output-1/build/linux-5.17.15/include/video/sunxi_disp_ioctl.h': No such file or directory

Fixes:
 - http://autobuild.buildroot.org/results/1f2607d6adece4d5dfe17fbdb032a2d228fc030f

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-31 13:20:03 +01:00
Sergey Matyukevich 27e66d77c1 package/wpa_supplicant: fix static build issue with zlib-ng
Hostapd/wpa_s uses 'crc32' name for IEEE802.11 CRC-32 routine. This name
is too generic. Buildroot autobuilder detected configurations that failed
to build due to the naming conflict with zlib-ng.

Add wpa_supplicant part of the upstream patch that renames 'crc32'
function to a less generic 'ieee80211_crc32' name.

Fixes: http://autobuild.buildroot.net/results/ac19975f0bf77f4a8ca574c374092ba81cd5a332/

Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-31 13:18:21 +01:00
Sergey Matyukevich 7d920f9d40 package/hostapd: fix static build issue with zlib-ng
Hostapd uses 'crc32' name for IEEE802.11 CRC-32 routine. This name is
too generic. Buildroot autobuilder detected configurations that failed
to build due to the naming conflict with zlib-ng.

Add hostapd part of the upstream patch that renames 'crc32' function
to a less generic 'ieee80211_crc32' name.

Fixes: http://autobuild.buildroot.net/results/9901df820d3afa4cde78e8ad6d62cb8ce7e69fdb/

Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-31 13:18:21 +01:00
Yann E. MORIN 2702404942 package/rpi-firmware: add option to use custom cmdline.txt
Currently, the cmdline.txt file is installed in $(BINARIES_DIR) by the
rpi-firmware package. Overriding files in there can not be done with an
overlay (which only applies to $(TARGET_DIR)), and thus requires using
either a post-build or post-image script, which is not always very
practical when a custom file must be used.

Like was done in 689b9ac439 (package/rpi-firmware: rework boot/config
file handling) for config.txt, add an option to allow users to specify
the path to a custom cmdline.txt.

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 13:12:59 +01:00
Christian Stewart 43c7fda8d6 package/python-pyyaml: add host package
The Jetson AGX Orin python script to flash requires host python-pyyaml.

Add a Config.in.host option for the host python-pyyaml package.

BR2_PACKAGE_HOST_PYTHON_PYYAML

Signed-off-by: Christian Stewart <christian@paral.in>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-31 13:08:14 +01:00
Vincent Stehlé 89c245b97a configs/qemu_aarch64_ebbr: new defconfig
Add a defconfig to build an AArch64 U-Boot based firmware implementing the
subset of UEFI defined by EBBR[1], as well as a Linux OS disk image booting
with UEFI, to run on Qemu.

The generated firmware binary can also be used to install or run another OS
supporting the EBBR specification.

We do not have Linux 5.19 headers at the moment therefore we rely on 5.17
in the defconfig.

[1]: https://github.com/ARM-software/ebbr

Signed-off-by: Vincent Stehlé <vincent.stehle@arm.com>
Reviewed-by: Romain Naour <romain.naour@gmail.com>
Reviewed-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-31 13:07:25 +01:00
Paul Cercueil bacbda92e1 package/glmark2: add patch to fix GCC 12 build
Add a patch cherry-picked from upstream to fix the build with GCC 12.

Upstream commit is d1ca3f53c96dc8a4048b17dc16147a8fac782d4a.
I don't know if it fixes any autobuilder errors, I noticed the bug when
building locally.

Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 11:46:07 +01:00
Thomas Petazzoni 23407308e5 package/cni-plugins: add missing BR2_USE_MMU dependency on Config.in comment
The main option has a BR2_USE_MMU dependency, so the Config.in comment
should have it as well.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-31 11:43:06 +01:00
Christian Stewart d76655c86e package/cni-plugins: new package
Container Networking Interface plugins.

https://github.com/containernetworking/plugins

Dependency of podman.

Signed-off-by: Christian Stewart <christian@paral.in>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-31 11:39:35 +01:00
Christian Stewart e3975ec7d4 package/catatonit: new package
catatonit is a simple but valid init binary to act as PID 1 for containers.

https://github.com/openSUSE/catatonit

Dependency of podman.

Signed-off-by: Christian Stewart <christian@paral.in>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-31 11:32:31 +01:00
Marcus Folkesson 8369ff62db package/libostree: select libarchive for s390x architecture
libarchive is needed when building for s390x.

Introduced in this patch:
c6a53ef6e8f9491633b0d494991f94c629791e1d s390x: use 'libarchive' to modify initrd in SE case

Fixes:

  http://autobuild.buildroot.net/results/14cc164ab3005be9b3efde57b4bd914414e3acf0/

Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-31 11:26:05 +01:00
Fabrice Fontaine 9a294be424 package/msmtp: security bump to version 1.8.22
- Fixed a security problem in msmtpd: mail addresses starting with '-' could be
  interpreted as options of the pipe command.

https://github.com/marlam/msmtp-mirror/blob/msmtp-1.8.22/NEWS

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:57:23 +01:00
Fabrice Fontaine b8098ff155 package/log4cxx: bump to version 0.13.0
Drop patch which was merged:
5240a3db1b
and updated:
b7284609ae

https://logging.apache.org/log4cxx/latest_stable/changelog.html#0.13.0

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:50:59 +01:00
Fabrice Fontaine fbaaab0fb5 package/igmpproxy: bump to version 0.4
https://github.com/pali/igmpproxy/releases/tag/0.4

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:50:57 +01:00
Fabrice Fontaine 69ee6fdef4 package/cups-pk-helper: bump to version 0.2.7
Switch to meson-package

https://gitlab.freedesktop.org/cups-pk-helper/cups-pk-helper/-/blob/0.2.7/NEWS

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:50:55 +01:00
Fabrice Fontaine 35a6c9cb0d package/exfatprogs: bump to version 1.2.0
https://github.com/exfatprogs/exfatprogs/releases/tag/1.2.0

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:50:52 +01:00
Fabrice Fontaine 11ff62234a package/exfatprogs: drop host-pkgconf dependency
host-pkgconf is not a dependency since bump to version 1.0.3 in commit
fbad745139 and
843124cd9a

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:50:50 +01:00
Bernd Kuhls 9d136e5cc9 package/{libuv, uvw}: bump to versions 1.44.2, 2.12.1_libuv_v1.44
- libuv
  Release notes:
  https://github.com/libuv/libuv/issues/3452
  https://github.com/libuv/libuv/issues/3522
  https://github.com/libuv/libuv/issues/3586

  Updated license hash due to various commits regarding Android/Windows.

- uvw:
  Updated license hash due to copyright year bump:
  cca65db1f4

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:50:48 +01:00
Fabrice Fontaine fb35e5f032 package/arp-scan: bump to version 1.9.8
Update hash of COPYING (gnu.org license file used since
6194ffb69d)

https://github.com/royhills/arp-scan/blob/1.9.8/ChangeLog

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:50:45 +01:00
Bernd Kuhls 55ef42e090 package/exim: fix typo in comment
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:50:43 +01:00
Fabrice Fontaine 27a4b1a967 package/motion: bump to version 4.5.0
https://github.com/Motion-Project/motion/releases/tag/release-4.5.0

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:50:41 +01:00
James Hilliard e919528e64 package/python-pillow: bump to version 9.3.0
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:50:38 +01:00
Bernd Kuhls c46ba02f29 package/intel-mediasdk: bump version to 22.6.0
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:50:36 +01:00
Bernd Kuhls d30de3f1e1 package/intel-mediadriver: bump version to 22.6.0
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:50:34 +01:00
Bernd Kuhls 5a172ef532 package/flac: bump version to 1.4.2
Changelog: https://xiph.org/flac/changelog.html

Switched _SITE to https and update project URL.

Upstream removed the dependency to host-nasm:
75ef7958df (diff-49473dca262eeab3b4a43002adb08b4db31020d190caaad1594b47f1d5daa810L474)

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:50:32 +01:00
Tan En De 68df37aeb4 DEVELOPERS: add myself for package/libkcapi
Add myself to help maintaining package/libkcapi.

Signed-off-by: Tan En De <ende.tan@starfivetech.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:46:13 +01:00
Simon Richter 04154a6517 support/download/cargo-post-process: cargo output for vendor config
Use the output of `cargo vendor` to generate the vendor configuration.

Fixes the need to patch the generated configuration if there are
non-crates.io dependencies.

Note:
  `cargo vendor` currently prints a newline before it prints the
  needed configuration.

  This is fixed in +nightly, will end up in +stable soon and must
  be considered when updating cargo.
  See: https://github.com/rust-lang/cargo/pull/11273

  Until then it is needed to remove this first line to make sure
  that the contents of .cargo/config will be the same as they were
  generated with the earlier version of the script. Thus, the
  hashes of the packages that use this script remain the same.

Signed-off-by: Simon Richter <simon.richter@ptwdosimetry.com>
[yann.morin.1998@free.fr: add comment in rust-bin.mk and rust.mk]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 10:06:17 +01:00
James Hilliard e6942ad11f package/gawk: fix double free during kernel build
Backport an upstream patch to fix a crash during kernel build.

Details: https://bugs.gentoo.org/868567

Fixes:
  GEN     /home/buildroot/buildroot/output/build/linux-6.0.6/tools/objtool/arch/x86/lib/inat-tables.c
free(): double free detected in tcache 2
Aborted

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-10-31 08:28:03 +01:00
Joachim Wiberg 3b27e969fd package/s6-rc: bump to v0.5.3.2
Summary of changes:

 - skalibs dependency bumped to 2.12.0.0.
 - execline dependency bumped to 2.9.0.0.
 - s6 dependency bumped to 2.11.1.0.
 - s6-rc-compile now reads service dependency information from the
   dependencies.d directory and bundle information from the contents.d
   directory, instead of the dependencies and contents flat files.
   The old format is still supported, but deprecated.

License hash updated due to copyright year change.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 23:38:57 +01:00
Joachim Wiberg 1a236c99f4 package/s6-networking: bump to v2.5.1.1
Summary of changes:

 - skalibs dependency bumped to 2.12.0.0
 - s6-dns dependency bumped to 2.3.5.4
 - skalibs dependency bumped to 2.11.1.0
 - execline optional dependency bumped to 2.8.2.0
 - s6 dependency bumped to 2.11.0.1
 - The obsolete minidentd program has been removed.
 - LibreSSL optional dependency bumped to 3.3.4
 - LibreTLS optional dependency bumped to 3.3.4
 - Client certificates are now properly supported in s6-tlsd-io.

License hash updated due to copyright year change.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 23:30:26 +01:00
Joachim Wiberg 0773fad16c package/s6-dns: bump to v2.3.5.4
License hash updated due to copyright year change.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 23:29:34 +01:00
Joachim Wiberg bd506eb2c8 package/s6-portable-utils: bump to v2.2.5.0
License hash updated due to copyright year change.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 23:28:41 +01:00
Joachim Wiberg 5aac1d0105 package/s6-linux-utils: bump to v2.6.0.0
Summary of changes:

 - skalibs dependency bumped to 2.12.0.0.
 - s6-fillurandompool has been replaced with the new rngseed program.

License hash updated due to copyright year change.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 23:27:17 +01:00
Joachim Wiberg 80b1d93d8b package/s6: bump to v2.11.1.2
Summary of changes:

 - execline optional dependency bumped to 2.9.0.1.
 - skalibs dependency bumped to 2.12.0.0.
 - nsss optional dependency bumped to 0.2.0.1.
 - s6-svwait now supports the -r and -R options, to wait for service restarts.
 - The s6/lock.h, s6/supervise.h and s6/fdholder.h headers replace their
   previous versions that had an extra s6 prefix.
 - New binaries: s6-svlink, s6-svunlink, and s6-socklog.

License hash updated due to copyright year change.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 23:25:11 +01:00
Joachim Wiberg 8dd62133a7 package/execline: bump to v2.9.0.1
Summary of changes:

 - skalibs dependency bumped to 2.12.0.0.
 - New options to wait: -o to wait for one of the listed processes,
   and -a to get the default behaviour.
 - wait now exits 99 on timeout.

License hash updated due to copyright year change.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 23:24:05 +01:00
Joachim Wiberg c8206cdb1c package/mdevd: bump to v0.1.6.0
Summary of changes:

 - skalibs dependency bumped to 2.12.0.1.
 - execline optional dependency bumped to 2.9.0.1.
 - New -O nlgroups option to mdevd, rebroadcasting uevents to the netlink
   after handling them.
 - The * and & action directives are now triggered by all action types.

License hash updated due to copyright year change.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 23:00:34 +01:00
Joachim Wiberg 0f7bfc8081 package/skalibs: bump to v2.12.0.1
Summary of changes:

New:
 - New djbunix functions: waitn_posix(), waitn_reap_posix()
 - New unix-transactional.h function: opendir_at.
 - New skalibs/posixplz.h function: munmap_void().
 - random functions now have an early version, to use when randomness is
   required before the generator can be seeded (i.e. in programs running in
   the very early boot).
 - envdir_internal() now has a SKALIBS_ENVDIR_NOCLAMP option allowing
   reading of unlimited-size variables.
 - fd_close() now chooses to adapt to Linux's close() behaviour (closing
   the fd on EINTR) over the HP-UX one (not closing it). Destructors like
   close() being allowed to fail has always been a mistake in the
   specification and a programming nightmare, making it impossible to
   behave correctly on all systems, but apparently standardization efforts
   are on the way and the Linux behaviour seems to be the chosen one.

Removed:
 - libbiguint removed.
 - Obsolete skalibs/environ.h and skalibs/getpeereid.h headers removed.
 - rc4 and md5 functions removed.
 - iobuffer removed. fd_cat() and fd_catn() changed signatures.
 - All signal functions entirely reworked; cruft removed.
 - The unsafe cdb_successor() API has been removed.
 - random_init() and random_finish() removed, as well as random_char().

Renamed APIs and type:
 - random_string() renamed to random_buf().
 - All *_t types renamed without the _t suffix, to preserve POSIX namespace.
 - subgetopt() renamed to lgetopt().
 - skalibs/cdb_make.h renamed to skalibs/cdbmake.h;
   cdbmake functions now return 1 on success and 0 on failure.
 - skalibs/cdb.h redesigned to remove reader state from the cdb structure.

License hash updated due to copyright year change.

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 22:34:59 +01:00
Thomas Petazzoni 6ad33ff4d7 package/wolftpm: move Config.in comment near the option it is related to
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 22:31:59 +01:00
Dimitar Tomov fada6de8b0 package/wolftpm: add config option to enable debug output
Signed-off-by: Dimitar Tomov <dimi@tpm.dev>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 22:31:37 +01:00
Dimitar Tomov 09779d0f69 package/wolftpm: bump version to v2.6.0
Signed-off-by: Dimitar Tomov <dimi@tpm.dev>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 22:28:55 +01:00
Giulio Benetti dce3617ada package/sunxi-mali-utgard-driver: bump version to fix building with Linux 6.0.0
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 22:24:54 +01:00
Stefan Agner b123e8887d package/openvmtools: fix CVE-2022-31676
Add a patch for CVE-2022-31676 (local privilege escalation
vulnerability).

Signed-off-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 22:21:46 +01:00
Thomas Petazzoni 267188242e package/openvmtools: add CPE ID information
See:

  https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Avmware%3Atools

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 22:19:34 +01:00
Lang Daniel 9f0a5cd606 package/paho-mqtt-c: bump to version 1.3.11
Service release. Issues resolved:
https://github.com/eclipse/paho.mqtt.c/milestone/18?closed=1

https://github.com/eclipse/paho.mqtt.c/releases/tag/v1.3.11

Signed-off-by: Daniel Lang <d.lang@abatec.at>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 21:51:10 +01:00
Angelo Compagnucci 30df48b207 package/python-minimalmodbus: new package
Easy-to-use Modbus RTU and Modbus ASCII implementation for Python.

Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 21:49:53 +01:00
Lang Daniel 5b3b2d80f4 package/iwd: drop dbus check
Since 6f5f6bc dbus is selected when iwd is selected.
It is only a runtime dependency, so drop the build
dependency.

Signed-off-by: Daniel Lang <d.lang@abatec.at>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 21:36:43 +01:00
James Hilliard ad62fa3acb package/rtl8192eu: new package
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2022-10-30 21:36:04 +01:00