summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* wayland-protocols: version bump 1.34 -> 1.35HEADmasterPhilipp Zabel6 days1-2/+2
| | | | | | | | | | | Marks the tablet-v2 protocol as stable. New protocol: alpha-modifier. Some small buf fixes and clarifications. https://lists.freedesktop.org/archives/wayland-devel/2024-April/043572.html Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Message-Id: <20240417160030.184488-1-p.zabel@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* linux-firmware: Version bump. 20240312 -> 20240410Christian Melki9 days1-2/+2
| | | | | | | | | No license file changes. https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/log/?h=20240410 Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20240412164840.2165113-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* ntpclient: move to stagingMichael Olbrich9 days1-1/+7
| | | | | | Upstream is dead. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* beep: move to stagingMichael Olbrich9 days1-1/+6
| | | | | | Upstream is dead. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* polkit: allow building without polkitdMichael Olbrich9 days7-12/+147
| | | | | | | This is useful for projects that don't actually use polkit at runtime but need it for packages with a hard dependency on the libraries. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* mesalib: version bump 24.0.4 -> 24.0.5Philipp Zabel13 days2-4/+2
| | | | | | | | https://docs.mesa3d.org/relnotes/24.0.5.html Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Message-Id: <20240412080840.3882092-1-p.zabel@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libcap-ng: Version bump. 0.8.4 -> 0.8.5Christian Melki14 days1-2/+2
| | | | | | | | | Minor changes. https://github.com/stevegrubb/libcap-ng/blob/v0.8.5/ChangeLog Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20240410163335.940184-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gdb: don't use libmpfr without depending on itMichael Olbrich14 days1-1/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libbytesize: only build & install in src/Michael Olbrich14 days1-0/+7
| | | | | | | | The Makfile in po/ hardcodes msgmerge and does not use the noop provided to configure. So make sure, make is not called there. Only the library is needed anyways. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* rauc/image-rauc: move BUNDLE_VERSION to image-raucMichael Tretter2024-04-103-8/+8
| | | | | | | | | | | | | | | | | | RAUC_BUNDLE_VERSION is only used by the image rule to generate the bundle. Therefore, it belongs into image-rauc. This fixes the issue that RAUC is rebuilt on every commit in a BSP, as a commit changes PTXDIST_BSP_AUTOVERSION, which in turn changes the configuration of RAUC. The rebuild is not necessary and only the RAUC bundle should be rebuilt if the version has changed. Rename the config, as the move to the image moves the item from the ptxconfig to the platformconfig. Signed-off-by: Michael Tretter <m.tretter@pengutronix.de> Message-Id: <20240410081234.3902043-1-m.tretter@pengutronix.de> [mol: fix indention] Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libarchive: Version bump. 3.7.2 -> 3.7.3Christian Melki2024-04-101-2/+2
| | | | | | | | | | | | | Version bump after the xz debacle. libarchive was affected by the same malicious user and 3.7.3 has reviewed relevant commits. https://github.com/libarchive/libarchive/releases/tag/v3.7.3 https://github.com/libarchive/libarchive/issues/2103 Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20240409202050.1649970-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* chrony: Fix URL.Christian Melki2024-04-101-1/+1
| | | | | | | | | | | | tuxfamily.org seems down. Atleast partly. Might as well adjust the URL to something officially listed at: https://chrony-project.org/download.html Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20240409200045.1135011-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* tf-a: stop defining AS and other variables in cross make envAhmad Fatoum2024-04-101-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The MAKE_ENV incantation results in PTXdist defining variables like AS and LD that point at the respective tools in the cross toolchain. This was unused as TF-A doesn't consult the AS setting in the environment, and unneeded, because we already supply a CROSS_COMPILE option, which is used to derive the correct tools. This will expectedly change with TF-A v2.11, which should merge commit cc277de81692 ("build: refactor toolchain detection"), currently sitting in the integration branch[1]. This will start accepting AS to be set from the environment and not only from the make arguments. This will break using the default cross env as TF-A assumes AS to point at a C compiler and not at an assembler. This will result in build issues, like[2]: - hang during tool discovery, because `as -v` keeps waiting for input, unlike gcc -v - Assembler errors during build, because GCC-specific options (e.g. -DMACRO=VAL) are now passed to as(1). Avoid these issues by not defining the CROSS_ENV. [1]: https://github.com/ARM-software/arm-trusted-firmware/commit/cc277de8169 [2]: https://review.trustedfirmware.org/c/TF-A/trusted-firmware-a/+/27163 Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Message-Id: <20240409102429.3143482-1-a.fatoum@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* Fix duplicated "to to" in textsMarkus Heidelberg2024-04-102-2/+2
| | | | | | | Signed-off-by: Markus Heidelberg <m.heidelberg@cab.de> Reviewed-by: Alexander Dahl <ada@thorsis.com> Message-Id: <20240409073745.1549906-3-m.heidelberg@cab.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* Fix typos "can/must be uses" -> "used"Markus Heidelberg2024-04-103-7/+7
| | | | | | | Signed-off-by: Markus Heidelberg <m.heidelberg@cab.de> Reviewed-by: Alexander Dahl <ada@thorsis.com> Message-Id: <20240409073745.1549906-2-m.heidelberg@cab.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* pciutils: Version bump. 3.11.1 -> 3.12.0Christian Melki2024-04-101-2/+2
| | | | | | | | | Minor changes. https://github.com/pciutils/pciutils/blob/v3.12.0/ChangeLog Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20240408193617.2460509-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* mtdev: Version bump. 1.1.6 -> 1.1.7Christian Melki2024-04-101-2/+2
| | | | | | | | Very minor changes. Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20240408191752.2455651-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-glslang: add missing dependencyMichael Olbrich2024-04-101-0/+1
| | | | | | | | | Otherwise, building may fails with: In file included from .../build-host/glslang-1.3.280.0/SPIRV/GlslangToSpv.cpp:46: .../build-host/glslang-1.3.280.0/SPIRV/SpvTools.h:47:10: fatal error: spirv-tools/libspirv.h: No such file or directory Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* intel-media-driver: version bump 23.4.3 -> 24.2.0Michael Olbrich2024-04-101-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* intel-gmmlib: version bump 22.3.16 -> 22.3.19Michael Olbrich2024-04-101-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gstreamer-vaapi1: version bump 1.24.1 -> 1.24.2Michael Olbrich2024-04-101-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gst-rtsp-server1: version bump 1.24.1 -> 1.24.2Michael Olbrich2024-04-101-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gst-python1: version bump 1.24.1 -> 1.24.2Michael Olbrich2024-04-103-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gst-plugins-rs: version bump 1.24.1 -> 1.24.2Michael Olbrich2024-04-105-236/+311
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gst-libav1: version bump 1.24.1 -> 1.24.2Michael Olbrich2024-04-101-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gst-devtools1: version bump 1.24.1 -> 1.24.2Michael Olbrich2024-04-101-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gst-plugins-ugly1: version bump 1.24.1 -> 1.24.2Michael Olbrich2024-04-101-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gst-plugins-bad1: version bump 1.24.1 -> 1.24.2Michael Olbrich2024-04-101-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gst-plugins-good1: version bump 1.24.1 -> 1.24.2Michael Olbrich2024-04-101-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gst-plugins-base1: version bump 1.24.1 -> 1.24.2Michael Olbrich2024-04-101-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* gstreamer1: version bump 1.24.1 -> 1.24.2Michael Olbrich2024-04-101-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* udisks: new packageMichael Olbrich2024-04-092-0/+133
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libblockdev: new packageMichael Olbrich2024-04-092-0/+120
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libbytesize: new packageMichael Olbrich2024-04-092-0/+79
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* mpfr: new packageMichael Olbrich2024-04-092-0/+79
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libnvme: new packageMichael Olbrich2024-04-092-0/+78
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* libatasmart: new packageMichael Olbrich2024-04-093-0/+71
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* polkit: version bump 0.105 -> 124Michael Olbrich2024-04-0961-5480/+44
| | | | | | The license tag was incorrect before. It was always LGPL-2.0-or-later. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* duktape: new packageMichael Olbrich2024-04-092-0/+73
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* systemd: don't use install_alternative_tree for a /usr/share/polkit-1Michael Olbrich2024-04-091-1/+1
| | | | | | | | The path is far too generic to use install_alternative_tree. Other packages may want to place individual files here. Use install_tree for the files from the systemd pkgdir. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* util-linux: allow 32-bit time_t if Y2K38 support is disabledMichael Olbrich2024-04-081-0/+1
| | | | | | | Otherwise, building with older toolchains that don't support this yet will fail. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-util-linux: Follow target util-linux.Christian Melki2024-04-071-0/+2
| | | | | | | | * Disabled new functions. Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20240406202341.1082397-2-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* util-linux: Version bump. 2.39.3 -> 2.40Christian Melki2024-04-073-38/+6
| | | | | | | | | | | | | | | | | https://github.com/util-linux/util-linux/blob/master/Documentation/releases/v2.40-ReleaseNotes * Switch URL. Release tarballs (using make dist) were missing files needed to build with meson. But the files are present in the git snapshot url. * New liblastlog2 stuff does seem to have various building issues etc, so disable them for now. * Old patches dropped, seem to be included in the new release. Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20240406202341.1082397-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* host-mtd-utils: Follow target mtd-utilsChristian Melki2024-04-071-2/+2
| | | | | | | | * Fix options that changed from endis to wwo. Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20240406180520.35472-2-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* mtd-utils: Version bump. 2.1.6 -> 2.2.0Christian Melki2024-04-074-4/+4
| | | | | | | | | | | | | Not overly exciting. https://lists.infradead.org/pipermail/linux-mtd/2024-March/104058.html * Fix options that changed from endis to wwo. * Forward patchset, applies cleanly. Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20240406180520.35472-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* sdl2: Version bump. 2.30.1 -> 2.30.2Christian Melki2024-04-071-2/+2
| | | | | | | | | Minor stable series bump. Minor bugfixes. https://github.com/libsdl-org/SDL/releases/tag/release-2.30.2 Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20240406170237.18837-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* hwdata: Version bump. 0.380 -> 0.381.Christian Melki2024-04-071-2/+2
| | | | | | | | Usual ID bumps. Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20240406165953.4190648-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* {host-,}shaderc: explicitly use the Python wrapperMichael Olbrich2024-04-072-2/+8
| | | | | | | Otherwise, cmake may find python3.x in sysroot-host and use it, instead of the system Python3. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* ptxd_make_nested: only redirect PTXDIST_FD_STD{OUT,ERR} if definedMichael Olbrich2024-04-051-4/+8
| | | | | | This is necessary for nested "menuconfig" etc. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* iperf3: version bump 3.6 -> 3.16Michael Olbrich2024-04-051-2/+3
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>