summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* wireplumber: update 0.5.5. -> 0.5.6Markus Volk2024-09-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WirePlumber 0.5.6 ~~~~~~~~~~~~~~~~~ Additions: - Implemented before/after dependencies for components, to ensure correct load order in custom configurations (#600) - Implemented profile inheritance in the configuration file. This allows profiles to inherit all the feature specifications of other profiles, which is useful to avoid copying long lists of features just to make small changes - Added multi-instance configuration profiles, tested and documented them - Added a ``main-systemwide`` profile, which is now the default for instances started via the system-wide systemd service and disables features that depend on the user session (#608) - Added a ``wp_core_connect_fd`` method, which allows making a connection to PipeWire via an existing open socket (useful for portal-based connections) Fixes: - The Bluetooth auto-switch script now uses the common event source object managers, which should improve its stability (!663) - Fix an issue where switching between Bluetooth profiles would temporarily link active audio streams to the internal speakers (!655) Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* yavta: Upgrade SRCREV to include 64bit time_t print format errorsKhem Raj2024-09-141-1/+1
| | | | | | | | | | | Thanks Martin to point the latest commit, see [1] [1] https://git.ideasonboard.org/yavta.git/commit/?id=52c975e5542504ac10bed8b1d68df5c75951d202 Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Martin Jansa <martin.jansa@gmail.com> Cc: Ryan Eatmon <reatmon@ti.com> Cc: Einar Jon Gunnarsson <tolvupostur@gmail.com>
* tmux: Upgrade to 3.4Richard Tollerton2024-09-131-3/+2
| | | | | | | | | | | | | | | Changes vs 3.3a are located at https://raw.githubusercontent.com/tmux/tmux/3.4/CHANGES. However, the most pressing reason to upgrade is that tmux crashes on copy, see https://github.com/tmux/tmux/issues/3699. tmux's config parser was rewritten to use yacc, which necessitates DEPENDS += bison-native. drop md5sum Signed-off-by: Rich Tollerton <rich.tollerton@ni.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* gpsd: apply patch to fix gpsd building on MuslDmitry Baryshkov2024-09-132-0/+52
| | | | | | | | | | Import the patch from pending MR to fix the way flags are being handled by SConsript. Otherwise CXXFLAGS being added to CCFLAGS, masking test results because of the -fvisibility-inlines-hidden warning turning into error. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-django: upgrade 5.0.6 -> 5.0.9Fathi Boudra2024-09-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CVE-2024-45230: Potential denial-of-service vulnerability in django.utils.html.urlize() urlize and urlizetrunc were subject to a potential denial-of-service attack via very large inputs with a specific sequence of characters. CVE-2024-45231: Potential user email enumeration via response status on password reset Due to unhandled email sending failures, the django.contrib.auth.forms.PasswordResetForm class allowed remote attackers to enumerate user emails by issuing password reset requests and observing the outcomes. To mitigate this risk, exceptions occurring during password reset email sending are now handled and logged using the django.contrib.auth logger. CVE-2024-41989: Memory exhaustion in django.utils.numberformat.floatformat() The floatformat template filter is subject to significant memory consumption when given a string representation of a number in scientific notation with a large exponent. CVE-2024-41990: Potential denial-of-service in django.utils.html.urlize() The urlize() and urlizetrunc() template filters are subject to a potential denial-of-service attack via very large inputs with a specific sequence of characters. CVE-2024-41991: Potential denial-of-service vulnerability in django.utils.html.urlize() and AdminURLFieldWidget The urlize and urlizetrunc template filters, and the AdminURLFieldWidget widget, are subject to a potential denial-of-service attack via certain inputs with a very large number of Unicode characters. CVE-2024-42005: Potential SQL injection in QuerySet.values() and values_list() QuerySet.values() and values_list() methods on models with a JSONField are subject to SQL injection in column aliases via a crafted JSON object key as a passed *arg. CVE-2024-38875: Potential denial-of-service in django.utils.html.urlize() urlize() and urlizetrunc() were subject to a potential denial-of-service attack via certain inputs with a very large number of brackets. CVE-2024-39329: Username enumeration through timing difference for users with unusable passwords The django.contrib.auth.backends.ModelBackend.authenticate() method allowed remote attackers to enumerate users via a timing attack involving login requests for users with unusable passwords. CVE-2024-39330: Potential directory-traversal in django.core.files.storage.Storage.save() Derived classes of the django.core.files.storage.Storage base class which override generate_filename() without replicating the file path validations existing in the parent class, allowed for potential directory-traversal via certain inputs when calling save(). Built-in Storage sub-classes were not affected by this vulnerability. CVE-2024-39614: Potential denial-of-service in django.utils.translation.get_supported_language_variant() get_supported_language_variant() was subject to a potential denial-of-service attack when used with very long strings containing specific characters. To mitigate this vulnerability, the language code provided to get_supported_language_variant() is now parsed up to a maximum length of 500 characters. Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-django: upgrade 4.2.11 -> 4.2.16Fathi Boudra2024-09-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CVE-2024-45230: Potential denial-of-service vulnerability in django.utils.html.urlize() urlize and urlizetrunc were subject to a potential denial-of-service attack via very large inputs with a specific sequence of characters. CVE-2024-45231: Potential user email enumeration via response status on password reset Due to unhandled email sending failures, the django.contrib.auth.forms.PasswordResetForm class allowed remote attackers to enumerate user emails by issuing password reset requests and observing the outcomes. To mitigate this risk, exceptions occurring during password reset email sending are now handled and logged using the django.contrib.auth logger. CVE-2024-41989: Memory exhaustion in django.utils.numberformat.floatformat() The floatformat template filter is subject to significant memory consumption when given a string representation of a number in scientific notation with a large exponent. CVE-2024-41990: Potential denial-of-service in django.utils.html.urlize() The urlize() and urlizetrunc() template filters are subject to a potential denial-of-service attack via very large inputs with a specific sequence of characters. CVE-2024-41991: Potential denial-of-service vulnerability in django.utils.html.urlize() and AdminURLFieldWidget The urlize and urlizetrunc template filters, and the AdminURLFieldWidget widget, are subject to a potential denial-of-service attack via certain inputs with a very large number of Unicode characters. CVE-2024-42005: Potential SQL injection in QuerySet.values() and values_list() QuerySet.values() and values_list() methods on models with a JSONField are subject to SQL injection in column aliases via a crafted JSON object key as a passed *arg. CVE-2024-38875: Potential denial-of-service in django.utils.html.urlize() urlize() and urlizetrunc() were subject to a potential denial-of-service attack via certain inputs with a very large number of brackets. CVE-2024-39329: Username enumeration through timing difference for users with unusable passwords The django.contrib.auth.backends.ModelBackend.authenticate() method allowed remote attackers to enumerate users via a timing attack involving login requests for users with unusable passwords. CVE-2024-39330: Potential directory-traversal in django.core.files.storage.Storage.save() Derived classes of the django.core.files.storage.Storage base class which override generate_filename() without replicating the file path validations existing in the parent class, allowed for potential directory-traversal via certain inputs when calling save(). Built-in Storage sub-classes were not affected by this vulnerability. CVE-2024-39614: Potential denial-of-service in django.utils.translation.get_supported_language_variant() get_supported_language_variant() was subject to a potential denial-of-service attack when used with very long strings containing specific characters. To mitigate this vulnerability, the language code provided to get_supported_language_variant() is now parsed up to a maximum length of 500 characters. Fixed a crash in Django 4.2 when validating email max line lengths with content decoded using the surrogateescape error handling scheme (#35361) Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask: Add missing ptest depsKhem Raj2024-09-121-0/+4
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-py-cpuinfo: Fix ptest runtime depsKhem Raj2024-09-121-0/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyyaml-include: Add missing dependencies for ptestsKhem Raj2024-09-121-0/+3
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ptest-packagelists-meta-python: Add python3-fsspec to fast test listKhem Raj2024-09-121-0/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-fsspec: Add recipeKhem Raj2024-09-121-0/+22
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-service-identity: Fix ptest rdepsKhem Raj2024-09-121-0/+2
| | | | | | Add missing six and attrs modules to runtime deps Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-trustme: Add missing ptest rdeps on attrs and six modulesKhem Raj2024-09-121-0/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tzdata: Add missing attrs modules rdep for ptestsKhem Raj2024-09-121-0/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-serpent: Fix typo attr -> attrsKhem Raj2024-09-121-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* paho-mqtt-cpp: Use system paho-mqtt-cKhem Raj2024-09-121-1/+1
| | | | | | | It was an overisight during upgrade Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
* grilo: fix buildpaths QA errorYoann Congal2024-09-121-1/+10
| | | | | | | | | | | | | | | grl-type-builtins.* are generated by glib-mkenums which leave full paths in comment and #include directives. Rewrite those before *-src packaging. Previous fix did not correct the .c file and did not work in the "devtool modify" case. Fix these errors: ERROR: grilo-0.3.16-r0 do_package_qa: QA Issue: File /usr/src/debug/grilo/0.3.16/src/grl-type-builtins.c in package grilo-src contains reference to TMPDIR [buildpaths] ERROR: grilo-0.3.16-r0 do_package_qa: QA Issue: File /usr/src/debug/grilo/0.3.16/src/grl-type-builtins.h in package grilo-src contains reference to TMPDIR [buildpaths] ERROR: grilo-0.3.16-r0 do_package_qa: Fatal QA errors were found, failing task. Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* genimage: add new recipeEnrico Jörns2024-09-121-0/+22
| | | | | Signed-off-by: Enrico Jörns <ejo@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libconfuse: add backported patch to fix search path logicEnrico Jörns2024-09-122-0/+50
| | | | | | | | The fix is required to deal with absolute paths when using genimage in openembedded context. Signed-off-by: Enrico Jörns <ejo@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libconfuse: switch to release tar archiveEnrico Jörns2024-09-121-7/+3
| | | | | | | | | | | | | | | | | | | | | | | Building autotools packages from git can be a bit tricky and requires manual invocations of autogen.sh, etc. An attempt to build for native build fails with: | autoreconf: running: autopoint --force | Can't exec "autopoint": No such file or directory at [..]/tmp/work/x86_64-linux/libconfuse-native/3.3/recipe-sysroot-native/usr/share/autoconf/Autom4te/FileUtils.pm line 318. | autoreconf: error: autopoint failed with exit status: 2 | WARNING: exit code 2 from a shell command. Since the project itself states > Please ensure you download a versioned archive from: > https://github.com/libconfuse/libconfuse/releases/ simply switch this recipe to using release archives and thus simplify it and fix the automake issue. Signed-off-by: Enrico Jörns <ejo@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libconfuse: replace DESCRIPTION by SUMMARYEnrico Jörns2024-09-121-1/+1
| | | | | | | DESCRIPTION will default to SUMMARY, but not the other way round. Signed-off-by: Enrico Jörns <ejo@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libconfuse: provide native and nativesdk supportEnrico Jörns2024-09-121-0/+2
| | | | | | | Allows to use libconfuse in native tools like 'genimage'. Signed-off-by: Enrico Jörns <ejo@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libconfuse: move to meta-oeEnrico Jörns2024-09-121-0/+0
| | | | | | | | | | | This prepares for using libconfuse for the 'genimage' recipe which should reside in meta-oe. Also libftdi (which is in meta-oe already) optionally requires libconfuse when PACKAGECONFIG option 'ftdi-eeprom' is enabled. Signed-off-by: Enrico Jörns <ejo@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* bpftool: Add support for riscv64Harish Sadineni2024-09-121-1/+1
| | | | | | | bpftool is supported for riscv64 and tested on qemuriscv64. Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-parse-type: Add missing rdep on six for ptestsKhem Raj2024-09-111-0/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mce-test: update to latest git revYi Zhao2024-09-111-2/+2
| | | | | | | 9d11fc3e05ea tprctl: enhance sighandler to explicitly print si_code Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mce-inject: upgrade to latest git revYi Zhao2024-09-111-1/+1
| | | | | | | 7668d820cadc simulate a MCE event happened during TDX guest context Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* crash: upgrade 8.0.4 -> 8.0.5Yi Zhao2024-09-113-1/+1
| | | | | | | | ChangeLog: https://crash-utility.github.io/changelog/ChangeLog-8.0.5.txt Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* s-nail: upgrade 14.9.24 -> 14.9.25Yi Zhao2024-09-113-116/+1
| | | | | | | | | | ChangeLog: https://git.sdaoden.eu/browse/s-nail.git/tree/NEWS?h=v14.9.25 Drop backport patches. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* geoclue: upgrade 2.7.1 -> 2.7.2Yi Zhao2024-09-112-3/+3
| | | | | | | | ChangeLog: https://gitlab.freedesktop.org/geoclue/geoclue/-/releases/2.7.2 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvm2: upgrade 2.03.25 -> 2.03.26Yi Zhao2024-09-112-36/+2
| | | | | | | | | | | ChangeLog: https://gitlab.com/lvmteam/lvm2/-/tags/v2_03_26 Drop 0001-configure.ac-check-egrep.patch as the issue has been fixed upstream. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mm-common: upgrade 1.0.4 -> 1.0.6Yi Zhao2024-09-112-47/+1
| | | | | | | | | | | ChangeLog: https://gitlab.gnome.org/GNOME/mm-common/-/blob/1.0.6/NEWS Drop 0001-meson.build-do-not-ask-for-python-installation-versi.patch as the issue has been fixed upstream. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-serpent: Add missing rdeps for ptests to runKhem Raj2024-09-111-1/+3
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libjxl: Upgrade to 0.10.3 releaseKhem Raj2024-09-111-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* v4l-utils: Install media ctrl pkgconfig filesEinar Gunnarsson2024-09-112-0/+50
| | | | | | | | | Commit 5f453c3401e20eb5489fac4d3b54a5bf96d019ab installs libraries but without the pkgconfig files, making them harder to link to. This adds pkgconfig files for these libraries Signed-off-by: Einar Jon Gunnarsson <tolvupostur@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* drbd-utils: upgrade 9.27.0 -> 9.28.0Yi Zhao2024-09-113-95/+10
| | | | | | | | | | | | | | ChangeLog: https://github.com/LINBIT/drbd-utils/blob/v9.28.0/ChangeLog * Drop backport patch: 0001-configure.ac-Add-an-option-to-disable-host-udev-vers.patch * Refresh patch: 0001-drbd-utils-support-usrmerge.patch Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mbedtls: upgrade 2.28.8 -> 2.28.9Yi Zhao2024-09-111-1/+1
| | | | | | | | | | | ChangeLog https://github.com/Mbed-TLS/mbedtls/releases/tag/mbedtls-2.28.9 Security fix: CVE-2024-45157 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mbedtls: upgrade 3.6.0 -> 3.6.1Yi Zhao2024-09-111-4/+5
| | | | | | | | | | | | | | | | | | ChangeLog: https://github.com/Mbed-TLS/mbedtls/releases/tag/mbedtls-3.6.1 Security fixes: CVE-2024-45157 CVE-2024-45158 CVE-2024-45159 * According to commit[1], install data_files into framework directory for ptest. [1] https://github.com/Mbed-TLS/mbedtls/commit/9c4dd4ee6fe570b6a50a275d78b7d140fec0e02f Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* autofs: upgrade 5.1.8 -> 5.1.9Yi Zhao2024-09-1024-764/+236
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ChangeLog: https://git.kernel.org/pub/scm/linux/storage/autofs/autofs.git/tree/CHANGELOG?h=release_5_1_9 * Drop backport patches: 0001-autofs-5.1.8-add-autofs_strerror_r-helper-for-musl.patch 0002-autofs-5.1.8-handle-innetgr-not-present-in-musl.patch * Drop the following patches as the issues have been fixed upstream: cross.patch pkgconfig-libnsl.patch fix_disable_ldap.patch add-the-needed-stdarg.h.patch autofs-5.0.7-fix-lib-deps.patch 0001-Define-__SWORD_TYPE-if-undefined.patch 0001-Define-__SWORD_TYPE-and-_PATH_NSSWITCH_CONF.patch 0001-Bug-fix-for-pid_t-not-found-on-musl.patch 0001-modules-lookup_multi.c-Replace-__S_IEXEC-with-S_IEXE.patch 0002-Replace-__S_IEXEC-with-S_IEXEC.patch * Reresh the following patches: no-bash.patch remove-bashism.patch mount_conflict.patch force-STRIP-to-emtpy.patch 0001-include-libgen.h-for-basename.patch 0001-Do-not-hardcode-path-for-pkg.m4.patch fix-the-YACC-rule-to-fix-a-building-failure.patch using-pkg-config-to-detect-libxml-2.0-and-krb5.patch * Add patch to fix build on musl: 0009-hash.h-include-sys-reg.h-instead-of-bits-reg.h.patch * Backport patch to fix build with gcc14: 0010-autofs-5.1.9-Fix-incompatible-function-pointer-types.patch * Add PACKAGECONFIG[openldap] and PACKAGECONFIG[sasl] Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* freeradius: upgrade 3.2.3 -> 3.2.5Yi Zhao2024-09-101-1/+1
| | | | | | | | | ChangeLog: https://github.com/FreeRADIUS/freeradius-server/releases/tag/release_3_2_4 https://github.com/FreeRADIUS/freeradius-server/releases/tag/release_3_2_5 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dracut: upgrade 102 -> 103Yi Zhao2024-09-101-1/+1
| | | | | | | | ChangeLog: https://github.com/dracut-ng/dracut-ng/releases/tag/103 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcereal: Fix build with clang-19Khem Raj2024-09-102-0/+42
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyjwt 2.8.0 -> 2.9.0Tom Geelen2024-09-101-4/+4
| | | | | | | Updated name of PYPI_PACKAGE as it is renamed on pypi.org Changelog: https://github.com/jpadilla/pyjwt/releases/tag/2.9.0 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* postgresql: Use packageconfig flag for readline dependencyHauke Lampe2024-09-101-2/+3
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nmap: depend on libpcre2 not libpcreMartin Jansa2024-09-101-1/+1
| | | | | | | | | | | * switched to libpcre2 in: https://github.com/nmap/nmap/commit/828ab48764b82d0226e860c73c5dac5b11f77385 * in builds hwere libpcre2 isn't pulled by some other dependency it was failing with: | service_scan.h:74:10: fatal error: pcre2.h: No such file or directory | 74 | #include <pcre2.h> | | ^~~~~~~~~| Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* yavta: Update to kernel 6.8Einar Gunnarsson2024-09-101-15/+3
| | | | | | | | | Additional changes: Use https protocol for git fetch Build with meson Signed-off-by: Einar Jon Gunnarsson <tolvupostur@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xterm: upgrade 393 -> 394Wang Mingyu2024-09-101-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xfsdump: upgrade 3.1.12 -> 3.2.0Wang Mingyu2024-09-101-1/+1
| | | | | | | | | | | | Changelog: =========== - don't use O_DIRECT on the RT device - Fix memory leak - suggest -x rather than assert for false roots in restore - fix rootdir due to xfsdump bulkstat misuse Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* valijson: upgrade 1.0.2 -> 1.0.3Wang Mingyu2024-09-101-1/+1
| | | | | | | | | | | | | | Changelog: =========== - Fix typos in RapidJsonAdapter, only failing when certain features are used - Added explicit default move constructors/operators - Various cosmetic fixes - Implemented functioning move constructors/operators - Compatibility with boost-1.85.0 - Ability to customize regular expression engine Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* uhubctl: upgrade 2.5.0 -> 2.6.0Wang Mingyu2024-09-101-1/+1
| | | | | | | | | | | | | | Changelog: ========= - Added support for Raspberry Pi 5 - Fixed bug for big-endian platforms - Fixed sysfs path bug for Linux kernel 6.x or higher - Added flash (inverted cycle) option - turn power on then off - Improved Linux detection - Added more devices to supported table Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>