2016-09-12 22:54:53 +02:00
|
|
|
# Syntax:
|
|
|
|
#
|
|
|
|
# N: Firstname Lastname <email>
|
|
|
|
# F: file pattern or directory
|
|
|
|
# F: file pattern or directory
|
|
|
|
#
|
|
|
|
# The "F" entries can be:
|
|
|
|
#
|
|
|
|
# - A directory, in which case all patches touching any file in this
|
|
|
|
# directory or its subdirectories will be CC'ed to the developer.
|
|
|
|
# - A pattern, in which case the pattern will be expanded, and then
|
|
|
|
# all files/directories (and their subdirectories) will be
|
|
|
|
# considered when matching against a patch
|
|
|
|
#
|
|
|
|
# Notes:
|
|
|
|
#
|
|
|
|
# - When a developer adds an "arch/Config.in.<arch>" file to its list
|
|
|
|
# of files, he is considered a developer of this architecture. He
|
|
|
|
# will receive e-mail notifications about build failures occuring on
|
|
|
|
# this architecture. Not more than one e-mail per day is sent.
|
|
|
|
# - When a developer adds a directory that contains one or several
|
|
|
|
# packages, this developer will be notified when build failures
|
|
|
|
# occur. Not more than one e-mail per day is sent.
|
|
|
|
# - When a developer adds an "package/pkg-<infra>.mk" file to its list
|
|
|
|
# of files, he is considered interested by this package
|
|
|
|
# infrastructure, and will be CC'ed on all patches that add or
|
|
|
|
# modify packages that use this infrastructure.
|
|
|
|
|
2023-09-19 22:42:47 +02:00
|
|
|
N: Adam Duskett <adam.duskett@amarulasolutions.com>
|
|
|
|
F: package/depot-tools/
|
2023-12-21 16:36:11 +01:00
|
|
|
F: package/dmenu-wayland/
|
2023-12-18 20:39:50 +01:00
|
|
|
F: package/fcft/
|
2023-12-21 16:36:12 +01:00
|
|
|
F: package/foot/
|
package/flutter-engine: new package
There are many issues with this package:
- The release tarballs from https://github.com/flutter/engine are in no state
to compile. They are only for the use of gclient to download a source
directory structure suitable to build the Flutter engine! If you download,
extract and attempt to run `./tools/gn --no-goma --no-prebuilt-dart-sdk`, you
receive the error message:
`No such file or directory: 'flutter/flutter/third_party/gn/gn.'
But wait! Wasn't the gn binary just called? No, that's a wrapper in the
Flutter source tree that formats arguments to call the real gn binary.
The real gn is not provided in the tarball but is downloaded via gclient
(among many other supporting repositories.)
Even worse, the flutter buildsystem depends on the .git dirs being present.
(https://github.com/meta-flutter/meta-flutter/issues/271) This dependency
means it is not possible to create a reproducible tarball from the downloaded
sources, which is why there is no .hash file provided.
I have asked the flutter project to release full tarballs suitable for
compiling here: https://github.com/flutter/flutter/issues/130734
- Flutter engine includes a patched copy of clang that must be used to compile.
Using a Buildroot-build clang results in linking warning and errors.
As such, we depend on LLVM_ARCH_SUPPORTS but use the included clang for
building. On the plus side, this saves time having to compile clang.
- flutter-engine relies on the "PUB_CACHE", that is provided by flutter-sdk,
so we need a build dependency, even if no tool from host-flutter-sdk-bin
is used to build flutter-engine
Tested with:
- Debian 11 and 12
- Ubuntu 18.04, 20.04, and 22.04
- Fedora 38
- Per-package directories
Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com>
[yann.morin.1998@free.fr:
- search gclient.py from PATH
- indent shell script with 4 spaces
- reorganise schell script with prepare/cleanup
- tweak comment about weirdness of flutter buildsystem
- use suitable-extactor and TAR_OPTIONS
- use FLUTTER_SDK_BIN_PUB_CACHE
- add dependency to host-futter-sdk-bin (Adam)
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2023-09-19 22:42:49 +02:00
|
|
|
F: package/flutter-engine/
|
2023-09-19 22:42:51 +02:00
|
|
|
F: package/flutter-gallery/
|
2023-09-19 22:42:50 +02:00
|
|
|
F: package/flutter-pi/
|
2023-09-19 22:42:48 +02:00
|
|
|
F: package/flutter-sdk-bin/
|
package/ivi-homescreen: new package
Much like flutter-pi, this package is a Flutter embedder used to run Flutter
applications. However, unlike Flutter-pi, this package requires a Wayland
compositor to run, which flutter-pi does not support. Furthermore, flutter-pi
lacks several plugins and features that ivi-homescreen supports, such as:
- Dart VM console redirection
- DLT logging
- Accessibility
- Compositor region
- Compositor surface
- Desktop Window
- Go Router
- Isolate
- Keyboard Manager
- Layer Playground
- Mouse Cursor
- PackageInfo
- Platform
- Platform Views
- Restoration
The following plugins and options are hardcoded to off:
- Crash handler: Requires a newer version of sentry-native.
- File selector: Requires the zenity package.
- Firebase-core: Requires the firebase-cpp-sdk package.
- URL Launcher: Requires a runtime-dependency on xdg-open.
- BUILD_TEXTURE_NAVI_RENDER_EGL: Failes to build.
- BUILD_TEXTURE_TEST_EGL: Fails to build.
- ENABLE_AGL_CLIENT: Used for Automitve Grade Linux (AGL).
The ENABLE_XDG_CLIENT=ON option is a requirement to run Flutter apps.
If this option is disabled, ivi-homescreen segfaults when starting an
application.
Finally, there is a need for a patch that fixes the audio-players plugin:
If the audio-players plugin is the only plugin selected, several compilation
errors occure because of undeclared definitions, as the standard_method_codec.h
header file is missing.
Upstream-status: https://github.com/toyota-connected/ivi-homescreen/pull/133
This package has been tested on a x86_64 host with an AMD Ryzen 9 6900HS
with Docker 24.0.5:
- The following distributions:
- Fedora 39: Host system
- Ubuntu 22.04: Docker
- Debian 11: Docker
- The following targets:
- BR2_aarch64
- BR2_arm
- BR2_x86_64
Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com>
[yann.morin.1998@free.fr:
- propagate BR2_PACKAGE_HOST_FLUTTER_SDK_BIN_ARCH_SUPPORTS to comments
- drop NPTL, implied by glibc
- reorder dependencies in a more logical way
- reorder comments
- drop undefined BR2_PACKAGE_IVI_HOMESCREEN_HAS_CLIENT
- grammar ("for to change")
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2024-01-07 00:01:32 +01:00
|
|
|
F: package/ivi-homescreen/
|
2023-12-18 20:39:51 +01:00
|
|
|
F: package/libutempter/
|
2023-12-18 20:39:49 +01:00
|
|
|
F: package/tllist/
|
2023-09-19 22:42:52 +02:00
|
|
|
F: support/testing/tests/package/test_flutter.py
|
2023-09-19 22:42:47 +02:00
|
|
|
|
2019-08-03 11:59:06 +02:00
|
|
|
N: Adam Heinrich <adam@adamh.cz>
|
|
|
|
F: package/jack1/
|
|
|
|
|
2017-07-05 19:20:26 +02:00
|
|
|
N: Adrian Perez de Castro <aperez@igalia.com>
|
2018-03-23 19:59:39 +01:00
|
|
|
F: package/brotli/
|
2019-09-20 17:31:04 +02:00
|
|
|
F: package/bubblewrap/
|
2019-11-10 21:06:38 +01:00
|
|
|
F: package/cage/
|
2019-02-05 21:41:52 +01:00
|
|
|
F: package/cog/
|
2017-11-21 10:15:54 +01:00
|
|
|
F: package/libepoxy/
|
2022-06-01 23:09:38 +02:00
|
|
|
F: package/libmanette/
|
2021-05-21 12:37:36 +02:00
|
|
|
F: package/libpsl/
|
2019-02-05 21:41:49 +01:00
|
|
|
F: package/libwpe/
|
2017-07-05 19:20:26 +02:00
|
|
|
F: package/webkitgtk/
|
2019-11-10 21:06:37 +01:00
|
|
|
F: package/wlroots/
|
2018-03-23 19:59:40 +01:00
|
|
|
F: package/woff2/
|
2019-02-05 21:41:50 +01:00
|
|
|
F: package/wpebackend-fdo/
|
2019-02-05 21:41:51 +01:00
|
|
|
F: package/wpewebkit/
|
2019-09-20 17:31:05 +02:00
|
|
|
F: package/xdg-dbus-proxy/
|
2017-07-05 19:20:26 +02:00
|
|
|
|
2017-12-05 17:22:59 +01:00
|
|
|
N: Adrien Gallouët <adrien@gallouet.fr>
|
2018-09-28 00:21:01 +02:00
|
|
|
F: package/bird/
|
2017-12-05 17:22:59 +01:00
|
|
|
F: package/glorytun/
|
|
|
|
|
2020-08-29 14:33:00 +02:00
|
|
|
N: Alejandro González <alejandro.gonzalez.correo@gmail.com>
|
2020-09-20 23:36:36 +02:00
|
|
|
F: package/qprint/
|
2020-08-29 14:33:00 +02:00
|
|
|
F: package/watchdog/
|
|
|
|
|
2017-09-07 13:49:46 +02:00
|
|
|
N: Aleksander Morgado <aleksander@aleksander.es>
|
|
|
|
F: package/libmbim/
|
|
|
|
F: package/libqmi/
|
|
|
|
F: package/modem-manager/
|
|
|
|
|
2023-12-14 23:12:26 +01:00
|
|
|
N: Alessandro Partesotti <a.partesotti@gmail.com>
|
|
|
|
F: package/oatpp/
|
2023-01-29 23:50:01 +01:00
|
|
|
|
2020-02-04 09:04:38 +01:00
|
|
|
N: Alex Michel <alex.michel@wiedemann-group.com>
|
2023-10-19 08:08:07 +02:00
|
|
|
F: package/libzenoh-pico/
|
2020-02-04 09:04:38 +01:00
|
|
|
F: package/network-manager-openvpn/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Alex Suykov <alex.suykov@gmail.com>
|
2018-03-05 16:02:33 +01:00
|
|
|
F: board/chromebook/snow/
|
|
|
|
F: configs/chromebook_snow_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/vboot-utils/
|
|
|
|
|
|
|
|
N: Alexander Clouter <alex+buildroot@digriz.org.uk>
|
|
|
|
F: package/odhcp6c/
|
|
|
|
|
|
|
|
N: Alexander Dahl <post@lespocky.de>
|
|
|
|
F: package/fastd/
|
|
|
|
F: package/libuecc/
|
2021-03-10 08:38:44 +01:00
|
|
|
F: package/siproxd/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/putty/
|
2020-09-05 21:47:49 +02:00
|
|
|
|
|
|
|
N: Alexander Egorenkov <egorenar-dev@posteo.net>
|
|
|
|
F: package/makedumpfile/
|
2020-09-06 11:19:43 +02:00
|
|
|
F: package/multipath-tools/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2020-09-17 06:07:51 +02:00
|
|
|
N: Alexander Egorenkov <egorenar@linux.ibm.com>
|
|
|
|
F: arch/Config.in.s390x
|
2020-09-17 06:07:55 +02:00
|
|
|
F: board/qemu/s390x/
|
|
|
|
F: configs/qemu_s390x_defconfig
|
2020-09-17 06:08:02 +02:00
|
|
|
F: package/s390-tools/
|
2020-09-17 06:07:51 +02:00
|
|
|
|
2019-09-09 20:23:45 +02:00
|
|
|
N: Alexander Kurz <akurz@blala.de>
|
|
|
|
F: package/minimodem/
|
|
|
|
|
2019-12-01 14:33:03 +01:00
|
|
|
N: Alexander Lukichev <alexander.lukichev@gmail.com>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/openpgm/
|
|
|
|
|
2020-07-16 00:35:14 +02:00
|
|
|
N: Aleksandr Makarov <aleksandr.o.makarov@gmail.com>
|
|
|
|
F: package/libest/
|
|
|
|
|
2020-03-14 11:23:23 +01:00
|
|
|
N: Alexander Mukhin <alexander.i.mukhin@gmail.com>
|
|
|
|
F: package/tinyproxy/
|
2024-05-27 17:56:39 +02:00
|
|
|
F: package/zfs/
|
2020-03-14 11:23:23 +01:00
|
|
|
|
2018-11-22 19:36:09 +01:00
|
|
|
N: Alexander Sverdlin <alexander.sverdlin@gmail.com>
|
|
|
|
F: package/mini-snmpd/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Alexander Varnin <fenixk19@mail.ru>
|
|
|
|
F: package/liblog4c-localtime/
|
|
|
|
|
2018-02-13 14:26:34 +01:00
|
|
|
N: Alexandre Belloni <alexandre.belloni@bootlin.com>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/tz/
|
|
|
|
|
2017-06-17 01:29:27 +02:00
|
|
|
N: Alexandre Esse <alexandre.esse.dev@gmail.com>
|
|
|
|
F: package/kvazaar/
|
2017-06-20 21:11:38 +02:00
|
|
|
F: package/v4l2loopback/
|
2017-06-17 01:29:27 +02:00
|
|
|
|
2019-08-11 14:07:35 +02:00
|
|
|
N: Alexey Brodkin <alexey.brodkin@synopsys.com>
|
|
|
|
F: board/cubietech/cubieboard2/
|
|
|
|
F: configs/cubieboard2_defconfig
|
|
|
|
|
2020-04-23 09:17:52 +02:00
|
|
|
N: Alexey Lukyanchuk <skif@skif-web.ru>
|
|
|
|
F: package/zabbix/
|
|
|
|
|
2018-02-27 17:43:23 +01:00
|
|
|
N: Alistair Francis <alistair@alistair23.me>
|
2019-07-22 22:44:47 +02:00
|
|
|
F: board/sifive/
|
2019-03-21 00:05:21 +01:00
|
|
|
F: boot/opensbi/
|
2019-07-22 22:44:47 +02:00
|
|
|
F: configs/hifive_unleashed_defconfig
|
2023-09-04 05:36:32 +02:00
|
|
|
F: package/libspdm/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/xen/
|
|
|
|
|
|
|
|
N: Alvaro G. M <alvaro.gamez@hazent.com>
|
|
|
|
F: package/dcron/
|
|
|
|
F: package/libxmlrpc/
|
|
|
|
F: package/python-docopt/
|
|
|
|
|
2022-12-06 18:17:17 +01:00
|
|
|
N: Anand Gadiyar <gadiyar@ti.com>
|
2023-06-16 02:23:54 +02:00
|
|
|
F: board/ti/am62x-sk/
|
2023-06-16 02:23:53 +02:00
|
|
|
F: board/ti/am64x-sk/
|
2023-08-18 22:40:16 +02:00
|
|
|
F: boot/ti-k3-boot-firmware/
|
2023-06-16 02:23:51 +02:00
|
|
|
F: boot/ti-k3-image-gen/
|
2022-12-06 18:17:17 +01:00
|
|
|
F: boot/ti-k3-r5-loader/
|
2023-06-16 02:23:54 +02:00
|
|
|
F: configs/ti_am62x_sk_defconfig
|
2023-06-16 02:23:53 +02:00
|
|
|
F: configs/ti_am64x_sk_defconfig
|
2022-12-06 18:17:17 +01:00
|
|
|
|
2021-07-11 19:03:30 +02:00
|
|
|
N: André Zwing <nerv@dawncrow.de>
|
2018-03-07 21:15:57 +01:00
|
|
|
F: package/libkrb5/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/p7zip/
|
|
|
|
F: package/wine/
|
|
|
|
|
2021-01-06 20:47:04 +01:00
|
|
|
N: Andreas Klinger <ak@it-klinger.de>
|
|
|
|
F: package/ply/
|
|
|
|
|
2021-12-13 07:34:02 +01:00
|
|
|
N: Andreas Ziegler <br015@umbiko.net>
|
|
|
|
F: package/mpd/
|
|
|
|
|
2017-06-03 01:56:43 +02:00
|
|
|
N: Andrey Smirnov <andrew.smirnov@gmail.com>
|
2017-04-27 23:33:31 +02:00
|
|
|
F: package/python-decorator/
|
2017-06-03 01:56:46 +02:00
|
|
|
F: package/python-ipython-genutils/
|
2017-06-13 01:42:13 +02:00
|
|
|
F: package/python-pickleshare/
|
2017-06-13 01:42:11 +02:00
|
|
|
F: package/python-scandir/
|
2017-04-27 23:33:33 +02:00
|
|
|
F: package/python-simplegeneric/
|
2017-07-17 23:07:50 +02:00
|
|
|
F: package/python-systemd/
|
2017-06-13 01:42:10 +02:00
|
|
|
F: package/python-traitlets/
|
2017-07-25 18:56:03 +02:00
|
|
|
F: package/zstd/
|
2017-04-27 23:33:31 +02:00
|
|
|
|
2017-06-29 21:08:11 +02:00
|
|
|
N: Andrey Yurovsky <yurovsky@gmail.com>
|
|
|
|
F: package/rauc/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Angelo Compagnucci <angelo.compagnucci@gmail.com>
|
2022-12-16 09:04:32 +01:00
|
|
|
F: board/sipeed/lichee_rv/
|
2022-12-16 09:04:33 +01:00
|
|
|
F: board/sipeed/lichee_rv_dock/
|
2022-12-16 09:04:32 +01:00
|
|
|
F: configs/sipeed_lichee_rv*
|
2020-04-21 11:10:21 +02:00
|
|
|
F: package/apparmor/
|
2018-04-26 16:10:37 +02:00
|
|
|
F: package/corkscrew/
|
2020-07-25 22:49:42 +02:00
|
|
|
F: package/cups/
|
|
|
|
F: package/cups-filters/
|
2022-10-18 17:16:24 +02:00
|
|
|
F: package/cutekeyboard/
|
2018-11-25 00:24:22 +01:00
|
|
|
F: package/fail2ban/
|
2020-07-25 22:49:42 +02:00
|
|
|
F: package/grep/
|
2020-08-07 22:58:06 +02:00
|
|
|
F: package/htpdate/
|
2017-11-14 11:51:44 +01:00
|
|
|
F: package/i2c-tools/
|
2020-07-25 22:49:42 +02:00
|
|
|
F: package/jq/
|
package/libapparmor: new package
The layout of the package is not amenable to building both the library
and the utilities at once, so this package will only install the
library.
The other apparmor-related tools however will almost all want to always
link with the static library (it's hard-coded in their Makefiles, like:
AALIB = -Wl,-Bstatic -lapparmor -Wl,-Bdynamic -lpthread), so we also
force the build of the static library.
The kernel headers 3.16 at least are required, for CAP_AUDIT_READ.
We need to force the C standard to gnu99, otherwise:
- autoconf uses wchar_t in C99 test, so considers it to be missing
on toolchains without wchar, but wchar is not otherwise needed for
libapparmor;
- c99 is not enough, otherwise the build fails with errors like:
kernel.c:503:15: error: expected declaration specifiers or ‘...’ before ‘(’ token
extern typeof((__change_hat)) __old_change_hat __attribute__((alias ("__change_hat")));
^
Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com>
[yann.morin.1998@free.fr: strip down the patch to only build the lib]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Tested-by: Angelo Compagnucci <angelo@amarulasolutions.com>
2020-03-27 10:29:05 +01:00
|
|
|
F: package/libapparmor/
|
2020-07-25 22:49:42 +02:00
|
|
|
F: package/libb64/
|
2022-07-30 00:01:54 +02:00
|
|
|
F: package/libdill/
|
2018-05-04 11:21:59 +02:00
|
|
|
F: package/mender/
|
2019-02-06 14:23:59 +01:00
|
|
|
F: package/mender-artifact/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/mono/
|
|
|
|
F: package/mono-gtksharp3/
|
|
|
|
F: package/monolite/
|
2020-07-25 22:49:42 +02:00
|
|
|
F: package/openjpeg/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python-can/
|
2022-10-19 15:35:11 +02:00
|
|
|
F: package/python-minimalmodbus/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python-pillow/
|
|
|
|
F: package/python-pydal/
|
2019-10-21 10:48:14 +02:00
|
|
|
F: package/python-spidev/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python-web2py/
|
2020-11-24 07:59:15 +01:00
|
|
|
F: package/qt5/qt5coap/
|
2020-11-24 07:59:17 +01:00
|
|
|
F: package/qt5/qt5knx/
|
2020-11-24 07:59:16 +01:00
|
|
|
F: package/qt5/qt5mqtt/
|
2022-05-27 12:33:35 +02:00
|
|
|
F: package/rtl8723ds/
|
2022-12-16 09:04:31 +01:00
|
|
|
F: package/rtl8723ds-bt/
|
2020-07-25 22:49:42 +02:00
|
|
|
F: package/sam-ba/
|
2019-07-16 21:56:52 +02:00
|
|
|
F: package/sshguard/
|
2019-10-11 23:32:19 +02:00
|
|
|
F: package/sunwait/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/sysdig/
|
|
|
|
|
2021-06-14 13:14:44 +02:00
|
|
|
N: Andy Shevchenko <andy.shevchenko@gmail.com>
|
|
|
|
F: package/fb-test-app/
|
|
|
|
|
2018-05-11 22:50:35 +02:00
|
|
|
N: Anisse Astier <anisse@astier.eu>
|
|
|
|
F: package/go/
|
2018-07-19 15:54:08 +02:00
|
|
|
F: package/nghttp2/
|
2019-04-08 13:47:31 +02:00
|
|
|
F: package/pkg-golang.mk
|
2018-05-11 22:50:35 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Anthony Viallard <viallard@syscom-instruments.com>
|
|
|
|
F: package/gnuplot/
|
|
|
|
|
2020-11-09 17:51:24 +01:00
|
|
|
N: Antoine Tenart <atenart@kernel.org>
|
2020-09-28 16:54:25 +02:00
|
|
|
F: package/libselinux/
|
|
|
|
F: package/refpolicy/
|
2020-09-28 16:54:22 +02:00
|
|
|
F: support/testing/tests/core/test_selinux/
|
2020-09-28 16:54:21 +02:00
|
|
|
F: support/testing/tests/core/test_selinux.py
|
2020-09-28 16:54:20 +02:00
|
|
|
F: support/testing/tests/init/test_systemd_selinux/
|
2020-09-28 16:54:19 +02:00
|
|
|
F: support/testing/tests/init/test_systemd_selinux.py
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2018-07-09 21:53:33 +02:00
|
|
|
N: Antony Pavlov <antonynpavlov@gmail.com>
|
|
|
|
F: package/lsscsi/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: ARC Maintainers <arc-buildroot@synopsys.com>
|
|
|
|
F: arch/Config.in.arc
|
2017-12-19 15:55:54 +01:00
|
|
|
F: board/synopsys/
|
2018-04-03 19:48:17 +02:00
|
|
|
F: configs/snps_arc700_axs101_defconfig
|
|
|
|
F: configs/snps_archs38_axs103_defconfig
|
|
|
|
F: configs/snps_archs38_haps_defconfig
|
2017-12-19 15:55:54 +01:00
|
|
|
F: configs/snps_archs38_hsdk_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
|
|
|
|
N: Ariel D'Alessandro <ariel@vanguardiasur.com.ar>
|
2023-01-16 22:55:16 +01:00
|
|
|
F: board/bsh/
|
|
|
|
F: configs/imx8mn_bsh_smm_s2_pro_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/axfsutils/
|
|
|
|
F: package/mali-t76x/
|
|
|
|
|
|
|
|
N: Arnaud Aujon <arnaud@intelibre.fr>
|
|
|
|
F: package/espeak/
|
|
|
|
|
|
|
|
N: Arnout Vandecappelle <arnout@mind.be>
|
2017-04-05 12:14:10 +02:00
|
|
|
F: package/arp-scan/
|
2018-06-18 14:13:09 +02:00
|
|
|
F: package/dehydrated/
|
package/dracut: new host package
Dracut is the tool used by desktop distributions to build initrds.
In the embedded world, it can be very useful, too, for instance when
wanting to create an initramfs for a system recovery mode.
Whereas it is definitively possible to achieve this with buildroot, the
process is to have a dedicated buildroot configuration for that, and
perform a full build. Instead of doing that, dracut can pick the needed
binaries/shared libraries, configuration files, or kernel modules from
the 'target' directory.
The advantage is to save build time, and also to have a consistency
between the packages versions taken for the recovery and the production
filesystem.
The principle of dracut is based on the so-called 'dracut modules'. The
modules determine what will be included in the initramfs. For example,
one of dracut's modules checks the kernel modules that are included and
also includes the corresponding firmware blobs.
On the host, they are on host/lib/dracut/modules.d
Each directory as a prefix number for the order of execution, and
at least a "module-setup.sh" script.
Dracut sources all of them, and typically calls the "check()" function,
which is the placeholder for required binaries (that are aimed to be
polulated in the initrd), then the "depends()" function, that lists
other modules to depend on, and the "install()" function, that makes
the actual work.
Dracut was initially thought to work with systems using systemd,
but it can also work without it. Do to so, every "systemd-xxx"
module must be disabled in the dracut configuration file. For
convenience, the 05busybox-init module is provided, to support
busybox init system. Note that this module should *not* be enabled when
using systemd init. It is therefore only installed if busybox init is
selected.
Musl and uClibc make assumptions about the existence of some symlinks
that are not discoverable with readelf. Therefore, another module
05libc-links is provided that creates those links. The module is
installed regardless of which libc is used - the script itself discovers
if the links need to be installed based on which libc is found.
Signed-off-by: Thierry Bultel <thierry.bultel@linatsea.fr>
[arnout@mind.be: many changes]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Cc: Adam Duskett <aduskett@gmail.com>
[yann.morin.1998@free.fr: some additional fixups]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-08-15 13:17:08 +02:00
|
|
|
F: package/dracut/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/freescale-imx/firmware-imx/
|
|
|
|
F: package/freescale-imx/imx-lib/
|
2018-02-16 16:21:25 +01:00
|
|
|
F: package/libpagekite/
|
2017-02-23 18:00:36 +01:00
|
|
|
F: package/lua-bit32/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/owfs/
|
|
|
|
F: package/python-bottle/
|
|
|
|
F: package/sqlcipher/
|
|
|
|
F: package/stress/
|
|
|
|
|
2018-03-06 21:03:25 +01:00
|
|
|
N: Asaf Kahlon <asafka7@gmail.com>
|
2019-09-21 16:49:33 +02:00
|
|
|
F: package/collectd/
|
2020-04-17 15:18:55 +02:00
|
|
|
F: package/libfuse3/
|
2018-06-23 17:17:36 +02:00
|
|
|
F: package/libuv/
|
2018-10-20 21:07:31 +02:00
|
|
|
F: package/python*
|
2019-10-09 19:24:21 +02:00
|
|
|
F: package/snmpclitools/
|
2019-04-27 16:03:35 +02:00
|
|
|
F: package/spdlog/
|
2019-03-16 08:05:20 +01:00
|
|
|
F: package/uftp/
|
2021-04-23 19:26:01 +02:00
|
|
|
F: package/uftrace/
|
2019-10-26 16:02:04 +02:00
|
|
|
F: package/uvw/
|
2018-04-15 20:15:55 +02:00
|
|
|
F: package/zeromq/
|
2018-03-06 21:03:25 +01:00
|
|
|
|
2019-10-08 22:19:52 +02:00
|
|
|
N: Ash Charles <ashcharles@gmail.com>
|
2016-12-09 03:23:21 +01:00
|
|
|
F: package/pru-software-support/
|
|
|
|
F: package/ti-cgt-pru/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Assaf Inbal <shmuelzon@gmail.com>
|
|
|
|
F: package/lbase64/
|
|
|
|
F: package/luabitop/
|
|
|
|
F: package/luaexpatutils/
|
|
|
|
F: package/luaposix/
|
|
|
|
F: package/luasec/
|
|
|
|
F: package/lua-ev/
|
|
|
|
F: package/orbit/
|
|
|
|
|
2020-02-13 14:40:40 +01:00
|
|
|
N: Attila Wagner <attila.wagner@onyxinsight.com>
|
|
|
|
F: package/python-canopen/
|
|
|
|
|
2023-03-14 10:52:34 +01:00
|
|
|
N: Bagas Sanjaya <bagasdotme@gmail.com>
|
|
|
|
F: package/git/
|
|
|
|
|
2017-12-08 14:59:27 +01:00
|
|
|
N: Bartosz Bilas <b.bilas@grinn-global.com>
|
2020-03-21 14:32:19 +01:00
|
|
|
F: board/stmicroelectronics/stm32mp157a-dk1/
|
|
|
|
F: configs/stm32mp157a_dk1_defconfig
|
2021-06-12 11:00:06 +02:00
|
|
|
F: package/cegui/
|
2021-02-17 20:49:59 +01:00
|
|
|
F: package/log4qt/
|
2019-11-07 18:05:04 +01:00
|
|
|
F: package/python-esptool/
|
2019-11-07 18:05:03 +01:00
|
|
|
F: package/python-pyaes/
|
2020-06-16 19:19:01 +02:00
|
|
|
F: package/ttyd/
|
2017-12-08 14:59:27 +01:00
|
|
|
F: package/qt5/qt5scxml/
|
2019-10-06 14:13:31 +02:00
|
|
|
F: package/qt5/qt5webview/
|
2017-12-08 14:59:27 +01:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Baruch Siach <baruch@tkos.co.il>
|
2019-06-16 10:18:47 +02:00
|
|
|
F: board/solidrun/clearfog_gt_8k/
|
|
|
|
F: configs/solidrun_clearfog_gt_8k_defconfig
|
2018-03-01 22:51:42 +01:00
|
|
|
F: package/18xx-ti-utils/
|
2019-11-20 13:45:23 +01:00
|
|
|
F: package/cpuburn-arm/
|
2017-05-02 07:07:44 +02:00
|
|
|
F: package/daemon/
|
2017-11-09 19:52:54 +01:00
|
|
|
F: package/dropbear/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/ebtables/
|
2017-11-09 19:52:54 +01:00
|
|
|
F: package/i2c-tools/
|
|
|
|
F: package/libcurl/
|
|
|
|
F: package/libpcap/
|
2023-01-17 11:59:45 +01:00
|
|
|
F: package/sexpect/
|
2017-10-30 06:08:55 +01:00
|
|
|
F: package/socat/
|
2017-11-09 19:52:54 +01:00
|
|
|
F: package/strace/
|
|
|
|
F: package/tcpdump/
|
2017-03-13 15:42:13 +01:00
|
|
|
F: package/ti-uim/
|
2017-08-22 15:11:20 +02:00
|
|
|
F: package/uhubctl/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
|
|
|
N: Ben Boeckel <mathstuf@gmail.com>
|
|
|
|
F: package/taskd/
|
|
|
|
|
|
|
|
N: Benjamin Kamath <kamath.ben@gmail.com>
|
|
|
|
F: package/lapack/
|
|
|
|
|
2023-06-15 18:20:49 +02:00
|
|
|
N: Bernd Kuhls <bernd@kuhls.net>
|
2017-05-21 17:01:06 +02:00
|
|
|
F: package/alsa-lib/
|
|
|
|
F: package/alsa-utils/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/apache/
|
2021-07-13 21:13:59 +02:00
|
|
|
F: package/apg/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/apr/
|
|
|
|
F: package/apr-util/
|
2017-10-06 22:28:27 +02:00
|
|
|
F: package/bcg729/
|
2021-12-12 14:49:55 +01:00
|
|
|
F: package/bento4/
|
2021-05-14 09:51:30 +02:00
|
|
|
F: package/bitcoin/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/clamav/
|
2019-08-10 10:00:21 +02:00
|
|
|
F: package/dav1d/
|
2022-07-27 20:13:03 +02:00
|
|
|
F: package/dht/
|
2024-02-20 19:02:24 +01:00
|
|
|
F: package/dnsmasq/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/dovecot/
|
|
|
|
F: package/dovecot-pigeonhole/
|
|
|
|
F: package/dtv-scan-tables/
|
2023-06-11 13:22:46 +02:00
|
|
|
F: package/ethtool/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/eudev/
|
|
|
|
F: package/exim/
|
|
|
|
F: package/fetchmail/
|
2018-07-29 13:12:05 +02:00
|
|
|
F: package/ffmpeg/
|
2019-08-12 05:46:39 +02:00
|
|
|
F: package/flac/
|
2023-06-11 13:22:46 +02:00
|
|
|
F: package/flatbuffers/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/freeswitch/
|
2017-10-06 22:28:28 +02:00
|
|
|
F: package/freeswitch-mod-bcg729/
|
2019-07-07 13:44:15 +02:00
|
|
|
F: package/freetype/
|
2019-09-21 21:28:02 +02:00
|
|
|
F: package/fstrcmp/
|
2016-12-18 21:56:29 +01:00
|
|
|
F: package/ghostscript/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/giflib/
|
2020-05-02 12:06:35 +02:00
|
|
|
F: package/gkrellm/
|
2019-08-06 07:19:21 +02:00
|
|
|
F: package/gpsd/
|
2021-06-05 10:15:05 +02:00
|
|
|
F: package/gptfdisk/
|
2022-12-11 12:28:24 +01:00
|
|
|
F: package/hddtemp/
|
2023-07-30 13:04:32 +02:00
|
|
|
F: package/hdparm/
|
2021-05-30 07:58:19 +02:00
|
|
|
F: package/intel-gmmlib/
|
|
|
|
F: package/intel-mediadriver/
|
|
|
|
F: package/intel-mediasdk/
|
2022-12-14 20:58:26 +01:00
|
|
|
F: package/intel-microcode/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/jsoncpp/
|
|
|
|
F: package/kodi*
|
|
|
|
F: package/lame/
|
2023-06-11 13:22:46 +02:00
|
|
|
F: package/lcms2/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/leafnode2/
|
|
|
|
F: package/libaacs/
|
|
|
|
F: package/libass/
|
|
|
|
F: package/libbdplus/
|
|
|
|
F: package/libbluray/
|
|
|
|
F: package/libbroadvoice/
|
2023-06-11 13:22:46 +02:00
|
|
|
F: package/libcap/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libcdio/
|
|
|
|
F: package/libcec/
|
|
|
|
F: package/libcodec2/
|
|
|
|
F: package/libcrossguid/
|
2023-07-08 22:04:41 +02:00
|
|
|
F: package/libde265/
|
2023-07-16 16:50:02 +02:00
|
|
|
F: package/libdecor/
|
2022-07-27 20:13:02 +02:00
|
|
|
F: package/libdeflate/
|
2023-07-30 13:04:32 +02:00
|
|
|
F: package/libdisplay-info/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libdrm/
|
|
|
|
F: package/libdvbcsa/
|
|
|
|
F: package/libdvdcss/
|
|
|
|
F: package/libdvdnav/
|
|
|
|
F: package/libdvdread/
|
|
|
|
F: package/libebur128/
|
|
|
|
F: package/libfreeglut/
|
2023-07-30 13:04:32 +02:00
|
|
|
F: package/libfribidi/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libg7221/
|
|
|
|
F: package/libglew/
|
|
|
|
F: package/libglfw/
|
|
|
|
F: package/libglu/
|
|
|
|
F: package/libhdhomerun/
|
2023-07-08 22:04:42 +02:00
|
|
|
F: package/libheif/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libilbc/
|
2021-11-06 12:11:43 +01:00
|
|
|
F: package/libks/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libldns/
|
|
|
|
F: package/libmicrohttpd/
|
|
|
|
F: package/libminiupnpc/
|
2019-10-05 22:59:20 +02:00
|
|
|
F: package/libmspack/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libnatpmp/
|
2017-03-12 12:33:25 +01:00
|
|
|
F: package/libnpth/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libogg/
|
|
|
|
F: package/libopenh264/
|
|
|
|
F: package/libpciaccess/
|
|
|
|
F: package/libplatform/
|
2017-09-03 15:08:58 +02:00
|
|
|
F: package/libpng/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libsidplay2/
|
|
|
|
F: package/libsilk/
|
|
|
|
F: package/libsndfile/
|
|
|
|
F: package/libsoundtouch/
|
2020-04-05 20:20:34 +02:00
|
|
|
F: package/libudfread/
|
2022-12-12 21:27:27 +01:00
|
|
|
F: package/libunibreak/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/liburiparser/
|
2022-02-05 19:08:17 +01:00
|
|
|
F: package/libutp/
|
2023-06-11 13:22:46 +02:00
|
|
|
F: package/libuv/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libva/
|
|
|
|
F: package/libva-intel-driver/
|
2017-07-03 23:09:53 +02:00
|
|
|
F: package/libva-utils/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libvorbis/
|
2023-12-24 09:13:19 +01:00
|
|
|
F: package/libvpl/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libvpx/
|
|
|
|
F: package/libyuv/
|
2023-06-11 13:22:46 +02:00
|
|
|
F: package/linux-firmware/
|
|
|
|
F: package/mc/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/mesa3d/
|
|
|
|
F: package/minidlna/
|
|
|
|
F: package/mjpg-streamer/
|
2023-06-11 13:22:46 +02:00
|
|
|
F: package/mpg123/
|
|
|
|
F: package/ntp/
|
2022-05-12 22:57:32 +02:00
|
|
|
F: package/nut/
|
2023-08-08 08:41:07 +02:00
|
|
|
F: package/onevpl-intel-gpu/
|
2023-06-11 13:22:46 +02:00
|
|
|
F: package/opus/
|
|
|
|
F: package/pciutils/
|
2018-08-21 22:41:32 +02:00
|
|
|
F: package/perl-crypt-openssl-guess/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/perl-crypt-openssl-random/
|
|
|
|
F: package/perl-crypt-openssl-rsa/
|
|
|
|
F: package/perl-digest-sha1/
|
|
|
|
F: package/perl-encode-detect/
|
|
|
|
F: package/perl-encode-locale/
|
|
|
|
F: package/perl-file-listing/
|
|
|
|
F: package/perl-html-parser/
|
|
|
|
F: package/perl-html-tagset/
|
|
|
|
F: package/perl-http-cookies/
|
|
|
|
F: package/perl-http-daemon/
|
|
|
|
F: package/perl-http-date/
|
|
|
|
F: package/perl-http-message/
|
|
|
|
F: package/perl-http-negotiate/
|
|
|
|
F: package/perl-io-html/
|
|
|
|
F: package/perl-lwp-mediatypes/
|
|
|
|
F: package/perl-mail-dkim/
|
|
|
|
F: package/perl-mailtools/
|
2023-07-30 13:04:32 +02:00
|
|
|
F: package/perl-netaddr-ip/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/perl-net-dns/
|
|
|
|
F: package/perl-net-http/
|
|
|
|
F: package/perl-timedate/
|
|
|
|
F: package/perl-uri/
|
|
|
|
F: package/perl-www-robotrules/
|
2021-01-07 19:02:16 +01:00
|
|
|
F: package/php/
|
2017-04-08 17:18:03 +02:00
|
|
|
F: package/pngquant/
|
2023-06-11 13:22:46 +02:00
|
|
|
F: package/pppd/
|
|
|
|
F: package/privoxy/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/pure-ftpd/
|
2016-10-10 21:09:58 +02:00
|
|
|
F: package/python-couchdb/
|
|
|
|
F: package/python-cssutils/
|
2022-12-20 21:20:48 +01:00
|
|
|
F: package/python-glslang/
|
2023-07-30 13:04:32 +02:00
|
|
|
F: package/python-mako/
|
2016-10-10 21:09:58 +02:00
|
|
|
F: package/python-mwclient/
|
|
|
|
F: package/python-mwscrape/
|
|
|
|
F: package/python-mwscrape2slob/
|
2017-11-12 11:45:21 +01:00
|
|
|
F: package/python-oauthlib/
|
2016-10-10 21:09:58 +02:00
|
|
|
F: package/python-pyicu/
|
|
|
|
F: package/python-pylru/
|
2017-11-12 11:45:22 +01:00
|
|
|
F: package/python-requests-oauthlib/
|
2016-10-10 21:09:58 +02:00
|
|
|
F: package/python-slob/
|
2023-06-11 13:22:46 +02:00
|
|
|
F: package/rrdtool/
|
2023-07-30 13:04:32 +02:00
|
|
|
F: package/rsync/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/rtmpdump/
|
2018-01-28 13:53:34 +01:00
|
|
|
F: package/samba4/
|
2023-06-11 13:22:46 +02:00
|
|
|
F: package/sofia-sip/
|
2018-10-03 15:13:57 +02:00
|
|
|
F: package/spandsp/
|
2018-06-10 11:04:42 +02:00
|
|
|
F: package/sqlite/
|
2019-08-06 07:04:45 +02:00
|
|
|
F: package/stellarium/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/taglib/
|
|
|
|
F: package/tinyxml2/
|
|
|
|
F: package/tor/
|
|
|
|
F: package/transmission/
|
|
|
|
F: package/tvheadend/
|
|
|
|
F: package/unixodbc/
|
|
|
|
F: package/vlc/
|
2023-06-11 13:22:46 +02:00
|
|
|
F: package/wget/
|
|
|
|
F: package/wireless-regdb/
|
|
|
|
F: package/wireless_tools/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/x264/
|
|
|
|
F: package/x265/
|
2021-05-24 14:29:01 +02:00
|
|
|
F: package/xmrig/
|
2019-09-04 23:21:17 +02:00
|
|
|
F: package/ytree/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/znc/
|
2020-02-10 12:26:35 +01:00
|
|
|
F: support/testing/tests/package/test_perl_html_parser.py
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2016-09-23 10:14:14 +02:00
|
|
|
N: Biagio Montaruli <biagio.hkr@gmail.com>
|
|
|
|
F: board/acmesystems/
|
|
|
|
F: configs/acmesystems_*
|
|
|
|
|
configs/chromebook_elm: new defconfig
This commit adds supports for building buildroot kernel + rootfs
for MT8173 Elm board, also known as Chromebook Elm
(https://www.acer.com/ac/en/US/content/series/acerchromebookr13).
Though Chrome-OS is officially supproted on this board, the
mainline kernel works as well (benchmarks + conformance), and so
the 5.9 kernel is used. As the 5.9 kernel isn't yet released, we
use the 5.9-rc5 for now, which will be up-revd to 5.9 once its
released.
Using the mainline kernel means that we have to apply certain patches
to get the HDMI screen working. These patches are lying in the
"drm-misc-next" list and will make it to the kernel after 5.9. At that
time, we will remove the patches and point Buildroot to use the latest
kernel (hopefully, 5.10).
This commit also adds an ITS file (for creating FIT images), an ARGS
file (for providing kernel args) and a "sign.sh" script to generate
signed kernel images. Though the "sign.sh" is very similar to the
coresponding file under board/chromebook/snow, it cannot be shared
between both boards, as the script requires access to the board
specific its / args file.
Additionally a readme & defconfig is added to help the user get started.
Signed-off-by: Bilal Wasim <bilalwasim676@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-09-24 01:52:13 +02:00
|
|
|
N: Bilal Wasim <bilalwasim676@gmail.com>
|
|
|
|
F: board/chromebook/elm/
|
|
|
|
F: configs/chromebook_elm_defconfig
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Bogdan Radulescu <bogdan@nimblex.net>
|
|
|
|
F: package/iftop/
|
|
|
|
F: package/ncdu/
|
|
|
|
|
2021-05-06 18:29:23 +02:00
|
|
|
N: Brandon Maier <brandon.maier@collins.com>
|
2023-09-21 23:56:33 +02:00
|
|
|
F: board/freescale/ls1046a-frwy/
|
|
|
|
F: configs/ls1046a-frwy_defconfig
|
2024-05-29 22:24:25 +02:00
|
|
|
F: package/mtd/
|
2023-09-19 19:15:05 +02:00
|
|
|
F: package/python-pysensors/
|
2023-09-21 23:56:32 +02:00
|
|
|
F: package/qoriq-fm-ucode/
|
2023-09-28 02:27:28 +02:00
|
|
|
F: package/unifdef/
|
2018-11-16 16:52:53 +01:00
|
|
|
F: package/vmtouch/
|
2024-05-11 01:55:09 +02:00
|
|
|
F: support/testing/tests/package/test_zip.py
|
2018-11-16 16:52:53 +01:00
|
|
|
|
2017-08-29 00:22:29 +02:00
|
|
|
N: Brock Williams <brock@cottonwoodcomputer.com>
|
|
|
|
F: package/pdmenu/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Carlo Caione <carlo.caione@gmail.com>
|
2019-11-10 14:29:11 +01:00
|
|
|
F: package/jailhouse/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/sunxi-boards/
|
|
|
|
|
|
|
|
N: Carsten Schoenert <c.schoenert@gmail.com>
|
|
|
|
F: package/dvbsnoop/
|
|
|
|
F: package/libdvbsi/
|
|
|
|
F: package/libsvg/
|
|
|
|
F: package/libsvg-cairo/
|
|
|
|
|
2018-07-09 21:53:33 +02:00
|
|
|
N: Cédric Chépied <cedric.chepied@gmail.com>
|
|
|
|
F: package/znc/
|
|
|
|
|
2022-01-10 21:58:42 +01:00
|
|
|
N: Cédric Le Goater <clg@kaod.org>
|
2022-06-21 22:34:14 +02:00
|
|
|
F: board/aspeed/
|
2022-01-10 21:58:43 +01:00
|
|
|
F: board/qemu/ppc-bamboo/
|
2022-01-10 21:58:42 +01:00
|
|
|
F: board/qemu/ppc64le-powernv8/readme.txt
|
2022-06-21 22:34:14 +02:00
|
|
|
F: configs/aspeed*
|
2022-01-10 21:58:43 +01:00
|
|
|
F: configs/qemu_ppc_bamboo_defconfig
|
2022-01-10 21:58:42 +01:00
|
|
|
F: configs/qemu_ppc64le_powernv8_defconfig
|
|
|
|
|
2021-06-15 02:59:23 +02:00
|
|
|
N: Charles Hardin <ckhardin@gmail.com>
|
|
|
|
F: package/alsa-plugins/
|
|
|
|
|
2020-02-07 09:38:54 +01:00
|
|
|
N: Changming Huang <jerry.huang@nxp.com>
|
|
|
|
F: package/qoriq-cadence-dp-firmware/
|
|
|
|
|
2022-11-23 20:52:57 +01:00
|
|
|
N: Chris Dimich <chris.dimich@boundarydevices.com>
|
|
|
|
F: package/freescale-imx/imx-vpu-hantro-daemon/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Chris Packham <judge.packham@gmail.com>
|
2020-11-11 23:41:01 +01:00
|
|
|
F: package/coremark/
|
2020-11-11 23:41:02 +01:00
|
|
|
F: package/coremark-pro/
|
2019-01-25 10:13:22 +01:00
|
|
|
F: package/gstreamer1/gst1-shark/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/micropython/
|
|
|
|
F: package/syslog-ng/
|
|
|
|
|
2017-03-01 17:18:39 +01:00
|
|
|
N: Christian Kellermann <christian.kellermann@solectrix.de>
|
|
|
|
F: package/python-pylibftdi/
|
|
|
|
|
2023-04-22 11:34:58 +02:00
|
|
|
N: Christian Stewart <christian@aperture.us>
|
2022-11-30 08:44:44 +01:00
|
|
|
F: package/balena-engine/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/batman-adv/
|
2022-08-21 06:14:17 +02:00
|
|
|
F: package/catatonit/
|
2022-08-21 07:35:47 +02:00
|
|
|
F: package/cni-plugins/
|
2023-05-22 22:23:45 +02:00
|
|
|
F: package/conmon/
|
2021-05-03 05:12:50 +02:00
|
|
|
F: package/containerd/
|
2022-08-23 07:48:11 +02:00
|
|
|
F: package/crun/
|
2020-12-10 08:27:20 +01:00
|
|
|
F: package/delve/
|
2018-12-03 21:11:59 +01:00
|
|
|
F: package/docker-cli/
|
package/docker-compose: bump to version 2.10.0
Docker Compose v2 is no longer a standalone component, but is now a
plugin loaded by docker-cli.
As such, it should not be installed in /usr/bin, but in the directory
where docker-cli loads its plugins from.
Additionally, we consequently make docker-compose depend on docker-cli;
indeed, it does not really make sense to present a plugin unless the
component it attaches to is already enabled [0].
License hash changed due to strictly copying the license text template,
without customisation to the year and copyright owner.
[0] the original submission by Christian would use a select, to keep
existing config, but that's not sensible, as we already have some
packages that are plugins and that use depends-on, like nginx plugins.
For consistency and as it semantically makes sense, we use a depends-on
here too.
Signed-off-by: Christian Stewart <christian@paral.in>
[yann.morin.1998@free.fr:
- don't select docker-cli, but depends-on it; explain it in commit log
- explain why we override the install commands
- explain change in license file hash
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-09-04 21:10:10 +02:00
|
|
|
F: package/docker-compose/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/docker-engine/
|
2021-10-11 01:46:54 +02:00
|
|
|
F: package/embiggen-disk/
|
2020-06-19 20:04:31 +02:00
|
|
|
F: package/fuse-overlayfs/
|
2018-11-07 21:12:59 +01:00
|
|
|
F: package/go/
|
2023-07-12 00:08:46 +02:00
|
|
|
F: package/go-bootstrap-stage1/
|
|
|
|
F: package/go-bootstrap-stage2/
|
2021-10-11 01:46:55 +02:00
|
|
|
F: package/gocryptfs/
|
2020-05-18 05:48:58 +02:00
|
|
|
F: package/mbpfan/
|
2022-01-09 22:06:07 +01:00
|
|
|
F: package/moby-buildkit/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/mosh/
|
2022-03-11 05:48:16 +01:00
|
|
|
F: package/nerdctl/
|
2019-04-08 09:13:36 +02:00
|
|
|
F: package/pkg-golang.mk
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/rtl8821au/
|
2022-12-18 01:55:46 +01:00
|
|
|
F: package/rtl8821cu/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/runc/
|
2018-08-10 20:42:55 +02:00
|
|
|
F: package/tini/
|
2022-10-31 23:29:07 +01:00
|
|
|
F: support/testing/tests/package/test_docker_compose.py
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2021-07-12 11:55:57 +02:00
|
|
|
N: Christophe Priouzeau <christophe.priouzeau@foss.st.com>
|
2019-08-11 14:07:22 +02:00
|
|
|
F: board/stmicroelectronics/stm32f429-disco/
|
|
|
|
F: board/stmicroelectronics/stm32f469-disco/
|
2021-12-18 22:02:13 +01:00
|
|
|
F: configs/stm32f429_disco_xip_defconfig
|
|
|
|
F: configs/stm32f469_disco_sd_defconfig
|
2021-12-19 14:24:38 +01:00
|
|
|
F: configs/stm32f469_disco_xip_defconfig
|
2019-08-11 14:07:22 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Christophe Vu-Brugier <cvubrugier@fastmail.fm>
|
|
|
|
F: package/drbd-utils/
|
|
|
|
F: package/iotop/
|
|
|
|
F: package/python-configshell-fb/
|
|
|
|
F: package/python-rtslib-fb/
|
|
|
|
F: package/python-urwid/
|
|
|
|
F: package/targetcli-fb/
|
|
|
|
|
2018-08-10 18:14:45 +02:00
|
|
|
N: Christopher McCrory <chrismcc@gmail.com>
|
|
|
|
F: package/perl-appconfig/
|
2018-08-10 18:14:46 +02:00
|
|
|
F: package/perl-astro-suntime/
|
2018-08-20 13:55:10 +02:00
|
|
|
F: package/perl-class-load/
|
2018-08-10 18:14:48 +02:00
|
|
|
F: package/perl-class-std/
|
2018-08-11 20:27:36 +02:00
|
|
|
F: package/perl-class-std-fast/
|
2018-08-20 13:55:04 +02:00
|
|
|
F: package/perl-data-dump/
|
2018-08-11 20:27:37 +02:00
|
|
|
F: package/perl-data-optlist/
|
2018-08-10 18:14:49 +02:00
|
|
|
F: package/perl-data-uuid/
|
2018-08-10 18:14:50 +02:00
|
|
|
F: package/perl-date-manip/
|
2018-08-20 13:55:03 +02:00
|
|
|
F: package/perl-dbd-mysql/
|
2018-08-10 18:14:51 +02:00
|
|
|
F: package/perl-dbi/
|
2018-08-10 18:14:52 +02:00
|
|
|
F: package/perl-device-serialport/
|
2018-08-20 13:55:08 +02:00
|
|
|
F: package/perl-dist-checkconflicts/
|
2018-08-10 18:14:53 +02:00
|
|
|
F: package/perl-file-slurp/
|
2018-08-10 18:14:54 +02:00
|
|
|
F: package/perl-io-interface/
|
2018-08-11 20:27:40 +02:00
|
|
|
F: package/perl-io-socket-multicast/
|
2018-08-10 18:14:55 +02:00
|
|
|
F: package/perl-json-maybexs/
|
2018-08-11 20:27:41 +02:00
|
|
|
F: package/perl-mime-tools/
|
2018-08-11 20:27:42 +02:00
|
|
|
F: package/perl-module-implementation/
|
2018-08-10 18:14:56 +02:00
|
|
|
F: package/perl-module-runtime/
|
2018-08-10 18:14:57 +02:00
|
|
|
F: package/perl-number-bytes-human/
|
2018-08-20 13:55:09 +02:00
|
|
|
F: package/perl-package-stash/
|
2018-08-10 18:14:58 +02:00
|
|
|
F: package/perl-params-util/
|
2018-08-10 18:14:59 +02:00
|
|
|
F: package/perl-sub-install/
|
2018-08-20 13:55:07 +02:00
|
|
|
F: package/perl-sys-cpu/
|
2018-08-10 18:15:00 +02:00
|
|
|
F: package/perl-sys-meminfo/
|
2018-08-10 18:15:01 +02:00
|
|
|
F: package/perl-sys-mmap/
|
2018-08-20 13:55:05 +02:00
|
|
|
F: package/perl-time-parsedate/
|
2018-08-20 13:55:06 +02:00
|
|
|
F: package/perl-x10/
|
2018-08-10 18:14:45 +02:00
|
|
|
|
2021-05-06 18:29:23 +02:00
|
|
|
N: Clayton Shotwell <clayton.shotwell@collins.com>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/audit/
|
|
|
|
F: package/checkpolicy/
|
2016-12-10 15:49:44 +01:00
|
|
|
F: package/cpio/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libcgroup/
|
|
|
|
F: package/libee/
|
|
|
|
F: package/libestr/
|
|
|
|
F: package/liblogging/
|
|
|
|
F: package/libselinux/
|
|
|
|
F: package/libsemanage/
|
|
|
|
F: package/libsepol/
|
2016-12-10 15:50:16 +01:00
|
|
|
F: package/policycoreutils/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2019-10-27 20:21:29 +01:00
|
|
|
N: Clément Péron <peron.clem@gmail.com>
|
|
|
|
F: board/beelink/gs1/
|
|
|
|
F: configs/beelink_gs1_defconfig
|
|
|
|
|
2023-02-08 19:55:16 +01:00
|
|
|
N: Colin Foster <colin.foster@in-advantage.com>
|
2023-10-24 23:41:08 +02:00
|
|
|
F: package/python-tftpy/
|
2023-02-08 19:55:16 +01:00
|
|
|
F: package/rauc-hawkbit-updater/
|
2023-12-21 20:08:00 +01:00
|
|
|
F: support/testing/tests/package/sample_python_tftpy.py
|
|
|
|
F: support/testing/tests/package/test_python_tftpy.py
|
2023-02-08 19:55:16 +01:00
|
|
|
|
2017-05-06 16:07:07 +02:00
|
|
|
N: Corentin Guillevic <corentin.guillevic@smile.fr>
|
|
|
|
F: package/libloki/
|
|
|
|
|
2016-09-21 12:19:23 +02:00
|
|
|
N: Cyril Bur <cyrilbur@gmail.com>
|
2016-11-09 00:09:44 +01:00
|
|
|
F: arch/Config.in.powerpc
|
2016-09-21 12:19:23 +02:00
|
|
|
F: package/kvm-unit-tests
|
|
|
|
|
2020-07-17 18:46:40 +02:00
|
|
|
N: Dagg Stompler <daggs@gmx.com>
|
2020-09-04 17:18:43 +02:00
|
|
|
F: board/hardkernel/odroidc2/
|
2020-07-17 18:46:42 +02:00
|
|
|
F: configs/odroidc2_defconfig
|
2020-07-17 18:46:40 +02:00
|
|
|
F: package/meson-tools/
|
2020-07-17 18:46:41 +02:00
|
|
|
F: package/odroidc2-firmware/
|
2020-07-17 18:46:40 +02:00
|
|
|
|
2019-02-18 22:55:03 +01:00
|
|
|
N: Daniel J. Leach <dleach@belcan.com>
|
|
|
|
F: package/dacapo/
|
|
|
|
|
2023-07-14 10:13:28 +02:00
|
|
|
N: Daniel Lang <dalang@gmx.at>
|
2023-02-24 09:42:52 +01:00
|
|
|
F: package/atkmm/
|
|
|
|
F: package/atkmm2_28/
|
2023-02-24 09:42:58 +01:00
|
|
|
F: package/cairomm/
|
|
|
|
F: package/cairomm1_14/
|
2022-01-28 12:12:58 +01:00
|
|
|
F: package/dbus-cxx/
|
2023-02-24 09:42:44 +01:00
|
|
|
F: package/glibmm/
|
|
|
|
F: package/glibmm2_66/
|
2023-02-24 09:43:23 +01:00
|
|
|
F: package/gtkmm3/
|
2023-01-09 09:52:42 +01:00
|
|
|
F: package/libsigc/
|
2023-02-24 09:42:34 +01:00
|
|
|
F: package/libsigc2/
|
2023-06-15 15:43:05 +02:00
|
|
|
F: package/llvm-project/
|
2021-08-03 08:29:06 +02:00
|
|
|
F: package/paho-mqtt-cpp/
|
2023-02-24 09:43:02 +01:00
|
|
|
F: package/pangomm/
|
|
|
|
F: package/pangomm2_46/
|
2023-07-14 10:13:28 +02:00
|
|
|
F: package/sam-ba/
|
2021-08-03 08:29:06 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Damien Lanson <damien@kal-host.com>
|
|
|
|
F: package/libvdpau/
|
|
|
|
F: package/log4cpp/
|
|
|
|
|
2023-05-15 01:59:14 +02:00
|
|
|
N: Damien Le Moal <dlemoal@kernel.org>
|
2022-05-30 05:38:30 +02:00
|
|
|
F: package/python-kflash/
|
2022-07-20 04:45:26 +02:00
|
|
|
F: board/canaan/
|
2022-07-20 04:45:31 +02:00
|
|
|
F: configs/canaan_kd233_defconfig
|
2022-07-20 04:45:27 +02:00
|
|
|
F: board/sipeed/
|
|
|
|
F: configs/sipeed_maix_bit_defconfig
|
|
|
|
F: configs/sipeed_maix_bit_sdcard_defconfig
|
2022-07-20 04:45:28 +02:00
|
|
|
F: configs/sipeed_maixduino_defconfig
|
|
|
|
F: configs/sipeed_maixduino_sdcard_defconfig
|
2022-07-20 04:45:29 +02:00
|
|
|
F: configs/sipeed_maix_dock_defconfig
|
|
|
|
F: configs/sipeed_maix_dock_sdcard_defconfig
|
2022-07-20 04:45:30 +02:00
|
|
|
F: configs/sipeed_maix_go_defconfig
|
|
|
|
F: configs/sipeed_maix_go_sdcard_defconfig
|
2022-05-30 05:38:30 +02:00
|
|
|
|
2018-07-17 22:46:13 +02:00
|
|
|
N: Daniel Nicoletti <dantti12@gmail.com>
|
|
|
|
F: package/cutelyst/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Daniel Price <daniel.price@gmail.com>
|
|
|
|
F: package/nodejs/
|
|
|
|
F: package/redis/
|
|
|
|
|
|
|
|
N: Daniel Sangue <daniel.sangue@sangue.ch>
|
|
|
|
F: package/libftdi1/
|
|
|
|
|
2019-10-05 02:40:23 +02:00
|
|
|
N: Danilo Bargen <mail@dbrgn.ch>
|
|
|
|
F: board/pcengines/apu2/
|
|
|
|
F: configs/pcengines_apu2_defconfig
|
2022-01-17 00:18:14 +01:00
|
|
|
F: package/tealdeer/
|
2019-10-05 02:40:23 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Danomi Manchego <danomimanchego123@gmail.com>
|
|
|
|
F: package/cjson/
|
|
|
|
F: package/jq/
|
2016-09-21 12:19:23 +02:00
|
|
|
F: package/libwebsockets/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/ljsyscall/
|
|
|
|
F: package/lua-cjson/
|
|
|
|
F: package/luaexpat/
|
|
|
|
F: package/xinetd/
|
|
|
|
|
2022-06-19 21:38:12 +02:00
|
|
|
N: Dario Binacchi <dario.binacchi@amarulasolutions.com>
|
2023-01-16 22:55:15 +01:00
|
|
|
F: board/bsh/
|
2023-04-23 19:08:20 +02:00
|
|
|
F: board/stmicroelectronics/stm32f769-disco/
|
2023-01-16 22:55:15 +01:00
|
|
|
F: configs/imx8mn_bsh_smm_s2_defconfig
|
2023-01-16 22:55:16 +01:00
|
|
|
F: configs/imx8mn_bsh_smm_s2_pro_defconfig
|
2023-04-23 19:08:20 +02:00
|
|
|
F: configs/stm32f769_disco_sd_defconfig
|
2022-11-11 14:32:54 +01:00
|
|
|
F: package/sscep/
|
2022-06-07 09:28:50 +02:00
|
|
|
F: package/uuu/
|
|
|
|
|
2021-12-12 13:09:53 +01:00
|
|
|
N: Dario Binacchi <dariobin@libero.it>
|
2024-02-07 10:24:46 +01:00
|
|
|
F: package/uboot-bootcount/
|
2022-04-25 16:42:13 +02:00
|
|
|
F: package/libmnl/
|
2021-12-12 13:09:53 +01:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: David Bender <codehero@gmail.com>
|
|
|
|
F: package/benejson/
|
|
|
|
F: package/cgic/
|
|
|
|
F: package/freeradius-client/
|
|
|
|
F: package/openldap/
|
|
|
|
|
|
|
|
N: David du Colombier <0intro@gmail.com>
|
|
|
|
F: package/x264/
|
|
|
|
|
2020-09-21 18:58:33 +02:00
|
|
|
N: David GOUARIN <dgouarin@gmail.com>
|
2022-01-04 22:55:41 +01:00
|
|
|
F: package/freeradius-server/
|
2020-09-21 18:58:33 +02:00
|
|
|
F: package/librelp/
|
2021-04-12 18:40:10 +02:00
|
|
|
F: package/libtalloc/
|
2020-09-21 18:58:33 +02:00
|
|
|
|
2016-11-02 22:01:12 +01:00
|
|
|
N: David Lechner <david@lechnology.com>
|
|
|
|
F: board/lego/ev3/
|
|
|
|
F: configs/lego_ev3_defconfig
|
|
|
|
F: linux/linux-ext-ev3dev-linux-drivers.mk
|
2019-02-23 02:04:53 +01:00
|
|
|
F: package/brickd/
|
2016-11-02 22:01:12 +01:00
|
|
|
F: package/ev3dev-linux-drivers/
|
|
|
|
|
2022-01-07 10:03:48 +01:00
|
|
|
N: David Pierret <david.pierret@smile.fr>
|
|
|
|
F: package/bat/
|
|
|
|
|
2020-05-01 22:54:58 +02:00
|
|
|
N: Davide Viti <zinosat@gmail.com>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/flann/
|
|
|
|
F: package/python-paho-mqtt/
|
|
|
|
F: package/qhull/
|
|
|
|
F: package/tcllib/
|
|
|
|
|
|
|
|
N: Denis Bodor <lefinnois@lefinnois.net>
|
|
|
|
F: package/libstrophe/
|
|
|
|
|
2021-04-07 00:47:28 +02:00
|
|
|
N: Dick Olsson <hi@senzilla.io>
|
2021-05-12 20:37:11 +02:00
|
|
|
F: board/aarch64-efi/
|
|
|
|
F: board/pc/
|
|
|
|
F: board/qemu/aarch64-sbsa/
|
|
|
|
F: boot/arm-trusted-firmware/
|
|
|
|
F: boot/edk2/
|
|
|
|
F: configs/qemu_aarch64_sbsa_defconfig
|
2021-04-07 00:47:28 +02:00
|
|
|
F: package/bearssl/
|
2021-05-14 14:55:21 +02:00
|
|
|
F: package/bitcoin/
|
2021-05-12 20:37:11 +02:00
|
|
|
F: package/edk2-platforms/
|
2021-04-07 00:47:28 +02:00
|
|
|
F: package/execline/
|
|
|
|
F: package/mdevd/
|
|
|
|
F: package/s6-dns/
|
|
|
|
F: package/s6-linux-init/
|
|
|
|
F: package/s6-linux-utils/
|
|
|
|
F: package/s6-networking/
|
|
|
|
F: package/s6-portable-utils/
|
|
|
|
F: package/s6-rc/
|
|
|
|
F: package/s6/
|
|
|
|
F: package/skalibs/
|
2021-05-12 20:37:11 +02:00
|
|
|
F: support/testing/tests/boot/test_edk2.py
|
2021-04-07 00:47:28 +02:00
|
|
|
|
2022-06-01 21:47:46 +02:00
|
|
|
N: Dimitar Tomov <dimi@tpm.dev>
|
|
|
|
F: package/wolftpm/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Dimitrios Siganos <dimitris@siganos.org>
|
|
|
|
F: package/wireless-regdb/
|
|
|
|
|
|
|
|
N: Dominik Faessler <faessler@was.ch>
|
|
|
|
F: package/logsurfer/
|
|
|
|
|
2022-05-07 11:46:50 +02:00
|
|
|
N: Dominik Michael Rauh <dmrauh@posteo.de>
|
|
|
|
F: package/gdal/
|
|
|
|
|
2020-10-27 16:21:09 +01:00
|
|
|
N: Doug Kehn <rdkehn@gmail.com>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/nss-pam-ldapd/
|
|
|
|
F: package/sp-oops-extract/
|
|
|
|
F: package/unscd/
|
|
|
|
|
2017-10-01 00:13:03 +02:00
|
|
|
N: Dushara Jayasinghe <nidujay@gmail.com>
|
|
|
|
F: package/prosody/
|
|
|
|
|
2021-03-22 18:14:24 +01:00
|
|
|
N: Edgar Bonet <bonet@grenoble.cnrs.fr>
|
|
|
|
F: board/acmesystems/acqua-a5/
|
|
|
|
F: configs/acmesystems_acqua_a5_256mb_defconfig
|
|
|
|
F: configs/acmesystems_acqua_a5_512mb_defconfig
|
|
|
|
|
2022-10-19 16:32:19 +02:00
|
|
|
N: Eero Aaltonen <eero.aaltonen@vaisala.com>
|
|
|
|
F: package/docopt-cpp/
|
|
|
|
|
2019-03-14 16:34:34 +01:00
|
|
|
N: Eloi Bail <eloi.bail@savoirfairelinux.com>
|
|
|
|
F: package/bayer2rgb-neon/
|
2019-03-14 16:34:35 +01:00
|
|
|
F: package/gstreamer1/gst1-plugins-bayer2rgb-neon/
|
2019-03-14 16:34:34 +01:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Eric Le Bihan <eric.le.bihan.dev@free.fr>
|
2023-09-30 15:45:41 +02:00
|
|
|
F: docs/manual/adding-packages-meson.adoc
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/adwaita-icon-theme/
|
2016-12-11 15:10:44 +01:00
|
|
|
F: package/darkhttpd/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/eudev/
|
2016-12-19 22:29:08 +01:00
|
|
|
F: package/execline/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/hicolor-icon-theme/
|
|
|
|
F: package/jemalloc/
|
2019-09-29 19:10:17 +02:00
|
|
|
F: package/mdevd/
|
2017-10-29 14:10:51 +01:00
|
|
|
F: package/meson/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/ninja/
|
2018-05-15 21:51:52 +02:00
|
|
|
F: package/pkg-meson.mk
|
2018-02-04 19:07:41 +01:00
|
|
|
F: package/rust-bin/
|
rust: new package
This new package provides rustc, the compiler for the Rust programming
language, built from source.
Currently, only the host variant is built.
The Rust compiler uses LLVM as its backend: a copy of LLVM source code
is provided and CMake is used to build it. It is possible to use a
pre-built external copy. When LLVM/clang will be available in Buildroot,
it would be possible to benefit from this feature and thus decrease
build time.
LLVM is configured to generate code for x86, ARM, PowerPC and MIPS
architectures.
The Rust compiler uses Cargo as its build system and is written in Rust.
Therefore this package depends on cargo-bin and rust-bin.
The internal build process is as follows:
1. stage0 compiler, provided by rust-bin, is used to build stage1
compiler.
2. stage1 compiler builds the final Rust compiler (stage2 compiler)
and the standard library for the host architecture.
3. the standard library for the target architecture is built.
The target architecture to support is given by the GNU/LLVM target
triple. Rust supports some predefined targets [1]. As the build system
expects the triple to be in the form of <arch>-unknown-<system> and
Buildroot toolchain wrapper uses <arch>-buildroot-<system>, the package
Makefile uses $(RUST_TARGET_NAME) defined in the rustc package and uses
it instead of $(GNU_TARGET_NAME).
When compiling Rust code with this compiler, the generated program only
depends on the target C library, as it is statically linked to the Rust
standard library and any other code from Rust packages (a.k.a.
"crates").
If the jemalloc package is selected, support for this memory allocator
will be enabled in the target standard library.
The menuconfig entry for rustc is also updated to expose this provider.
[1] https://forge.rust-lang.org/platform-support.html
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-02-04 19:07:43 +01:00
|
|
|
F: package/rust/
|
2016-12-19 22:29:09 +01:00
|
|
|
F: package/s6/
|
2016-12-19 22:29:10 +01:00
|
|
|
F: package/s6-dns/
|
2016-12-19 22:29:15 +01:00
|
|
|
F: package/s6-linux-init/
|
2016-12-19 22:29:14 +01:00
|
|
|
F: package/s6-linux-utils/
|
2016-12-19 22:29:11 +01:00
|
|
|
F: package/s6-networking/
|
2016-12-19 22:29:13 +01:00
|
|
|
F: package/s6-portable-utils/
|
2016-12-19 22:29:12 +01:00
|
|
|
F: package/s6-rc/
|
2016-12-23 11:20:29 +01:00
|
|
|
F: package/skalibs/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/smack/
|
2016-09-21 12:19:23 +02:00
|
|
|
F: package/xvisor/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
|
|
|
N: Eric Limpens <limpens@gmail.com>
|
|
|
|
F: package/pifmrds/
|
|
|
|
F: package/ympd/
|
|
|
|
|
|
|
|
N: Erico Nunes <nunes.erico@gmail.com>
|
2018-12-08 16:01:21 +01:00
|
|
|
F: board/aarch64-efi/
|
|
|
|
F: configs/aarch64_efi_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/acpica/
|
|
|
|
F: package/acpitool/
|
|
|
|
F: package/efibootmgr/
|
|
|
|
F: package/efivar/
|
2016-10-04 16:52:23 +02:00
|
|
|
F: package/fwts/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/spi-tools/
|
|
|
|
F: package/xdotool/
|
2017-10-22 15:54:26 +02:00
|
|
|
F: configs/pc_x86_64_*
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2018-03-10 12:51:39 +01:00
|
|
|
N: Erik Larsson <karl.erik.larsson@gmail.com>
|
|
|
|
F: package/imx-mkimage/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Erik Stromdahl <erik.stromdahl@gmail.com>
|
|
|
|
F: package/mxsldr/
|
|
|
|
|
|
|
|
N: Ernesto L. Williams Jr <realcontrols@gmail.com>
|
|
|
|
F: package/szip/
|
|
|
|
|
2019-03-21 06:44:35 +01:00
|
|
|
N: Esben Haabendal <esben@haabendal.dk>
|
2019-09-17 10:50:33 +02:00
|
|
|
F: package/python-kiwisolver/
|
2019-03-21 06:44:35 +01:00
|
|
|
|
2023-05-31 15:46:00 +02:00
|
|
|
N: Etienne Carriere <etienne.carriere@foss.st.com>
|
2019-01-30 11:47:23 +01:00
|
|
|
F: boot/optee-os/
|
2019-01-30 11:47:24 +01:00
|
|
|
F: package/optee-client/
|
2019-01-30 11:47:25 +01:00
|
|
|
F: package/optee-examples/
|
2019-01-30 11:47:26 +01:00
|
|
|
F: package/optee-test/
|
2019-01-30 11:47:23 +01:00
|
|
|
|
2021-11-04 16:23:28 +01:00
|
|
|
N: Eugen Hristev <eugen.hristev@microchip.com>
|
|
|
|
F: board/atmel/readme.txt
|
|
|
|
F: board/microchip/sama7g5ek/
|
|
|
|
F: configs/microchip_sama7g5ek*
|
|
|
|
|
2018-04-10 19:12:37 +02:00
|
|
|
N: Eugene Tarassov <eugene@largest.net>
|
|
|
|
F: package/tcf-agent/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
|
2018-03-07 23:41:27 +01:00
|
|
|
F: board/ci20/
|
|
|
|
F: configs/ci20_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: arch/Config.in.nios2
|
|
|
|
F: package/fio/
|
|
|
|
F: package/iptraf-ng/
|
|
|
|
F: package/jimtcl/
|
2016-12-10 14:59:29 +01:00
|
|
|
F: package/mimic/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/nodm/
|
|
|
|
F: package/openbox/
|
|
|
|
F: package/supertuxkart/
|
|
|
|
|
|
|
|
N: Fabio Estevam <festevam@gmail.com>
|
2019-08-11 14:07:25 +02:00
|
|
|
F: board/freescale/warpboard/
|
2016-09-21 12:19:23 +02:00
|
|
|
F: board/warp7/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: configs/freescale_imx*
|
2018-03-05 01:21:30 +01:00
|
|
|
F: configs/imx23evk_defconfig
|
|
|
|
F: configs/imx6-sabre*
|
2017-11-14 14:18:11 +01:00
|
|
|
F: configs/imx6slevk_defconfig
|
2017-11-24 08:51:56 +01:00
|
|
|
F: configs/imx6sx-sdb_defconfig
|
2017-11-23 15:38:42 +01:00
|
|
|
F: configs/imx6ulevk_defconfig
|
2020-07-16 02:25:59 +02:00
|
|
|
F: configs/imx6ullevk_defconfig
|
2016-09-30 23:37:03 +02:00
|
|
|
F: configs/imx6ulpico_defconfig
|
2018-07-08 23:16:19 +02:00
|
|
|
F: configs/imx7d-sdb_defconfig
|
2018-03-05 01:21:30 +01:00
|
|
|
F: configs/imx7dpico_defconfig
|
2020-09-14 23:12:13 +02:00
|
|
|
F: configs/imx8mqevk_defconfig
|
2018-03-05 01:21:30 +01:00
|
|
|
F: configs/mx25pdk_defconfig
|
|
|
|
F: configs/mx51evk_defconfig
|
|
|
|
F: configs/mx53loco_defconfig
|
2016-09-30 23:37:03 +02:00
|
|
|
F: configs/mx6cubox_defconfig
|
2016-12-28 18:42:29 +01:00
|
|
|
F: configs/mx6sx_udoo_neo_defconfig
|
2016-11-03 19:40:17 +01:00
|
|
|
F: configs/mx6udoo_defconfig
|
2016-12-28 18:42:29 +01:00
|
|
|
F: configs/wandboard_defconfig
|
2016-09-21 12:19:23 +02:00
|
|
|
F: configs/warp7_defconfig
|
2019-08-11 14:07:25 +02:00
|
|
|
F: configs/warpboard_defconfig
|
2017-04-09 19:44:02 +02:00
|
|
|
F: package/atest/
|
2022-07-13 18:33:32 +02:00
|
|
|
F: package/crucible/
|
2017-02-15 11:31:42 +01:00
|
|
|
F: package/kmscube/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
|
|
|
N: Fabio Porcedda <fabio.porcedda@gmail.com>
|
|
|
|
F: package/netsurf-buildsystem/
|
|
|
|
|
2018-09-28 15:59:21 +02:00
|
|
|
N: Fabio Urquiza <fabiorush@gmail.com>
|
|
|
|
F: package/bitcoin/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Fabrice Fontaine <fabrice.fontaine@orange.com>
|
|
|
|
F: package/domoticz/
|
2017-03-24 21:38:50 +01:00
|
|
|
F: package/libmediaart/
|
2017-02-12 21:26:56 +01:00
|
|
|
F: package/libmaxminddb/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/openzwave/
|
|
|
|
|
|
|
|
N: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
2020-02-27 17:30:42 +01:00
|
|
|
F: package/bearssl/
|
2020-02-27 18:47:12 +01:00
|
|
|
F: package/belle-sip/
|
2020-02-27 18:47:13 +01:00
|
|
|
F: package/belr/
|
2017-10-29 17:12:55 +01:00
|
|
|
F: package/boinc/
|
2018-06-03 21:19:31 +02:00
|
|
|
F: package/cairo/
|
2021-04-25 19:22:22 +02:00
|
|
|
F: package/daq3/
|
2018-09-05 20:23:20 +02:00
|
|
|
F: package/duktape/
|
2018-08-29 23:48:05 +02:00
|
|
|
F: package/expat/
|
2017-12-18 22:10:39 +01:00
|
|
|
F: package/flatbuffers/
|
2021-12-27 13:44:17 +01:00
|
|
|
F: package/freeipmi/
|
2022-03-02 18:44:55 +01:00
|
|
|
F: package/gdk-pixbuf-xlib/
|
2018-05-20 10:28:53 +02:00
|
|
|
F: package/gerbera/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/gtksourceview/
|
2016-09-21 12:19:23 +02:00
|
|
|
F: package/gssdp/
|
|
|
|
F: package/gupnp/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/gupnp-dlna/
|
|
|
|
F: package/gupnp-tools/
|
2018-09-21 22:56:19 +02:00
|
|
|
F: package/haproxy/
|
2017-04-01 16:03:50 +02:00
|
|
|
F: package/hiredis/
|
2018-03-27 23:24:01 +02:00
|
|
|
F: package/i2pd/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/igd2-for-linux/
|
2018-06-18 20:14:36 +02:00
|
|
|
F: package/json-c/
|
2022-01-01 14:57:37 +01:00
|
|
|
F: package/ksmbd-tools/
|
2018-05-09 12:28:49 +02:00
|
|
|
F: package/lcms2/
|
2018-05-02 19:14:38 +02:00
|
|
|
F: package/lftp/
|
2018-04-09 22:18:45 +02:00
|
|
|
F: package/libcap-ng/
|
2018-03-09 23:33:37 +01:00
|
|
|
F: package/libcdio-paranoia/
|
2018-04-29 22:23:58 +02:00
|
|
|
F: package/libcgicc/
|
|
|
|
F: package/libconfig/
|
|
|
|
F: package/libcue/
|
|
|
|
F: package/libebml/
|
2018-04-30 18:32:30 +02:00
|
|
|
F: package/libgee/
|
2018-04-07 14:04:21 +02:00
|
|
|
F: package/libglib2/
|
2018-04-30 18:32:30 +02:00
|
|
|
F: package/libgtk2/
|
|
|
|
F: package/libgtk3/
|
2019-03-14 22:25:59 +01:00
|
|
|
F: package/libhtp/
|
2018-05-02 19:14:38 +02:00
|
|
|
F: package/libidn/
|
2018-05-01 22:40:32 +02:00
|
|
|
F: package/libidn2/
|
2018-05-02 19:14:38 +02:00
|
|
|
F: package/libjpeg/
|
2018-05-09 12:28:49 +02:00
|
|
|
F: package/liblockfile/
|
2018-04-29 22:23:58 +02:00
|
|
|
F: package/libmatroska/
|
2022-01-08 23:38:28 +01:00
|
|
|
F: package/libmd/
|
2018-03-08 17:50:06 +01:00
|
|
|
F: package/libmpdclient/
|
2018-05-09 12:28:49 +02:00
|
|
|
F: package/libnetfilter_conntrack/
|
|
|
|
F: package/libnetfilter_queue/
|
2020-06-23 22:31:24 +02:00
|
|
|
F: package/libnpupnp/
|
2018-06-03 21:19:31 +02:00
|
|
|
F: package/liboping/
|
|
|
|
F: package/libpfm4/
|
|
|
|
F: package/libraw/
|
|
|
|
F: package/libraw1394/
|
|
|
|
F: package/libroxml/
|
|
|
|
F: package/librsvg/
|
|
|
|
F: package/librsync/
|
2018-06-18 20:14:36 +02:00
|
|
|
F: package/libsoup/
|
|
|
|
F: package/libsoxr/
|
2017-11-18 21:32:02 +01:00
|
|
|
F: package/libupnp/
|
2022-01-04 19:11:06 +01:00
|
|
|
F: package/liburing/
|
2018-08-29 23:48:05 +02:00
|
|
|
F: package/libv4l/
|
2018-06-18 20:14:36 +02:00
|
|
|
F: package/libxslt/
|
2018-06-03 21:19:31 +02:00
|
|
|
F: package/mbedtls/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/minissdpd/
|
2018-08-29 23:48:05 +02:00
|
|
|
F: package/minizip/
|
2022-07-27 17:10:36 +02:00
|
|
|
F: package/minizip-zlib/
|
2019-02-10 15:26:19 +01:00
|
|
|
F: package/mongodb/
|
2017-04-01 16:03:50 +02:00
|
|
|
F: package/motion/
|
2018-05-02 19:14:38 +02:00
|
|
|
F: package/mutt/
|
2018-03-08 17:42:52 +01:00
|
|
|
F: package/ncmpc/
|
2019-03-31 17:12:05 +02:00
|
|
|
F: package/oniguruma/
|
2020-12-26 11:42:59 +01:00
|
|
|
F: package/opencv4/
|
2018-06-03 21:19:31 +02:00
|
|
|
F: package/oprofile/
|
2018-04-30 18:32:30 +02:00
|
|
|
F: package/pcmanfm/
|
2021-02-12 07:39:42 +01:00
|
|
|
F: package/perl-extutils-pkgconfig/
|
2019-04-19 11:19:28 +02:00
|
|
|
F: package/python-backcall/
|
2019-04-19 11:19:30 +02:00
|
|
|
F: package/python-jedi/
|
2019-04-19 11:19:29 +02:00
|
|
|
F: package/python-parso/
|
2020-06-11 22:56:06 +02:00
|
|
|
F: package/python-yatl/
|
2020-02-02 14:47:30 +01:00
|
|
|
F: package/rocksdb/
|
2021-07-25 14:58:31 +02:00
|
|
|
F: package/rtl_433/
|
2017-10-31 09:39:33 +01:00
|
|
|
F: package/rygel/
|
2017-12-19 20:12:04 +01:00
|
|
|
F: package/safeclib/
|
2021-04-25 19:22:23 +02:00
|
|
|
F: package/snort3/
|
2019-04-15 22:44:10 +02:00
|
|
|
F: package/suricata/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/tinycbor/
|
|
|
|
F: package/tinydtls/
|
2018-05-09 12:28:49 +02:00
|
|
|
F: package/whois/
|
2023-03-19 19:10:59 +01:00
|
|
|
F: package/x11r7/xlib_libXpresent/
|
2022-01-07 22:52:30 +01:00
|
|
|
F: package/zeek/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2020-03-23 22:01:22 +01:00
|
|
|
N: Fabrice Goucem <fabrice.goucem@oss.nxp.com>
|
|
|
|
F: board/freescale/imx6ullevk/
|
|
|
|
F: configs/freescale_imx6ullevk_defconfig
|
|
|
|
|
2018-03-14 14:17:50 +01:00
|
|
|
N: Falco Hyfing <hyfinglists@gmail.com>
|
|
|
|
F: package/python-pymodbus/
|
|
|
|
|
2023-07-10 18:29:15 +02:00
|
|
|
N: Flávio Tapajós <flavio.tapajos@newtesc.com.br>
|
|
|
|
F: configs/asus_tinker-s_rk3288_defconfig
|
|
|
|
F: board/asus/tinker-s/
|
2024-01-03 15:28:31 +01:00
|
|
|
F: package/python-sqlalchemy/
|
2023-12-02 09:37:38 +01:00
|
|
|
F: package/rsyslog/
|
2023-07-10 18:29:15 +02:00
|
|
|
|
2022-05-05 19:22:20 +02:00
|
|
|
N: Florian Fainelli <f.fainelli@gmail.com>
|
|
|
|
F: package/cpulimit/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Floris Bos <bos@je-eigen-domein.nl>
|
|
|
|
F: package/ipmitool/
|
|
|
|
F: package/odhcploc/
|
|
|
|
|
2021-12-22 18:49:04 +01:00
|
|
|
N: Francis Laniel <flaniel@linux.microsoft.com>
|
2022-04-25 18:43:18 +02:00
|
|
|
F: package/falcosecurity-libs
|
2021-12-22 18:49:04 +01:00
|
|
|
F: package/pahole/
|
2022-04-07 20:24:25 +02:00
|
|
|
F: package/sysdig/
|
2022-04-07 20:24:24 +02:00
|
|
|
F: package/tbb/
|
2021-12-22 18:49:04 +01:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Francisco Gonzalez <gzmorell@gmail.com>
|
|
|
|
F: package/ser2net/
|
|
|
|
|
2022-12-19 09:57:10 +01:00
|
|
|
N: Francois Dugast <francois.dugast.foss@gmail.com>
|
2023-11-04 19:47:45 +01:00
|
|
|
F: board/sipeed/licheepi_nano/
|
2022-12-19 09:57:10 +01:00
|
|
|
F: board/visionfive2/
|
2023-11-04 19:47:45 +01:00
|
|
|
F: configs/sipeed_licheepi_nano_defconfig
|
2022-12-19 09:57:10 +01:00
|
|
|
F: configs/visionfive2_defconfig
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Francois Perrad <francois.perrad@gadz.org>
|
2022-08-16 19:55:03 +02:00
|
|
|
F: board/freescale/ls1028ardb/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: board/olimex/a20_olinuxino
|
2019-08-11 14:07:32 +02:00
|
|
|
F: board/olimex/imx233_olinuxino/
|
2021-12-18 10:04:20 +01:00
|
|
|
F: board/olimex/stmp1_olinuxino/
|
2022-08-16 19:55:03 +02:00
|
|
|
F: configs/ls1028ardb_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: configs/olimex_a20_olinuxino_*
|
2019-08-11 14:07:32 +02:00
|
|
|
F: configs/olimex_imx233_olinuxino_defconfig
|
2021-12-18 10:04:20 +01:00
|
|
|
F: configs/olimex_stmp157_olinuxino_lime_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/4th/
|
2019-08-12 17:37:30 +02:00
|
|
|
F: package/cgilua/
|
2018-04-29 09:11:46 +02:00
|
|
|
F: package/chipmunk/
|
2019-02-05 21:41:52 +01:00
|
|
|
F: package/cog/
|
2019-09-18 20:19:37 +02:00
|
|
|
F: package/collectl/
|
2019-08-12 17:37:30 +02:00
|
|
|
F: package/copas/
|
|
|
|
F: package/coxpcall/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/dado/
|
|
|
|
F: package/ficl/
|
2021-02-13 12:39:28 +01:00
|
|
|
F: package/janet/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libtomcrypt/
|
|
|
|
F: package/libtommath/
|
2019-02-05 21:41:49 +01:00
|
|
|
F: package/libwpe/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/linenoise/
|
|
|
|
F: package/ljlinenoise/
|
2020-05-18 07:23:45 +02:00
|
|
|
F: package/lua-inotify/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/lpeg/
|
|
|
|
F: package/lpty/
|
|
|
|
F: package/lrandom/
|
|
|
|
F: package/lsqlite3/
|
|
|
|
F: package/lua*
|
|
|
|
F: package/lzlib/
|
|
|
|
F: package/moarvm/
|
2021-09-20 21:24:42 +02:00
|
|
|
F: package/mstpd/
|
2018-12-05 14:40:40 +01:00
|
|
|
F: package/netsurf/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/perl*
|
|
|
|
F: package/pkg-perl.mk
|
|
|
|
F: package/pkg-luarocks.mk
|
2020-11-06 23:51:14 +01:00
|
|
|
F: package/quickjs/
|
2019-08-12 17:37:30 +02:00
|
|
|
F: package/rings/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/tekui/
|
2019-02-05 21:41:50 +01:00
|
|
|
F: package/wpebackend-fdo/
|
2019-02-05 21:41:51 +01:00
|
|
|
F: package/wpewebkit/
|
2019-08-12 17:37:30 +02:00
|
|
|
F: package/wsapi/
|
2017-09-02 18:56:42 +02:00
|
|
|
F: package/wsapi-fcgi/
|
2017-09-02 18:56:41 +02:00
|
|
|
F: package/wsapi-xavante/
|
2019-08-12 17:37:30 +02:00
|
|
|
F: package/xavante/
|
2020-12-31 15:17:41 +01:00
|
|
|
F: support/testing/tests/package/test_lua*
|
2017-07-01 18:40:39 +02:00
|
|
|
F: utils/scancpan
|
2016-09-12 22:54:53 +02:00
|
|
|
|
|
|
|
N: Frank Hunleth <fhunleth@troodon-software.com>
|
|
|
|
F: package/am335x-pru-package/
|
2017-05-24 16:01:01 +02:00
|
|
|
F: package/libconfuse/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libdmtx/
|
|
|
|
F: package/libsodium/
|
2016-10-11 22:44:50 +02:00
|
|
|
F: package/php-amqp/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python-cherrypy/
|
|
|
|
F: package/sane-backends/
|
|
|
|
F: package/upx/
|
|
|
|
F: package/zxing-cpp/
|
|
|
|
|
2023-02-08 16:57:52 +01:00
|
|
|
N: Frank Vanbever <frank.vanbever@mind.be>
|
2020-01-30 10:56:28 +01:00
|
|
|
F: package/libmodsecurity/
|
2020-01-30 10:56:29 +01:00
|
|
|
F: package/nginx-modsecurity/
|
2020-01-30 10:56:28 +01:00
|
|
|
|
2020-03-16 02:58:37 +01:00
|
|
|
N: Gao Xiang <hsiangkao@aol.com>
|
|
|
|
F: package/erofs-utils/
|
|
|
|
|
2019-02-17 11:22:43 +01:00
|
|
|
N: Gary Bisson <bisson.gary@gmail.com>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: board/boundarydevices/
|
|
|
|
F: configs/nitrogen*
|
|
|
|
F: package/freescale-imx/
|
|
|
|
F: package/gstreamer1/gst1-imx/
|
|
|
|
F: package/libimxvpuapi/
|
2016-10-26 18:08:03 +02:00
|
|
|
F: package/mfgtools/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/sshpass/
|
|
|
|
|
|
|
|
N: Geoff Levand <geoff@infradead.org>
|
|
|
|
F: package/flannel/
|
|
|
|
|
|
|
|
N: Geoffrey Ragot <geoffreyragot@gmail.com>
|
|
|
|
F: package/python-pyyaml/
|
|
|
|
|
|
|
|
N: Gilles Talis <gilles.talis@gmail.com>
|
2019-06-14 20:26:46 +02:00
|
|
|
F: board/freescale/imx8mmevk/
|
2022-01-30 11:11:50 +01:00
|
|
|
F: board/friendlyarm/nanopi-r2s/
|
2019-06-14 20:26:46 +02:00
|
|
|
F: configs/freescale_imx8mmevk_defconfig
|
2022-01-30 11:11:50 +01:00
|
|
|
F: configs/friendlyarm_nanopi_r2s_defconfig
|
2019-12-22 14:23:14 +01:00
|
|
|
F: package/cctz/
|
2022-01-16 18:53:20 +01:00
|
|
|
F: package/clpeak/
|
2021-01-31 10:50:52 +01:00
|
|
|
F: package/faad2/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/fdk-aac/
|
2021-10-24 13:36:26 +02:00
|
|
|
F: package/hawktracer/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/httping/
|
|
|
|
F: package/iozone/
|
2017-03-19 09:07:52 +01:00
|
|
|
F: package/leptonica/
|
2020-02-22 17:35:30 +01:00
|
|
|
F: package/libeXosip2/
|
2019-10-13 11:30:49 +02:00
|
|
|
F: package/libolm/
|
2020-02-22 17:35:30 +01:00
|
|
|
F: package/libosip2/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/ocrad/
|
2022-01-16 18:53:19 +01:00
|
|
|
F: package/opencl-clhpp/
|
2021-01-31 10:50:53 +01:00
|
|
|
F: package/opusfile/
|
2019-08-10 07:23:53 +02:00
|
|
|
F: package/restclient-cpp/
|
2017-03-19 09:07:53 +01:00
|
|
|
F: package/tesseract-ocr/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/webp/
|
2018-10-07 11:17:01 +02:00
|
|
|
F: package/xapian/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2019-09-16 22:04:45 +02:00
|
|
|
N: Giulio Benetti <giulio.benetti@benettiengineering.com>
|
2023-02-15 21:09:02 +01:00
|
|
|
F: board/bananapi/bananapi-m2-ultra/
|
2023-02-16 22:25:53 +01:00
|
|
|
F: board/freescale/imx6ullevk/
|
2023-01-02 19:16:03 +01:00
|
|
|
F: board/freescale/imxrt1050evk/
|
2023-12-15 22:30:19 +01:00
|
|
|
F: board/mangopi/mq1rdw2/
|
2021-11-02 22:42:31 +01:00
|
|
|
F: board/olimex/a*
|
2023-10-14 20:45:21 +02:00
|
|
|
F: board/pine64/rockpro64
|
2021-10-14 22:46:07 +02:00
|
|
|
F: configs/amarula_vyasa_rk3288_defconfig
|
|
|
|
F: configs/asus_tinker_rk3288_defconfig
|
2023-08-07 00:18:21 +02:00
|
|
|
F: configs/bananapi_m2_berry_defconfig
|
2023-02-15 21:09:02 +01:00
|
|
|
F: configs/bananapi_m2_ultra_defconfig
|
2023-02-16 22:25:53 +01:00
|
|
|
F: configs/freescale_imx6ullevk_defconfig
|
|
|
|
F: configs/imx6ullevk_defconfig
|
2023-01-02 19:16:03 +01:00
|
|
|
F: configs/imxrt1050-evk_defconfig
|
2023-12-15 22:30:19 +01:00
|
|
|
F: configs/mangopi_mq1rdw2_defconfig
|
2021-11-02 22:42:31 +01:00
|
|
|
F: configs/olimex_a*
|
2023-10-14 20:45:21 +02:00
|
|
|
F: configs/rockpro64_defconfig
|
2019-08-28 19:19:23 +02:00
|
|
|
F: package/at/
|
2021-08-19 17:41:55 +02:00
|
|
|
F: package/binutils/
|
2022-02-01 18:33:52 +01:00
|
|
|
F: package/cryptsetup/
|
2021-10-14 22:46:27 +02:00
|
|
|
F: package/erlang-jiffy/
|
2023-07-11 23:55:02 +02:00
|
|
|
F: package/esp-hosted/
|
2021-08-19 17:41:55 +02:00
|
|
|
F: package/gcc/
|
2021-09-09 00:15:16 +02:00
|
|
|
F: package/harfbuzz/
|
2023-09-25 22:03:01 +02:00
|
|
|
F: package/libblockdev/
|
2021-08-05 19:34:39 +02:00
|
|
|
F: package/libfuse3/
|
2019-09-03 12:27:38 +02:00
|
|
|
F: package/libnspr/
|
|
|
|
F: package/libnss/
|
2023-09-25 22:02:58 +02:00
|
|
|
F: package/libnvme/
|
2023-10-24 16:42:53 +02:00
|
|
|
F: package/libtraceevent/
|
2023-10-24 16:42:54 +02:00
|
|
|
F: package/libtracefs
|
2023-10-24 16:42:55 +02:00
|
|
|
F: package/linux-tools/linux-tool-rtla.mk.in
|
2022-01-09 22:47:24 +01:00
|
|
|
F: package/mali-driver/
|
2019-05-15 17:06:38 +02:00
|
|
|
F: package/minicom/
|
2023-11-12 19:01:01 +01:00
|
|
|
F: package/mongoose/
|
2022-09-21 00:19:34 +02:00
|
|
|
F: package/mmc-utils/
|
2020-01-18 00:16:08 +01:00
|
|
|
F: package/nfs-utils/
|
2023-03-15 11:08:47 +01:00
|
|
|
F: package/python-libconf/
|
2021-09-23 18:48:32 +02:00
|
|
|
F: package/python-uvloop/
|
2022-09-23 20:50:57 +02:00
|
|
|
F: package/qt5/
|
2022-01-09 22:47:24 +01:00
|
|
|
F: package/rockchip-mali/
|
2022-10-17 22:18:04 +02:00
|
|
|
F: package/rtl8188eu/
|
2022-09-21 00:15:27 +02:00
|
|
|
F: package/rtl8189es/
|
2022-11-29 22:07:59 +01:00
|
|
|
F: package/rtl8192eu/
|
2022-09-21 00:15:27 +02:00
|
|
|
F: package/rtl8723bu/
|
|
|
|
F: package/rtl8723ds/
|
|
|
|
F: package/rtl8812au-aircrack-ng/
|
2022-09-21 22:58:15 +02:00
|
|
|
F: package/rtl8821au/
|
2023-01-14 01:25:52 +01:00
|
|
|
F: package/rtl8821cu/
|
2021-11-05 23:17:56 +01:00
|
|
|
F: package/sunxi-mali-utgard/
|
2021-11-05 23:17:57 +01:00
|
|
|
F: package/sunxi-mali-utgard-driver/
|
2022-01-30 20:49:08 +01:00
|
|
|
F: package/sunxi-tools/
|
2023-03-15 11:08:48 +01:00
|
|
|
F: package/swugenerator/
|
2023-11-12 19:01:01 +01:00
|
|
|
F: package/swupdate/
|
2021-09-13 01:20:56 +02:00
|
|
|
F: package/trace-cmd/
|
2021-06-02 23:48:20 +02:00
|
|
|
F: package/udisks/
|
2022-09-21 00:15:27 +02:00
|
|
|
F: package/wilc-driver/
|
2021-08-19 17:41:55 +02:00
|
|
|
F: toolchain/
|
2018-02-15 14:57:17 +01:00
|
|
|
|
2022-04-19 23:24:47 +02:00
|
|
|
N: Graeme Smecher <gsmecher@threespeedlogic.com>
|
|
|
|
F: package/python-orjson/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Gregory Dymarek <gregd72002@gmail.com>
|
|
|
|
F: package/ding-libs/
|
|
|
|
F: package/gengetopt/
|
|
|
|
F: package/janus-gateway/
|
|
|
|
F: package/libnice/
|
|
|
|
F: package/libsrtp/
|
|
|
|
F: package/libwebsock/
|
|
|
|
F: package/sofia-sip/
|
|
|
|
|
2018-08-28 12:16:17 +02:00
|
|
|
N: Grzegorz Blach <grzegorz@blach.pl>
|
2018-11-03 15:49:12 +01:00
|
|
|
F: fs/f2fs/
|
2018-09-13 13:56:55 +02:00
|
|
|
F: package/bluez5_utils-headers/
|
2018-10-26 22:00:15 +02:00
|
|
|
F: package/f2fs-tools/
|
package/graphicsmagick: new package
GraphicsMagick is the swiss army knife of image processing.
It provides a robust and efficient collection of tools
and libraries which support reading, writing,
and manipulating an image in over 89 major formats
including important formats like DPX, GIF, JPEG, JPEG-2000,
PNG, PDF, PNM, TIFF, and WebP.
Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-08-31 22:15:31 +02:00
|
|
|
F: package/graphicsmagick/
|
2018-09-28 20:00:33 +02:00
|
|
|
F: package/pigpio/
|
2019-03-13 23:02:52 +01:00
|
|
|
F: package/python-aioblescan/
|
2019-09-26 21:27:18 +02:00
|
|
|
F: package/python-bluezero/
|
2019-11-19 17:51:54 +01:00
|
|
|
F: package/python-crontab/
|
2018-08-28 12:16:18 +02:00
|
|
|
F: package/python-falcon/
|
2019-07-05 13:57:11 +02:00
|
|
|
F: package/python-ifaddr/
|
2019-03-17 20:05:39 +01:00
|
|
|
F: package/python-hiredis/
|
2018-08-28 12:16:17 +02:00
|
|
|
F: package/python-mimeparse/
|
2018-09-28 20:00:34 +02:00
|
|
|
F: package/python-pigpio/
|
2018-08-30 12:18:48 +02:00
|
|
|
F: package/python-pyjwt/
|
2019-03-17 20:05:40 +01:00
|
|
|
F: package/python-redis/
|
2019-09-21 12:31:42 +02:00
|
|
|
F: package/python-rpi-ws281x/
|
2018-11-07 16:59:53 +01:00
|
|
|
F: package/python-wtforms/
|
2021-10-11 12:06:43 +02:00
|
|
|
F: package/rpi-rgb-led-matrix/
|
2018-08-28 12:16:17 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Guillaume William Brs <guillaume.bressaix@gmail.com>
|
2020-06-22 12:53:59 +02:00
|
|
|
F: package/libnids/
|
2021-02-11 22:37:29 +01:00
|
|
|
F: package/libxcrypt/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/liquid-dsp/
|
2022-07-28 13:28:40 +02:00
|
|
|
F: package/mbw/
|
2018-04-12 15:18:51 +02:00
|
|
|
F: package/pixiewps/
|
2022-07-27 21:29:46 +02:00
|
|
|
F: package/python-beniget/
|
2022-07-27 21:29:45 +02:00
|
|
|
F: package/python-gast/
|
2020-06-08 23:30:43 +02:00
|
|
|
F: package/python-pybind/
|
2022-07-27 21:29:47 +02:00
|
|
|
F: package/python-pythran/
|
2022-07-27 21:29:48 +02:00
|
|
|
F: package/python-scipy/
|
2018-04-12 13:44:33 +02:00
|
|
|
F: package/reaver/
|
2022-01-04 13:39:01 +01:00
|
|
|
F: support/testing/tests/package/br2-external/python-pybind
|
|
|
|
F: support/testing/tests/package/sample_python_pybind.py
|
2022-07-27 21:29:48 +02:00
|
|
|
F: support/testing/tests/package/sample_python_scipy.py
|
2022-01-04 13:39:01 +01:00
|
|
|
F: support/testing/tests/package/test_python_pybind.py
|
2022-07-27 21:29:48 +02:00
|
|
|
F: support/testing/tests/package/test_python_scipy.py
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2020-09-18 17:18:51 +02:00
|
|
|
N: Gustavo Heinz <gustavo@gsthnz.com>
|
|
|
|
F: package/python-m2crypto/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
|
2021-07-26 09:15:40 +02:00
|
|
|
F: board/terasic/de10nano_cyclone5/
|
|
|
|
F: configs/terasic_de10nano_cyclone5_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/gnuradio/
|
2017-02-10 15:01:12 +01:00
|
|
|
F: package/gqrx/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/gr-osmosdr/
|
2020-08-11 23:42:48 +02:00
|
|
|
F: package/librtlsdr/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libusbgx/
|
2020-04-28 08:42:24 +02:00
|
|
|
F: package/matio/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python-cheetah/
|
|
|
|
F: package/python-markdown/
|
2018-02-02 22:42:05 +01:00
|
|
|
F: package/python-remi/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python-sip/
|
2020-08-24 14:02:46 +02:00
|
|
|
F: package/uhd/
|
2022-02-08 17:24:08 +01:00
|
|
|
F: package/volk/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2019-10-11 14:40:42 +02:00
|
|
|
N: Heiko Thiery <heiko.thiery@gmail.com>
|
2022-01-31 16:30:23 +01:00
|
|
|
F: board/kontron/bl-imx8mm/
|
2022-11-06 11:20:50 +01:00
|
|
|
F: board/kontron/smarc-sal28/
|
2021-06-29 12:06:31 +02:00
|
|
|
F: board/kontron/pitx-imx8m/
|
2022-01-31 16:30:23 +01:00
|
|
|
F: configs/kontron_bl_imx8mm_defconfig
|
2022-11-06 11:20:50 +01:00
|
|
|
F: configs/kontron_smarc_sal28_defconfig
|
2021-06-29 12:06:31 +02:00
|
|
|
F: configs/kontron_pitx_imx8m_defconfig
|
2020-10-03 14:26:38 +02:00
|
|
|
F: package/altera-stapl/
|
2020-08-27 13:37:55 +02:00
|
|
|
F: package/ipmitool/
|
2019-10-11 14:40:43 +02:00
|
|
|
F: package/libnetconf2/
|
2019-10-11 14:40:42 +02:00
|
|
|
F: package/libyang/
|
2020-08-27 13:37:55 +02:00
|
|
|
F: package/linuxptp/
|
2020-06-16 14:16:45 +02:00
|
|
|
F: package/netopeer2/
|
2023-03-06 16:53:09 +01:00
|
|
|
F: package/rauc/
|
2019-10-28 10:03:26 +01:00
|
|
|
F: package/sysrepo/
|
2019-10-11 14:40:42 +02:00
|
|
|
|
2021-09-28 17:42:18 +02:00
|
|
|
N: Hervé Codina <herve.codina@bootlin.com>
|
2022-01-10 15:50:03 +01:00
|
|
|
F: package/alchemy/
|
2021-09-28 17:42:18 +02:00
|
|
|
F: package/dtbocfg/
|
2021-10-04 14:43:14 +02:00
|
|
|
F: package/libdbi/
|
2021-10-04 14:43:15 +02:00
|
|
|
F: package/libdbi-drivers/
|
2022-01-10 15:50:05 +01:00
|
|
|
F: package/libfutils/
|
2022-01-10 15:50:06 +01:00
|
|
|
F: package/libshdata/
|
2021-10-04 10:38:19 +02:00
|
|
|
F: package/lua-augeas/
|
2021-10-18 15:25:31 +02:00
|
|
|
F: package/modsecurity2/
|
2021-10-11 13:07:56 +02:00
|
|
|
F: package/php-apcu/
|
2021-10-14 11:39:51 +02:00
|
|
|
F: package/php-lua/
|
2021-10-14 14:13:50 +02:00
|
|
|
F: package/php-pam/
|
2021-12-17 22:44:46 +01:00
|
|
|
F: package/php-pecl-dbus/
|
2022-01-10 15:50:04 +01:00
|
|
|
F: package/ulog/
|
2021-09-28 17:42:18 +02:00
|
|
|
F: support/testing/tests/package/test_dtbocfg.py
|
2022-01-10 15:50:07 +01:00
|
|
|
F: support/testing/tests/package/test_libshdata.py
|
2021-10-04 10:38:19 +02:00
|
|
|
F: support/testing/tests/package/test_lua_augeas.py
|
2021-10-11 13:07:56 +02:00
|
|
|
F: support/testing/tests/package/test_php_apcu.py
|
2021-10-14 11:39:51 +02:00
|
|
|
F: support/testing/tests/package/test_php_lua.py
|
2021-10-14 14:13:50 +02:00
|
|
|
F: support/testing/tests/package/test_php_pam.py
|
2021-10-11 10:54:49 +02:00
|
|
|
F: support/testing/tests/package/test_php_pecl_dbus.py
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Hiroshi Kawashima <kei-k@ca2.so-net.ne.jp>
|
|
|
|
F: package/gauche/
|
|
|
|
F: package/gmrender-resurrect/
|
|
|
|
F: package/squeezelite/
|
|
|
|
|
2020-08-29 09:24:16 +02:00
|
|
|
N: Horatiu Vultur <horatiu.vultur@microchip.com>
|
2021-12-12 14:07:45 +01:00
|
|
|
F: package/cfm/
|
2020-08-29 09:24:16 +02:00
|
|
|
F: package/easyframes/
|
2020-08-31 20:25:40 +02:00
|
|
|
F: package/mrp/
|
2020-08-29 09:24:16 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Ian Haylock <haylocki@yahoo.co.uk>
|
|
|
|
F: package/python-rpi-gpio/
|
|
|
|
|
2024-01-31 12:22:13 +01:00
|
|
|
N: Ibai Erkiaga <ibai.erkiaga-elorza@amd.com>
|
2024-01-31 12:22:14 +01:00
|
|
|
F: package/binutils-bare-metal/
|
2024-01-31 12:22:15 +01:00
|
|
|
F: package/gcc-bare-metal/
|
2024-01-31 12:22:16 +01:00
|
|
|
F: package/newlib-bare-metal/
|
2024-01-31 12:22:13 +01:00
|
|
|
F: toolchain/toolchain-bare-metal-buildroot/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Ignacy Gawędzki <ignacy.gawedzki@green-communications.fr>
|
|
|
|
F: package/angularjs/
|
|
|
|
|
2017-02-15 09:38:52 +01:00
|
|
|
N: Ilias Apalodimas <apalos@gmail.com>
|
|
|
|
F: package/keepalived/
|
|
|
|
|
2018-12-18 19:11:02 +01:00
|
|
|
N: Ilya Averyanov <averyanovin@gmail.com>
|
|
|
|
F: package/exempi/
|
|
|
|
|
2017-12-05 06:42:35 +01:00
|
|
|
N: Ismael Luceno <ismael@iodev.co.uk>
|
|
|
|
F: package/axel/
|
2021-03-04 14:40:49 +01:00
|
|
|
F: package/mawk/
|
2017-12-05 06:42:35 +01:00
|
|
|
|
2017-06-12 20:21:41 +02:00
|
|
|
N: Jagan Teki <jagan@amarulasolutions.com>
|
2018-01-30 13:03:53 +01:00
|
|
|
F: board/amarula/
|
2018-01-30 13:03:55 +01:00
|
|
|
F: board/asus/
|
2017-10-19 11:45:23 +02:00
|
|
|
F: board/bananapi/
|
2017-06-12 20:21:41 +02:00
|
|
|
F: board/engicam/
|
2019-09-24 09:20:07 +02:00
|
|
|
F: board/olimex/a33_olinuxino/
|
2017-12-20 10:53:35 +01:00
|
|
|
F: board/olimex/a64-olinuxino/
|
2018-11-03 13:56:07 +01:00
|
|
|
F: board/orangepi/orangepi-lite2/
|
2018-11-03 13:56:06 +01:00
|
|
|
F: board/orangepi/orangepi-one-plus
|
2017-12-20 10:53:38 +01:00
|
|
|
F: board/orangepi/orangepi-zero-plus2/
|
2017-12-20 10:53:31 +01:00
|
|
|
F: board/pine64/
|
2018-09-03 10:26:09 +02:00
|
|
|
F: configs/amarula_vyasa_rk3288_defconfig
|
|
|
|
F: configs/asus_tinker_rk3288_defconfig
|
|
|
|
F: configs/engicam_imx6qdl_icore_defconfig
|
|
|
|
F: configs/engicam_imx6qdl_icore_qt5_defconfig
|
|
|
|
F: configs/engicam_imx6qdl_icore_rqs_defconfig
|
|
|
|
F: configs/engicam_imx6ul_geam_defconfig
|
|
|
|
F: configs/engicam_imx6ul_isiot_defconfig
|
2019-09-24 09:20:07 +02:00
|
|
|
F: configs/olimex_a33_olinuxino_defconfig
|
2017-12-20 10:53:35 +01:00
|
|
|
F: configs/olimex_a64_olinuxino_defconfig
|
2018-11-03 13:56:07 +01:00
|
|
|
F: configs/orangepi_lite2_defconfig
|
2018-11-03 13:56:06 +01:00
|
|
|
F: configs/orangepi_one_plus_defconfig
|
2017-12-20 10:53:38 +01:00
|
|
|
F: configs/orangepi_zero_plus2_defconfig
|
2017-12-20 10:53:31 +01:00
|
|
|
F: configs/pine64_defconfig
|
2017-12-20 10:53:32 +01:00
|
|
|
F: configs/pine64_sopine_defconfig
|
2022-07-27 21:29:48 +02:00
|
|
|
F: package/python-scipy/
|
|
|
|
F: support/testing/tests/package/sample_python_scipy.py
|
|
|
|
F: support/testing/tests/package/test_python_scipy.py
|
2017-06-12 20:21:41 +02:00
|
|
|
|
2018-10-22 11:31:36 +02:00
|
|
|
N: James Hilliard <james.hilliard1@gmail.com>
|
2020-04-19 02:39:53 +02:00
|
|
|
F: package/apcupsd/
|
2022-01-31 19:51:54 +01:00
|
|
|
F: package/bpftool/
|
2020-04-17 22:14:05 +02:00
|
|
|
F: package/exfatprogs/
|
2023-01-27 15:10:51 +01:00
|
|
|
F: package/fxdiv/
|
2020-01-25 06:46:17 +01:00
|
|
|
F: package/gensio/
|
2018-12-29 03:07:23 +01:00
|
|
|
F: package/lua-std-debug/
|
2018-12-29 03:07:24 +01:00
|
|
|
F: package/lua-std-normalize/
|
2022-08-11 08:35:01 +02:00
|
|
|
F: package/libucontext/
|
2022-01-27 20:23:11 +01:00
|
|
|
F: package/lilv/
|
2022-01-27 20:23:09 +01:00
|
|
|
F: package/lv2/
|
2023-01-27 15:10:50 +01:00
|
|
|
F: package/neon-2-sse/
|
2019-08-26 04:34:02 +02:00
|
|
|
F: package/pipewire/
|
2023-09-05 22:46:34 +02:00
|
|
|
F: package/python*
|
2022-10-14 22:09:18 +02:00
|
|
|
F: package/rtl8192eu/
|
2022-01-27 20:23:07 +01:00
|
|
|
F: package/serd/
|
2022-01-27 20:23:08 +01:00
|
|
|
F: package/sord/
|
2022-01-27 20:23:10 +01:00
|
|
|
F: package/sratom/
|
2022-11-07 03:24:56 +01:00
|
|
|
F: package/stb/
|
2021-12-09 10:31:29 +01:00
|
|
|
F: package/zchunk/
|
2022-05-11 23:18:45 +02:00
|
|
|
F: support/testing/tests/package/sample_python_rtoml.py
|
|
|
|
F: support/testing/tests/package/test_python_rtoml.py
|
2018-10-22 11:31:36 +02:00
|
|
|
|
2021-05-06 18:29:23 +02:00
|
|
|
N: James Knight <james.knight@collins.com>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/atkmm/
|
|
|
|
F: package/cairomm/
|
|
|
|
F: package/glibmm/
|
|
|
|
F: package/gtkmm3/
|
|
|
|
F: package/libpqxx/
|
|
|
|
F: package/pangomm/
|
2016-12-20 01:09:17 +01:00
|
|
|
F: package/rpm/
|
2023-04-21 03:42:34 +02:00
|
|
|
F: package/swaybg/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/yad/
|
|
|
|
|
2023-07-12 14:51:53 +02:00
|
|
|
N: Jamie Gibbons <jamie.gibbons@microchip.com>
|
2023-07-12 14:51:54 +02:00
|
|
|
F: board/microchip/mpfs_icicle/
|
|
|
|
F: configs/microchip_mpfs_icicle_defconfig
|
2023-07-12 14:51:53 +02:00
|
|
|
F: package/microchip-hss-payload-generator/
|
|
|
|
|
2022-08-21 13:04:18 +02:00
|
|
|
N: Jan Havran <havran.jan@email.cz>
|
|
|
|
F: board/pine64/pinecube/
|
|
|
|
F: configs/pine64_pinecube_defconfig
|
|
|
|
|
2018-01-04 13:28:31 +01:00
|
|
|
N: Jan Heylen <jan.heylen@nokia.com>
|
|
|
|
F: package/opentracing-cpp/
|
|
|
|
|
2017-12-07 18:59:26 +01:00
|
|
|
N: Jan Kraval <jan.kraval@gmail.com>
|
|
|
|
F: board/orangepi/orangepi-lite
|
|
|
|
F: configs/orangepi_lite_defconfig
|
|
|
|
|
2018-07-09 21:53:33 +02:00
|
|
|
N: Jan Kundrát <jan.kundrat@cesnet.cz>
|
|
|
|
F: configs/solidrun_clearfog_defconfig
|
|
|
|
F: board/solidrun/clearfog/
|
2019-12-04 11:17:27 +01:00
|
|
|
F: package/libnetconf2/
|
|
|
|
F: package/libyang/
|
|
|
|
F: package/sysrepo/
|
2018-07-09 21:53:33 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Jan Pedersen <jp@jp-embedded.com>
|
|
|
|
F: package/zip/
|
|
|
|
|
2021-06-11 16:07:30 +02:00
|
|
|
N: Jared Bents <jared.bents@rockwellcollins.com>
|
|
|
|
F: package/libvirt/
|
|
|
|
|
2024-05-17 15:20:36 +02:00
|
|
|
N: Jarkko Sakkinen <jarkko@kernel.org>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/quota/
|
|
|
|
|
|
|
|
N: Jason Pruitt <jrspruitt@gmail.com>
|
|
|
|
F: package/librtlsdr/
|
|
|
|
|
2023-03-15 10:17:27 +01:00
|
|
|
N: Javad Rahimi <javad321javad@gmail.com>
|
|
|
|
F: board/orangepi/orangepi-pc2
|
|
|
|
F: configs/orangepi_pc2_defconfig
|
|
|
|
|
2020-02-18 09:32:47 +01:00
|
|
|
N: Jean Burgat <jeanburgat33@gmail.com>
|
|
|
|
F: package/openfpgaloader/
|
|
|
|
|
2019-11-14 09:55:28 +01:00
|
|
|
N: Jens Kleintje <scooby22@web.de>
|
|
|
|
F: package/gcnano-binaries/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Jens Rosenboom <j.rosenboom@x-ion.de>
|
|
|
|
F: package/sl/
|
|
|
|
|
|
|
|
N: Jens Zettelmeyer <zettelmeyerj@gmail.com>
|
|
|
|
F: package/batctl/
|
|
|
|
|
|
|
|
N: Jeremy Rosen <jeremy.rosen@openwide.fr>
|
|
|
|
F: package/fxload/
|
|
|
|
|
2018-07-09 21:53:33 +02:00
|
|
|
N: Jérôme Oufella <jerome.oufella@savoirfairelinux.com>
|
|
|
|
F: package/libdri2/
|
|
|
|
F: package/qt-webkit-kiosk/
|
|
|
|
|
|
|
|
N: Jérôme Pouiller <jezz@sysmic.org>
|
|
|
|
F: package/apitrace/
|
|
|
|
F: package/freescale-imx/gpu-amd-bin-mx51/
|
|
|
|
F: package/freescale-imx/libz160/
|
|
|
|
F: package/lxc/
|
|
|
|
F: package/strongswan/
|
|
|
|
F: package/wmctrl/
|
|
|
|
F: package/x11r7/xdriver_xf86-video-imx/
|
|
|
|
|
2023-01-02 19:16:03 +01:00
|
|
|
N: Jesse Taube <Mr.Bossman075@gmail.com>
|
|
|
|
F: board/freescale/imxrt1050evk/
|
|
|
|
F: configs/imxrt1050-evk_defconfig
|
|
|
|
|
2022-08-24 11:49:00 +02:00
|
|
|
N: Jesse Van Gavere <jesseevg@gmail.com>
|
2022-10-13 14:10:40 +02:00
|
|
|
F: package/qt6/
|
2022-08-24 11:49:00 +02:00
|
|
|
|
2020-03-10 16:06:06 +01:00
|
|
|
N: Jianhui Zhao <zhaojh329@gmail.com>
|
2020-04-04 19:04:28 +02:00
|
|
|
F: package/libuhttpd/
|
2019-09-14 18:23:02 +02:00
|
|
|
F: package/libuwsc/
|
2020-03-10 16:06:06 +01:00
|
|
|
F: package/rtty/
|
|
|
|
|
2020-09-01 07:38:59 +02:00
|
|
|
N: Joachim Wiberg <troglobit@gmail.com>
|
2020-05-08 11:45:09 +02:00
|
|
|
F: configs/globalscale_espressobin_defconfig
|
|
|
|
F: board/globalscale/espressobin/
|
2021-11-22 03:08:01 +01:00
|
|
|
F: package/inadyn/
|
2022-09-19 05:46:22 +02:00
|
|
|
F: package/libconfuse/
|
2021-10-09 11:28:58 +02:00
|
|
|
F: package/libite/
|
2022-09-19 05:46:22 +02:00
|
|
|
F: package/libnet/
|
2021-07-19 11:38:15 +02:00
|
|
|
F: package/libteam/
|
2021-10-10 08:13:00 +02:00
|
|
|
F: package/libuev/
|
2020-09-01 07:38:59 +02:00
|
|
|
F: package/mg/
|
2023-01-23 06:52:58 +01:00
|
|
|
F: package/mdnsd/
|
2022-09-19 05:46:22 +02:00
|
|
|
F: package/mini-snmpd/
|
2021-11-03 13:34:10 +01:00
|
|
|
F: package/mrouted/
|
2020-09-18 08:04:26 +02:00
|
|
|
F: package/netcalc/
|
2022-09-19 05:46:22 +02:00
|
|
|
F: package/pimd/
|
|
|
|
F: package/redir/
|
2021-11-13 16:31:22 +01:00
|
|
|
F: package/smcroute/
|
2021-01-24 20:49:08 +01:00
|
|
|
F: package/ssdp-responder/
|
2021-03-08 14:27:41 +01:00
|
|
|
F: package/sysklogd/
|
2022-09-19 05:46:22 +02:00
|
|
|
F: package/uredir/
|
2021-10-10 17:49:41 +02:00
|
|
|
F: package/watchdogd/
|
2020-05-08 11:45:09 +02:00
|
|
|
|
2020-01-24 16:16:24 +01:00
|
|
|
N: Jochen Baltes <jochen.baltes@gmail.com>
|
|
|
|
F: package/altera-stapl
|
|
|
|
|
2018-06-08 21:27:39 +02:00
|
|
|
N: Joel Carlson <JoelsonCarl@gmail.com>
|
2019-08-01 11:44:40 +02:00
|
|
|
F: package/c-capnproto/
|
2018-07-11 00:31:25 +02:00
|
|
|
F: package/capnproto/
|
2018-06-21 00:26:11 +02:00
|
|
|
F: package/cmocka/
|
2018-05-31 19:04:29 +02:00
|
|
|
F: package/flatcc/
|
2018-10-10 01:46:49 +02:00
|
|
|
F: package/libcorrect/
|
2018-05-31 19:04:29 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Joel Stanley <joel@jms.id.au>
|
|
|
|
F: package/pdbg/
|
2017-09-20 04:48:45 +02:00
|
|
|
F: board/qemu/ppc64le-pseries/
|
|
|
|
F: configs/qemu_ppc64le_pseries_defconfig
|
2019-06-25 03:26:52 +02:00
|
|
|
F: board/qemu/ppc-mac99/
|
|
|
|
F: configs/qemu_ppc_mac99_defconfig
|
2022-06-21 22:34:14 +02:00
|
|
|
F: board/aspeed/
|
|
|
|
F: configs/aspeed*
|
2016-09-12 22:54:53 +02:00
|
|
|
|
|
|
|
N: Johan Derycke <johanderycke@gmail.com>
|
|
|
|
F: package/python-libconfig/
|
|
|
|
|
|
|
|
N: Johan Oudinet <johan.oudinet@gmail.com>
|
|
|
|
F: package/ejabberd/
|
2020-01-06 17:11:07 +01:00
|
|
|
F: package/erlang-base64url/
|
2018-11-26 12:08:06 +01:00
|
|
|
F: package/erlang-eimp/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/erlang-goldrush/
|
2020-01-06 17:11:09 +01:00
|
|
|
F: package/erlang-idna/
|
2017-05-31 18:35:42 +02:00
|
|
|
F: package/erlang-jiffy/
|
2020-01-06 17:11:08 +01:00
|
|
|
F: package/erlang-jose/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/erlang-lager/
|
2020-01-06 17:11:13 +01:00
|
|
|
F: package/erlang-p1-acme/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/erlang-p1-cache-tab/
|
2020-01-06 17:11:10 +01:00
|
|
|
F: package/erlang-p1-mqtree/
|
2017-06-06 16:33:10 +02:00
|
|
|
F: package/erlang-p1-oauth2/
|
2020-01-06 17:11:11 +01:00
|
|
|
F: package/erlang-p1-pkix/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/erlang-p1-sip/
|
|
|
|
F: package/erlang-p1-stringprep/
|
|
|
|
F: package/erlang-p1-stun/
|
|
|
|
F: package/erlang-p1-tls/
|
|
|
|
F: package/erlang-p1-utils/
|
|
|
|
F: package/erlang-p1-xml/
|
2017-05-31 18:35:44 +02:00
|
|
|
F: package/erlang-p1-xmpp/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/erlang-p1-yaml/
|
2020-01-06 17:11:12 +01:00
|
|
|
F: package/erlang-p1-yconf/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/erlang-p1-zlib/
|
2022-08-26 15:08:43 +02:00
|
|
|
F: package/forge/
|
2016-12-04 23:35:31 +01:00
|
|
|
F: package/nginx-dav-ext/
|
2021-10-25 11:16:38 +02:00
|
|
|
F: package/vis-network/
|
2020-03-25 15:04:24 +01:00
|
|
|
F: package/vuejs/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
|
|
|
N: John Stile <johns@msli.com>
|
|
|
|
F: package/dhcpcd/
|
|
|
|
|
2019-06-24 17:45:41 +02:00
|
|
|
N: John Faith <jfaith@impinj.com>
|
|
|
|
F: package/python-inflection/
|
2019-08-07 21:12:00 +02:00
|
|
|
F: package/sdbusplus/
|
2019-06-24 17:45:41 +02:00
|
|
|
|
2023-07-28 23:26:25 +02:00
|
|
|
N: Jon Ringle <jringle@gridpoint.com>
|
|
|
|
F: package/mbpoll/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Jonathan Ben Avraham <yba@tkos.co.il>
|
|
|
|
F: arch/Config.in.xtensa
|
|
|
|
F: package/autofs/
|
|
|
|
F: package/dawgdic/
|
|
|
|
F: package/libphidget/
|
|
|
|
F: package/phidgetwebservice/
|
|
|
|
F: package/rapidxml/
|
|
|
|
F: package/sphinxbase/
|
|
|
|
|
2019-09-16 13:55:03 +02:00
|
|
|
N: Joris Offouga <offougajoris@gmail.com>
|
|
|
|
F: package/python-colorlog/
|
2019-09-16 18:23:03 +02:00
|
|
|
F: package/python-simplelogging/
|
2019-09-16 13:55:03 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Joris Lijssens <joris.lijssens@gmail.com>
|
|
|
|
F: package/emlog/
|
|
|
|
F: package/libcoap/
|
|
|
|
F: package/libnet/
|
|
|
|
F: package/libuio/
|
|
|
|
F: package/netsniff-ng/
|
|
|
|
F: package/rabbitmq-c/
|
|
|
|
|
2021-03-17 10:52:30 +01:00
|
|
|
N: José Luis Salvador Rufo <salvador.joseluis@gmail.com>
|
|
|
|
F: package/zfs/
|
|
|
|
F: support/testing/tests/package/test_zfs.py
|
|
|
|
|
2018-07-09 21:53:33 +02:00
|
|
|
N: Joseph Kogut <joseph.kogut@gmail.com>
|
|
|
|
F: package/at-spi2-core/
|
2020-06-12 19:40:29 +02:00
|
|
|
F: package/earlyoom/
|
2018-07-09 21:53:33 +02:00
|
|
|
F: package/gconf/
|
|
|
|
F: package/libnss/
|
2023-06-15 15:43:08 +02:00
|
|
|
F: package/llvm-project/clang/
|
2023-06-15 15:43:07 +02:00
|
|
|
F: package/llvm-project/lld/
|
2023-06-15 15:43:06 +02:00
|
|
|
F: package/llvm-project/llvm/
|
2018-07-09 21:53:33 +02:00
|
|
|
F: package/python-cython/
|
2020-08-24 23:48:57 +02:00
|
|
|
F: package/python-pycups/
|
2018-07-09 21:53:33 +02:00
|
|
|
F: package/python-raven/
|
|
|
|
F: package/python-schedule/
|
2018-12-10 20:22:28 +01:00
|
|
|
F: package/python-sentry-sdk/
|
2018-07-09 21:53:33 +02:00
|
|
|
F: package/python-websockets/
|
|
|
|
F: package/python-xlib/
|
2022-01-06 10:54:51 +01:00
|
|
|
F: package/sentry-cli/
|
2020-09-15 23:01:22 +02:00
|
|
|
F: package/sentry-native/
|
2020-06-23 23:41:54 +02:00
|
|
|
F: package/unclutter-xfixes/
|
2018-07-09 21:53:33 +02:00
|
|
|
|
2017-08-04 22:46:24 +02:00
|
|
|
N: Joshua Henderson <joshua.henderson@microchip.com>
|
|
|
|
F: package/qt5/qt5wayland/
|
|
|
|
|
2019-05-09 17:58:49 +02:00
|
|
|
N: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
|
2020-09-04 16:33:00 +02:00
|
|
|
F: package/python-aiofiles/
|
2020-09-01 16:37:29 +02:00
|
|
|
F: package/python-crayons/
|
2019-05-09 17:58:49 +02:00
|
|
|
F: package/python-cycler/
|
2019-05-09 17:58:50 +02:00
|
|
|
F: package/python-matplotlib/
|
2020-09-04 16:33:01 +02:00
|
|
|
F: package/python-opcua-asyncio/
|
2020-09-01 16:37:30 +02:00
|
|
|
F: package/python-piexif/
|
2019-05-09 17:58:49 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Juha Rantanen <juha@codercoded.com>
|
|
|
|
F: package/acsccid/
|
|
|
|
|
|
|
|
N: Julian Scheel <julian@jusst.de>
|
|
|
|
F: package/bitstream/
|
|
|
|
F: package/cbootimage/
|
|
|
|
F: package/cryptopp/
|
|
|
|
F: package/dvblast/
|
|
|
|
F: package/tegrarcm/
|
|
|
|
|
|
|
|
N: Julien Boibessot <julien.boibessot@armadeus.com>
|
|
|
|
F: board/armadeus/
|
|
|
|
F: configs/armadeus*
|
2018-06-06 19:19:52 +02:00
|
|
|
F: package/abootimg/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/gpm/
|
|
|
|
F: package/lbreakout2/
|
|
|
|
F: package/libcddb/
|
|
|
|
F: package/libmodbus/
|
|
|
|
F: package/ltris/
|
|
|
|
F: package/opentyrian/
|
|
|
|
|
|
|
|
N: Julien Corjon <corjon.j@ecagroup.com>
|
|
|
|
F: package/qt5/
|
|
|
|
|
2018-11-16 12:39:57 +01:00
|
|
|
N: Julien Grossholtz <julien.grossholtz@openest.io>
|
2021-11-11 21:04:39 +01:00
|
|
|
F: board/raspberrypi/
|
2019-08-11 14:07:23 +02:00
|
|
|
F: board/technologic/ts7680/
|
2021-11-11 21:04:39 +01:00
|
|
|
F: configs/raspberrypizero2w_defconfig
|
2019-08-11 14:07:23 +02:00
|
|
|
F: configs/ts7680_defconfig
|
2018-11-16 12:39:57 +01:00
|
|
|
F: package/paho-mqtt-c
|
|
|
|
|
2020-10-26 09:27:17 +01:00
|
|
|
N: Julien Olivain <ju.o@free.fr>
|
2023-12-23 22:29:48 +01:00
|
|
|
F: board/qemu/riscv64-virt-efi/
|
2022-01-09 17:47:56 +01:00
|
|
|
F: board/spike/
|
2019-06-10 12:19:24 +02:00
|
|
|
F: board/technexion/imx8mmpico/
|
2019-03-10 17:30:42 +01:00
|
|
|
F: board/technexion/imx8mpico/
|
2019-06-10 12:19:24 +02:00
|
|
|
F: configs/imx8mmpico_defconfig
|
2019-03-10 17:30:42 +01:00
|
|
|
F: configs/imx8mpico_defconfig
|
2023-12-23 22:29:48 +01:00
|
|
|
F: configs/qemu_riscv64_virt_efi_defconfig
|
2022-01-09 17:47:56 +01:00
|
|
|
F: configs/spike_riscv64_defconfig
|
2019-12-29 19:58:23 +01:00
|
|
|
F: package/fluid-soundfont/
|
2019-12-09 21:03:24 +01:00
|
|
|
F: package/fluidsynth/
|
2019-08-23 22:57:11 +02:00
|
|
|
F: package/glslsandbox-player/
|
2023-02-12 17:33:21 +01:00
|
|
|
F: package/gnupg2/
|
2022-11-24 23:05:51 +01:00
|
|
|
F: package/highway/
|
2023-03-03 23:26:57 +01:00
|
|
|
F: package/kexec/
|
2022-11-24 23:05:52 +01:00
|
|
|
F: package/libjxl/
|
package/octave: new package
GNU Octave is a high-level language, primarily intended for numerical
computations. It provides a convenient command line interface for
solving linear and nonlinear problems numerically, and for performing
other numerical experiments using a language that is mostly compatible
with Matlab. It may also be used as a batch-oriented language. Octave
has extensive tools for solving common numerical linear algebra
problems, finding the roots of nonlinear equations, integrating
ordinary functions, manipulating polynomials, and integrating ordinary
differential and differential-algebraic equations. It is easily
extensible and customizable via user-defined functions written in
Octave's own language, or using dynamically loaded modules written in
C++, C, Fortran, or other languages.
https://www.octave.org/
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-05-01 22:18:43 +02:00
|
|
|
F: package/octave/
|
package/ola: reintroduce package at version 0.10.8
The ola package (Open Lighting Architecture) version 0.10.2 was
removed in commit e692e1f2b2285c18057e2c70cc1d9d0cfdb15d5e due to an
incompatibility with the protobuf version 3.2.0 present in Buildroot
at that time.
ola was fixed to support newer protobuf version in:
https://github.com/OpenLightingProject/ola/pull/1630
This commit reintroduce this package at version 0.10.8.
For changelogs since its removal at 0.10.2, see:
- https://github.com/OpenLightingProject/ola/releases/tag/0.10.3
- https://github.com/OpenLightingProject/ola/releases/tag/0.10.4
- https://github.com/OpenLightingProject/ola/releases/tag/0.10.5
- https://github.com/OpenLightingProject/ola/releases/tag/0.10.6
- https://github.com/OpenLightingProject/ola/releases/tag/0.10.7
- https://github.com/OpenLightingProject/ola/releases/tag/0.10.8
This commit is based on the previously removed ola package, with the
following rework:
- Remove the dependency on BR2_HOST_GCC_AT_LEAST_4_5 as host gcc is
now guaranteed to be at least 4.8.
- Update target gcc dependency to >= 4.8 to reflect protobuf
requirement.
- Remove the BR2_PACKAGE_OLA_SLP option, which was removed in
ola 0.9.4.
- Change the "DMX4Linux" plugin option name to "Open DMX" to better
reflect the ola option (DMX4Linux is a legacy plugin for 2.6
Kernels).
- Update Python support to version 3.x only
- Remove patches, as they are no longer needed
- Add options for ola plugins: ftdidmx, gpio, karate,
openpixelcontrol, renard, spi, uartdmx, usbdmx
- Reorder options alphabetically
- Update project URL
- Add license hashes
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-02-13 17:11:07 +01:00
|
|
|
F: package/ola/
|
2023-03-29 21:13:22 +02:00
|
|
|
F: package/openblas/
|
2023-02-22 21:41:33 +01:00
|
|
|
F: package/opencsd/
|
2023-02-07 23:09:37 +01:00
|
|
|
F: package/openmpi/
|
2023-02-02 21:20:02 +01:00
|
|
|
F: package/perftest/
|
2020-01-24 19:24:47 +01:00
|
|
|
F: package/ptm2human/
|
2022-01-09 18:02:00 +01:00
|
|
|
F: package/python-distro/
|
2022-01-10 21:01:51 +01:00
|
|
|
F: package/python-gnupg/
|
2022-11-22 21:31:25 +01:00
|
|
|
F: package/python-hkdf/
|
2023-03-13 22:34:39 +01:00
|
|
|
F: package/python-hwdata/
|
2022-11-22 21:31:27 +01:00
|
|
|
F: package/python-magic-wormhole/
|
2022-11-22 21:31:28 +01:00
|
|
|
F: package/python-magic-wormhole-mailbox-server/
|
2022-11-22 21:31:29 +01:00
|
|
|
F: package/python-magic-wormhole-transit-relay/
|
2023-01-03 21:00:45 +01:00
|
|
|
F: package/python-midiutil/
|
2023-12-24 00:05:13 +01:00
|
|
|
F: package/python-ml-dtypes/
|
2020-01-04 16:59:02 +01:00
|
|
|
F: package/python-pyalsa/
|
2022-11-22 21:31:26 +01:00
|
|
|
F: package/python-spake2/
|
2023-02-02 21:20:01 +01:00
|
|
|
F: package/rdma-core/
|
2022-01-09 17:47:55 +01:00
|
|
|
F: package/riscv-isa-sim/
|
2022-10-29 13:53:21 +02:00
|
|
|
F: package/tinycompress/
|
2022-11-19 13:05:18 +01:00
|
|
|
F: package/z3/
|
2022-01-23 14:48:03 +01:00
|
|
|
F: package/zynaddsubfx/
|
2024-01-21 00:28:54 +01:00
|
|
|
F: support/testing/tests/boot/test_optee_os.py
|
|
|
|
F: support/testing/tests/boot/test_optee_os/
|
2022-01-30 18:21:45 +01:00
|
|
|
F: support/testing/tests/package/sample_python_distro.py
|
2022-01-16 11:41:14 +01:00
|
|
|
F: support/testing/tests/package/sample_python_gnupg.py
|
2023-03-13 22:34:39 +01:00
|
|
|
F: support/testing/tests/package/sample_python_hwdata.py
|
2023-01-03 21:00:45 +01:00
|
|
|
F: support/testing/tests/package/sample_python_midiutil.py
|
2023-12-24 00:05:13 +01:00
|
|
|
F: support/testing/tests/package/sample_python_ml_dtypes.py
|
2022-07-27 22:23:07 +02:00
|
|
|
F: support/testing/tests/package/sample_python_pyalsa.py
|
2022-11-22 21:31:26 +01:00
|
|
|
F: support/testing/tests/package/sample_python_spake2.py
|
2024-02-06 20:52:37 +01:00
|
|
|
F: support/testing/tests/package/test_acl.py
|
2023-07-13 22:18:08 +02:00
|
|
|
F: support/testing/tests/package/test_acpica.py
|
|
|
|
F: support/testing/tests/package/test_acpica/
|
2024-01-12 20:46:26 +01:00
|
|
|
F: support/testing/tests/package/test_apache.py
|
2024-01-16 19:20:26 +01:00
|
|
|
F: support/testing/tests/package/test_bc.py
|
2024-03-15 22:05:01 +01:00
|
|
|
F: support/testing/tests/package/test_bitcoin.py
|
2023-07-13 23:32:56 +02:00
|
|
|
F: support/testing/tests/package/test_brotli.py
|
2023-07-06 21:01:01 +02:00
|
|
|
F: support/testing/tests/package/test_bzip2.py
|
2023-07-06 21:00:59 +02:00
|
|
|
F: support/testing/tests/package/test_compressor_base.py
|
2024-01-07 13:56:21 +01:00
|
|
|
F: support/testing/tests/package/test_coremark.py
|
2024-01-27 00:05:20 +01:00
|
|
|
F: support/testing/tests/package/test_cryptsetup.py
|
|
|
|
F: support/testing/tests/package/test_cryptsetup/
|
2023-03-05 18:30:55 +01:00
|
|
|
F: support/testing/tests/package/test_ddrescue.py
|
|
|
|
F: support/testing/tests/package/test_ddrescue/
|
2023-06-26 22:05:50 +02:00
|
|
|
F: support/testing/tests/package/test_dos2unix.py
|
2024-03-31 22:14:23 +02:00
|
|
|
F: support/testing/tests/package/test_ed.py
|
2024-04-16 23:39:58 +02:00
|
|
|
F: support/testing/tests/package/test_ethtool.py
|
|
|
|
F: support/testing/tests/package/test_ethtool/
|
2024-01-24 23:19:50 +01:00
|
|
|
F: support/testing/tests/package/test_file.py
|
|
|
|
F: support/testing/tests/package/test_file/
|
2023-01-03 21:00:46 +01:00
|
|
|
F: support/testing/tests/package/test_fluidsynth.py
|
|
|
|
F: support/testing/tests/package/test_fluidsynth/
|
2024-01-23 22:54:54 +01:00
|
|
|
F: support/testing/tests/package/test_fping.py
|
2024-04-20 15:28:17 +02:00
|
|
|
F: support/testing/tests/package/test_fwts.py
|
2023-07-17 19:48:40 +02:00
|
|
|
F: support/testing/tests/package/test_gawk.py
|
2024-02-09 20:29:23 +01:00
|
|
|
F: support/testing/tests/package/test_ghostscript.py
|
|
|
|
F: support/testing/tests/package/test_ghostscript/
|
2023-06-07 22:24:39 +02:00
|
|
|
F: support/testing/tests/package/test_glslsandbox_player.py
|
|
|
|
F: support/testing/tests/package/test_glslsandbox_player/
|
2023-01-04 23:20:07 +01:00
|
|
|
F: support/testing/tests/package/test_gnupg2.py
|
2024-03-24 19:30:38 +01:00
|
|
|
F: support/testing/tests/package/test_gnuplot.py
|
|
|
|
F: support/testing/tests/package/test_gnuplot/
|
2023-07-22 18:17:08 +02:00
|
|
|
F: support/testing/tests/package/test_gnuradio.py
|
|
|
|
F: support/testing/tests/package/test_gnuradio/
|
2023-07-06 21:01:00 +02:00
|
|
|
F: support/testing/tests/package/test_gzip.py
|
2022-11-24 23:05:51 +01:00
|
|
|
F: support/testing/tests/package/test_highway.py
|
2022-09-15 23:24:50 +02:00
|
|
|
F: support/testing/tests/package/test_hwloc.py
|
2024-02-09 20:37:43 +01:00
|
|
|
F: support/testing/tests/package/test_iozone.py
|
2024-04-20 12:54:41 +02:00
|
|
|
F: support/testing/tests/package/test_iperf.py
|
2023-03-04 17:31:01 +01:00
|
|
|
F: support/testing/tests/package/test_iperf3.py
|
2024-03-23 21:35:16 +01:00
|
|
|
F: support/testing/tests/package/test_iptables.py
|
2024-02-11 11:12:12 +01:00
|
|
|
F: support/testing/tests/package/test_jailhouse.py
|
2024-02-04 23:19:15 +01:00
|
|
|
F: support/testing/tests/package/test_jq.py
|
|
|
|
F: support/testing/tests/package/test_jq/
|
2023-03-03 23:26:58 +01:00
|
|
|
F: support/testing/tests/package/test_kexec.py
|
|
|
|
F: support/testing/tests/package/test_kexec/
|
2023-08-10 19:53:19 +02:00
|
|
|
F: support/testing/tests/package/test_kmscube.py
|
|
|
|
F: support/testing/tests/package/test_kmscube/
|
2023-09-08 22:52:42 +02:00
|
|
|
F: support/testing/tests/package/test_less.py
|
2024-02-04 20:19:22 +01:00
|
|
|
F: support/testing/tests/package/test_libcamera.py
|
|
|
|
F: support/testing/tests/package/test_libcamera/
|
2023-09-08 23:02:53 +02:00
|
|
|
F: support/testing/tests/package/test_libgpgme.py
|
2022-11-24 23:05:52 +01:00
|
|
|
F: support/testing/tests/package/test_libjxl.py
|
2024-04-11 23:39:40 +02:00
|
|
|
F: support/testing/tests/package/test_links.py
|
|
|
|
F: support/testing/tests/package/test_links/
|
2023-07-23 12:49:20 +02:00
|
|
|
F: support/testing/tests/package/test_lrzip.py
|
2024-04-23 00:06:32 +02:00
|
|
|
F: support/testing/tests/package/test_lrzsz.py
|
2024-01-24 23:22:36 +01:00
|
|
|
F: support/testing/tests/package/test_ltrace.py
|
2024-02-13 21:49:15 +01:00
|
|
|
F: support/testing/tests/package/test_lvm2.py
|
2023-07-15 10:50:58 +02:00
|
|
|
F: support/testing/tests/package/test_lzip.py
|
2023-03-11 13:46:07 +01:00
|
|
|
F: support/testing/tests/package/test_lsof.py
|
2023-07-13 23:33:13 +02:00
|
|
|
F: support/testing/tests/package/test_lz4.py
|
2023-07-14 18:42:03 +02:00
|
|
|
F: support/testing/tests/package/test_lzop.py
|
2024-01-27 23:38:38 +01:00
|
|
|
F: support/testing/tests/package/test_mdadm.py
|
|
|
|
F: support/testing/tests/package/test_mdadm/
|
2024-01-16 22:05:56 +01:00
|
|
|
F: support/testing/tests/package/test_micropython.py
|
|
|
|
F: support/testing/tests/package/test_micropython/
|
2023-03-04 22:41:20 +01:00
|
|
|
F: support/testing/tests/package/test_mtools.py
|
2024-01-10 22:06:38 +01:00
|
|
|
F: support/testing/tests/package/test_mtr.py
|
2022-12-10 13:30:48 +01:00
|
|
|
F: support/testing/tests/package/test_ncdu.py
|
2024-01-13 21:15:31 +01:00
|
|
|
F: support/testing/tests/package/test_netcat.py
|
2024-04-18 00:06:10 +02:00
|
|
|
F: support/testing/tests/package/test_netsnmp.py
|
|
|
|
F: support/testing/tests/package/test_netsnmp/
|
2023-08-20 12:33:43 +02:00
|
|
|
F: support/testing/tests/package/test_nftables.py
|
|
|
|
F: support/testing/tests/package/test_nftables/
|
2024-01-13 21:48:24 +01:00
|
|
|
F: support/testing/tests/package/test_ngrep.py
|
2024-01-29 21:36:35 +01:00
|
|
|
F: support/testing/tests/package/test_numactl.py
|
|
|
|
F: support/testing/tests/package/test_numactl/
|
package/octave: new package
GNU Octave is a high-level language, primarily intended for numerical
computations. It provides a convenient command line interface for
solving linear and nonlinear problems numerically, and for performing
other numerical experiments using a language that is mostly compatible
with Matlab. It may also be used as a batch-oriented language. Octave
has extensive tools for solving common numerical linear algebra
problems, finding the roots of nonlinear equations, integrating
ordinary functions, manipulating polynomials, and integrating ordinary
differential and differential-algebraic equations. It is easily
extensible and customizable via user-defined functions written in
Octave's own language, or using dynamically loaded modules written in
C++, C, Fortran, or other languages.
https://www.octave.org/
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-05-01 22:18:43 +02:00
|
|
|
F: support/testing/tests/package/test_octave.py
|
2022-07-26 19:53:44 +02:00
|
|
|
F: support/testing/tests/package/test_ola.py
|
|
|
|
F: support/testing/tests/package/test_ola/
|
2023-05-08 20:10:01 +02:00
|
|
|
F: support/testing/tests/package/test_openblas.py
|
2024-01-17 21:11:57 +01:00
|
|
|
F: support/testing/tests/package/test_pciutils.py
|
2023-02-02 21:20:02 +01:00
|
|
|
F: support/testing/tests/package/test_perftest.py
|
2023-07-14 18:42:19 +02:00
|
|
|
F: support/testing/tests/package/test_pigz.py
|
2024-01-11 23:40:03 +01:00
|
|
|
F: support/testing/tests/package/test_postgresql.py
|
2022-01-30 18:21:45 +01:00
|
|
|
F: support/testing/tests/package/test_python_distro.py
|
2022-01-16 11:41:14 +01:00
|
|
|
F: support/testing/tests/package/test_python_gnupg.py
|
2023-02-12 17:33:21 +01:00
|
|
|
F: support/testing/tests/package/test_python_hkdf.py
|
2023-03-13 22:34:39 +01:00
|
|
|
F: support/testing/tests/package/test_python_hwdata.py
|
2022-11-22 21:31:30 +01:00
|
|
|
F: support/testing/tests/package/test_python_magic_wormhole.py
|
2023-01-03 21:00:45 +01:00
|
|
|
F: support/testing/tests/package/test_python_midiutil.py
|
2023-12-24 00:05:13 +01:00
|
|
|
F: support/testing/tests/package/test_python_ml_dtypes.py
|
2022-07-27 22:23:07 +02:00
|
|
|
F: support/testing/tests/package/test_python_pyalsa.py
|
2022-11-22 21:31:26 +01:00
|
|
|
F: support/testing/tests/package/test_python_spake2.py
|
2023-02-02 21:20:01 +01:00
|
|
|
F: support/testing/tests/package/test_rdma_core.py
|
|
|
|
F: support/testing/tests/package/test_rdma_core/
|
2023-09-08 22:55:38 +02:00
|
|
|
F: support/testing/tests/package/test_screen.py
|
2024-01-16 19:35:12 +01:00
|
|
|
F: support/testing/tests/package/test_sed.py
|
2024-04-23 19:11:18 +02:00
|
|
|
F: support/testing/tests/package/test_socat.py
|
2024-02-18 18:25:47 +01:00
|
|
|
F: support/testing/tests/package/test_sox.py
|
2024-01-12 20:56:10 +01:00
|
|
|
F: support/testing/tests/package/test_sqlite.py
|
2024-01-18 22:11:48 +01:00
|
|
|
F: support/testing/tests/package/test_strace.py
|
2023-02-27 21:53:33 +01:00
|
|
|
F: support/testing/tests/package/test_stress_ng.py
|
2023-09-17 19:12:44 +02:00
|
|
|
F: support/testing/tests/package/test_tcl.py
|
|
|
|
F: support/testing/tests/package/test_tcl/
|
2024-01-18 22:49:38 +01:00
|
|
|
F: support/testing/tests/package/test_tcpdump.py
|
2024-01-07 13:09:02 +01:00
|
|
|
F: support/testing/tests/package/test_tesseract_ocr.py
|
2024-02-06 21:13:10 +01:00
|
|
|
F: support/testing/tests/package/test_thttpd.py
|
2024-01-24 23:24:03 +01:00
|
|
|
F: support/testing/tests/package/test_trace_cmd.py
|
|
|
|
F: support/testing/tests/package/test_trace_cmd/
|
2024-01-24 23:25:23 +01:00
|
|
|
F: support/testing/tests/package/test_usbutils.py
|
|
|
|
F: support/testing/tests/package/test_usbutils/
|
2023-08-10 22:59:17 +02:00
|
|
|
F: support/testing/tests/package/test_weston.py
|
|
|
|
F: support/testing/tests/package/test_weston/
|
2023-07-06 21:01:02 +02:00
|
|
|
F: support/testing/tests/package/test_xz.py
|
2022-11-19 13:05:18 +01:00
|
|
|
F: support/testing/tests/package/test_z3.py
|
2023-02-12 17:33:22 +01:00
|
|
|
F: support/testing/tests/package/test_z3/
|
2024-05-09 21:37:37 +02:00
|
|
|
F: support/testing/tests/package/test_zbar.py
|
2023-07-14 18:42:30 +02:00
|
|
|
F: support/testing/tests/package/test_zchunk.py
|
2023-07-13 23:33:25 +02:00
|
|
|
F: support/testing/tests/package/test_zstd.py
|
2019-03-10 17:30:42 +01:00
|
|
|
|
2017-02-08 22:37:52 +01:00
|
|
|
N: Julien Viard de Galbert <julien@vdg.name>
|
|
|
|
F: package/dieharder/
|
2017-05-29 23:03:39 +02:00
|
|
|
F: package/easy-rsa/
|
2017-02-08 22:37:52 +01:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Justin Maggard <jmaggard@netgear.com>
|
|
|
|
F: package/dtach/
|
2020-07-06 17:30:39 +02:00
|
|
|
|
|
|
|
N: Kamel Bouhara <kamel.bouhara@gmail.com>
|
2020-07-06 17:30:40 +02:00
|
|
|
F: package/libodb-boost/
|
2020-07-06 17:30:39 +02:00
|
|
|
F: package/libodb-mysql/
|
2021-06-08 14:32:09 +02:00
|
|
|
F: package/libqb/
|
2021-06-08 14:32:10 +02:00
|
|
|
F: package/usbguard/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
|
|
|
N: Karoly Kasza <kaszak@gmail.com>
|
|
|
|
F: package/irqbalance/
|
|
|
|
F: package/openvmtools/
|
|
|
|
|
|
|
|
N: Kelvin Cheung <keguang.zhang@gmail.com>
|
|
|
|
F: package/cpuload/
|
|
|
|
F: package/bwm-ng/
|
|
|
|
F: package/ramsmp/
|
|
|
|
|
2019-04-03 13:29:02 +02:00
|
|
|
N: Kieran Bingham <kieran.bingham@ideasonboard.com>
|
|
|
|
F: package/libcamera/
|
|
|
|
|
2023-07-26 20:04:31 +02:00
|
|
|
N: Kilian Zinnecker <kilian.zinnecker@mail.de>
|
2023-11-30 23:31:01 +01:00
|
|
|
F: board/avnet/rzboard_v2l/
|
2023-07-26 20:04:33 +02:00
|
|
|
F: board/radxa/rock5b/
|
2024-02-07 08:08:06 +01:00
|
|
|
F: configs/rock5b_defconfig
|
2023-11-30 23:31:01 +01:00
|
|
|
F: configs/avnet_rzboard_v2l_defconfig
|
2024-02-07 08:08:06 +01:00
|
|
|
F: package/rockchip-rkbin/
|
2023-07-26 20:04:31 +02:00
|
|
|
|
2020-12-04 15:17:37 +01:00
|
|
|
N: Klaus Heinrich Kiwi <klaus@linux.vnet.ibm.com>
|
|
|
|
F: package/wqy-zenhei/
|
|
|
|
|
2017-06-19 18:55:06 +02:00
|
|
|
N: Koen Martens <gmc@sonologic.nl>
|
2018-07-11 00:31:25 +02:00
|
|
|
F: package/capnproto/
|
2017-06-19 18:55:06 +02:00
|
|
|
F: package/linuxconsoletools/
|
2017-04-11 09:00:08 +02:00
|
|
|
|
2021-11-30 11:39:18 +01:00
|
|
|
N: Kory Maincent <kory.maincent@bootlin.com>
|
|
|
|
F: board/octavo/osd32mp1-brk/
|
2021-11-30 11:39:19 +01:00
|
|
|
F: board/octavo/osd32mp1-red/
|
2021-11-30 11:39:18 +01:00
|
|
|
F: configs/octavo_osd32mp1_brk_defconfig
|
2021-11-30 11:39:19 +01:00
|
|
|
F: configs/octavo_osd32mp1_red_defconfig
|
2021-11-30 11:39:18 +01:00
|
|
|
|
2022-04-23 00:36:09 +02:00
|
|
|
N: Kris Bahnsen <kris@embeddedTS.com>
|
|
|
|
F: package/wilc-firmware/
|
2022-04-23 00:36:11 +02:00
|
|
|
F: package/wilc-driver/
|
2022-04-23 00:36:09 +02:00
|
|
|
|
2017-08-25 14:58:54 +02:00
|
|
|
N: Kurt Van Dijck <dev.kurt@vandijck-laurijssen.be>
|
|
|
|
F: package/bcusdk/
|
|
|
|
F: package/libpthsem/
|
2017-12-28 20:45:55 +01:00
|
|
|
F: package/nilfs-utils/
|
2017-08-25 14:58:54 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Laurent Cans <laurent.cans@gmail.com>
|
|
|
|
F: package/aircrack-ng/
|
|
|
|
|
2018-07-09 21:53:33 +02:00
|
|
|
N: Laurent Charpentier <laurent_pubs@yahoo.com>
|
|
|
|
F: package/open-lldp/
|
|
|
|
|
2023-02-01 21:48:46 +01:00
|
|
|
N: Laurent Vivier <laurent@vivier.eu>
|
|
|
|
F: package/petitboot/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Lee Jones <lee.jones@linaro.org>
|
|
|
|
F: boot/afboot-stm32/
|
|
|
|
|
2018-07-09 15:46:25 +02:00
|
|
|
N: Leon Anavi <leon.anavi@konsulko.com>
|
|
|
|
F: board/olimex/a10_olinuxino
|
|
|
|
F: configs/olimex_a10_olinuxino_lime_defconfig
|
|
|
|
|
2020-11-27 14:51:43 +01:00
|
|
|
N: Leonid Yuriev <leo@yuriev.ru>
|
|
|
|
F: package/libmdbx/
|
|
|
|
|
2017-01-24 15:43:47 +01:00
|
|
|
N: Lionel Flandrin <lionel@svkt.org>
|
|
|
|
F: package/python-babel/
|
2018-04-11 18:37:12 +02:00
|
|
|
F: package/python-daemonize/
|
2017-01-25 10:01:50 +01:00
|
|
|
F: package/python-flask/
|
2017-01-30 15:11:18 +01:00
|
|
|
F: package/python-flask-babel/
|
|
|
|
F: package/python-gunicorn/
|
2021-09-19 14:45:15 +02:00
|
|
|
F: support/testing/tests/package/sample_python_flask.py
|
|
|
|
F: support/testing/tests/package/test_python_flask.py
|
2017-01-24 15:43:47 +01:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Lionel Orry <lionel.orry@gmail.com>
|
|
|
|
F: package/mongrel2/
|
|
|
|
|
|
|
|
N: Lothar Felten <lothar.felten@gmail.com>
|
2018-12-08 15:50:08 +01:00
|
|
|
F: board/bananapi/bananapi-m2-ultra/
|
2019-08-11 14:07:38 +02:00
|
|
|
F: board/beaglebone/
|
2018-12-08 15:50:08 +01:00
|
|
|
F: configs/bananapi_m2_ultra_defconfig
|
2019-08-11 14:07:38 +02:00
|
|
|
F: configs/beaglebone_defconfig
|
|
|
|
F: configs/beaglebone_qt5_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/ti-sgx-demos/
|
|
|
|
F: package/ti-sgx-km/
|
|
|
|
F: package/ti-sgx-um/
|
|
|
|
|
2019-11-03 17:01:57 +01:00
|
|
|
N: Louis Aussedat <aussedat.louis@gmail.com>
|
2019-12-20 19:14:56 +01:00
|
|
|
F: package/mfoc
|
2019-12-22 13:05:00 +01:00
|
|
|
F: package/libpam-nfc
|
2019-11-10 23:26:53 +01:00
|
|
|
F: package/python-dnspython/
|
2019-11-10 23:26:55 +01:00
|
|
|
F: package/python-future/
|
2019-11-10 23:26:54 +01:00
|
|
|
F: package/python-huepy/
|
2019-11-03 17:01:58 +01:00
|
|
|
F: package/python-tqdm/
|
2020-05-11 20:10:51 +02:00
|
|
|
F: package/rtl8189es/
|
2019-11-03 17:01:57 +01:00
|
|
|
|
2019-01-31 13:15:21 +01:00
|
|
|
N: Louis-Paul Cordier <lpdev@cordier.org>
|
|
|
|
F: package/intel-gmmlib/
|
2019-02-05 19:19:43 +01:00
|
|
|
F: package/intel-mediadriver/
|
2019-02-05 19:19:44 +01:00
|
|
|
F: package/intel-mediasdk/
|
2019-01-31 13:15:21 +01:00
|
|
|
|
2022-06-03 14:35:06 +02:00
|
|
|
N: Luca Ceresoli <luca.ceresoli@bootlin.com>
|
2016-09-21 23:43:01 +02:00
|
|
|
F: board/olimex/a20_olinuxino/
|
2018-04-09 16:47:08 +02:00
|
|
|
F: board/zynq/
|
2018-07-25 16:35:37 +02:00
|
|
|
F: board/zynqmp/
|
2016-09-21 23:43:01 +02:00
|
|
|
F: configs/olimex_a20_olinuxino_*
|
2019-08-11 14:07:26 +02:00
|
|
|
F: configs/zynq_microzed_defconfig
|
2018-04-09 16:47:08 +02:00
|
|
|
F: configs/zynq_zed_defconfig
|
2019-08-11 14:07:26 +02:00
|
|
|
F: configs/zynq_zc706_defconfig
|
2018-07-25 16:35:37 +02:00
|
|
|
F: configs/zynqmp_zcu106_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/agentpp/
|
|
|
|
F: package/exim/
|
|
|
|
F: package/libpjsip/
|
2023-03-27 15:59:48 +02:00
|
|
|
F: package/linux-tools/linux-tool-usbtools.mk.in
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/qpid-proton/
|
|
|
|
F: package/rtl8188eu/
|
2016-09-21 12:19:23 +02:00
|
|
|
F: package/snmppp/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/stm32flash/
|
|
|
|
F: package/unzip/
|
|
|
|
F: support/legal-info/
|
|
|
|
|
|
|
|
N: Lucas De Marchi <lucas.de.marchi@gmail.com>
|
|
|
|
F: package/fswebcam/
|
|
|
|
|
2020-04-16 11:59:52 +02:00
|
|
|
N: Lubomir Rintel <lkundrak@v3.sk>
|
|
|
|
F: board/olpc/
|
2020-04-16 11:59:53 +02:00
|
|
|
F: configs/olpc_xo1_defconfig
|
2020-04-16 11:59:54 +02:00
|
|
|
F: configs/olpc_xo175_defconfig
|
2020-04-16 11:59:52 +02:00
|
|
|
|
2017-11-16 16:22:43 +01:00
|
|
|
N: Ludovic Desroches <ludovic.desroches@microchip.com>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: board/atmel/
|
2020-11-24 12:19:34 +01:00
|
|
|
F: board/microchip/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: configs/at91*
|
|
|
|
F: configs/atmel_*
|
2019-11-12 16:24:33 +01:00
|
|
|
F: configs/microchip_*
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/fb-test-app/
|
|
|
|
F: package/python-json-schema-validator/
|
|
|
|
F: package/python-keyring/
|
|
|
|
F: package/python-simplejson/
|
|
|
|
F: package/python-versiontools/
|
2022-04-23 00:36:09 +02:00
|
|
|
F: package/wilc-firmware/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2023-06-28 11:58:25 +02:00
|
|
|
N: Ludwig Kormann <ludwig.kormann@ict42.de>
|
|
|
|
F: board/in-circuit/
|
|
|
|
F: configs/icnova*
|
|
|
|
|
2020-03-04 17:14:27 +01:00
|
|
|
N: Maeva Manuel <maeva.manuel@oss.nxp.com>
|
|
|
|
F: board/freescale/imx8qmmek/
|
|
|
|
F: configs/freescale_imx8qmmek_defconfig
|
2020-03-20 17:31:54 +01:00
|
|
|
F: package/freescale-imx/imx-seco/
|
2020-03-04 17:14:27 +01:00
|
|
|
|
2018-01-01 17:39:32 +01:00
|
|
|
N: Mahyar Koshkouei <mahyar.koshkouei@gmail.com>
|
|
|
|
F: package/ffmpeg/
|
|
|
|
F: package/mpv/
|
|
|
|
F: package/rpi-firmware/
|
|
|
|
F: package/rpi-userland/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Marcin Bis <marcin@bis.org.pl>
|
|
|
|
F: package/bluez5_utils/
|
|
|
|
F: package/cc-tool/
|
|
|
|
F: package/ecryptfs-utils/
|
|
|
|
|
|
|
|
N: Marcin Niestroj <m.niestroj@grinn-global.com>
|
2017-01-30 19:36:17 +01:00
|
|
|
F: board/grinn/
|
2020-10-29 20:53:31 +01:00
|
|
|
F: board/orangepi/orangepi-zero-plus/
|
2023-09-18 08:47:11 +02:00
|
|
|
F: board/orangepi/orangepi-zero3/
|
2017-01-30 19:36:17 +01:00
|
|
|
F: configs/grinn_*
|
2020-10-29 20:53:31 +01:00
|
|
|
F: configs/orangepi_zero_plus_defconfig
|
2023-09-18 08:47:11 +02:00
|
|
|
F: configs/orangepi_zero3_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/argparse/
|
2017-06-23 12:37:57 +02:00
|
|
|
F: package/dt-utils/
|
2016-12-08 15:51:49 +01:00
|
|
|
F: package/easydbus/
|
2022-01-06 13:34:49 +01:00
|
|
|
F: package/gitlab-runner/
|
2017-06-20 17:16:31 +02:00
|
|
|
F: package/lua-flu/
|
2017-06-26 17:19:41 +02:00
|
|
|
F: package/lua-stdlib/
|
2017-05-29 16:32:05 +02:00
|
|
|
F: package/luaossl/
|
2019-05-10 10:35:04 +02:00
|
|
|
F: package/murata-cyw-fw/
|
2020-03-20 16:25:16 +01:00
|
|
|
F: package/netdata/
|
2020-04-30 15:11:03 +02:00
|
|
|
F: package/python-ansicolors/
|
2020-12-21 19:28:00 +01:00
|
|
|
F: package/python-bleak/
|
2022-11-03 11:21:01 +01:00
|
|
|
F: package/python-dbus-fast/
|
2021-05-09 10:09:50 +02:00
|
|
|
F: package/python-dbus-next/
|
2020-09-01 19:16:43 +02:00
|
|
|
F: package/python-iniconfig/
|
2020-09-09 12:05:48 +02:00
|
|
|
F: package/python-intelhex/
|
2020-04-30 15:11:29 +02:00
|
|
|
F: package/python-packaging/
|
2020-09-01 19:16:42 +02:00
|
|
|
F: package/python-pluggy/
|
2020-09-01 19:16:44 +02:00
|
|
|
F: package/python-pytest/
|
2020-12-22 17:39:15 +01:00
|
|
|
F: package/python-pytest-asyncio/
|
2020-12-23 17:12:23 +01:00
|
|
|
F: package/python-typing-extensions/
|
2020-09-09 11:50:38 +02:00
|
|
|
F: package/python-xmodem/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/rs485conf/
|
|
|
|
F: package/turbolua/
|
2022-11-03 11:21:01 +01:00
|
|
|
F: support/testing/tests/package/sample_python_dbus_fast.py
|
2021-05-09 10:09:51 +02:00
|
|
|
F: support/testing/tests/package/sample_python_dbus_next.py
|
2020-09-01 19:16:45 +02:00
|
|
|
F: support/testing/tests/package/sample_python_pytest.py
|
2020-12-22 17:39:16 +01:00
|
|
|
F: support/testing/tests/package/sample_python_pytest_asyncio.py
|
2020-03-20 16:25:17 +01:00
|
|
|
F: support/testing/tests/package/test_netdata.py
|
2021-05-09 10:09:51 +02:00
|
|
|
F: support/testing/tests/package/test_python_dbus_next.py
|
2020-09-01 19:16:45 +02:00
|
|
|
F: support/testing/tests/package/test_python_pytest.py
|
2020-12-22 17:39:16 +01:00
|
|
|
F: support/testing/tests/package/test_python_pytest_asyncio.py
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2017-11-04 21:36:44 +01:00
|
|
|
N: Marcus Folkesson <marcus.folkesson@gmail.com>
|
2023-11-01 16:22:05 +01:00
|
|
|
F: package/criu/
|
2023-01-23 09:35:08 +01:00
|
|
|
F: package/libcamera/
|
|
|
|
F: package/libcamera-apps/
|
2017-11-12 22:06:09 +01:00
|
|
|
F: package/libostree/
|
2018-01-17 10:50:14 +01:00
|
|
|
F: package/libselinux/
|
|
|
|
F: package/libsemanage/
|
|
|
|
F: package/libsepol/
|
|
|
|
F: package/selinux-python/
|
2017-12-02 17:58:44 +01:00
|
|
|
F: utils/config
|
2017-11-04 21:36:44 +01:00
|
|
|
F: utils/diffconfig
|
|
|
|
|
2024-02-05 18:25:10 +01:00
|
|
|
N: Marcus Hoffmann <bubu@bubu1.eu>
|
|
|
|
F: support/testing/tests/package/test_python_fastapi.py
|
|
|
|
F: support/testing/tests/package/sample_python_fastapi.py
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Marek Belisko <marek.belisko@open-nandra.com>
|
|
|
|
F: package/libatasmart/
|
|
|
|
F: package/polkit/
|
|
|
|
F: package/sg3_utils/
|
|
|
|
F: package/udisks/
|
|
|
|
|
2017-11-27 23:56:45 +01:00
|
|
|
N: Mario Lang <mlang@blind.guru>
|
|
|
|
F: package/brltty/
|
2017-12-18 11:18:09 +01:00
|
|
|
F: package/lynx/
|
2017-11-27 23:56:45 +01:00
|
|
|
|
2017-06-01 16:33:49 +02:00
|
|
|
N: Mario Rugiero <mrugiero@gmail.com>
|
|
|
|
F: package/ratpoison/
|
|
|
|
|
2019-11-07 20:38:04 +01:00
|
|
|
N: Mark Corbin <mark@dibsco.co.uk>
|
2018-09-12 12:22:54 +02:00
|
|
|
F: arch/arch.mk.riscv
|
|
|
|
F: arch/Config.in.riscv
|
2018-10-21 21:12:02 +02:00
|
|
|
F: board/qemu/riscv32-virt/
|
2018-09-12 12:22:56 +02:00
|
|
|
F: board/qemu/riscv64-virt/
|
2018-10-21 21:12:02 +02:00
|
|
|
F: configs/qemu_riscv32_virt_defconfig
|
2018-09-12 12:22:56 +02:00
|
|
|
F: configs/qemu_riscv64_virt_defconfig
|
2018-09-12 12:22:54 +02:00
|
|
|
|
2023-12-19 13:15:02 +01:00
|
|
|
N: Marleen Vos <marleen.vos@mind.be>
|
|
|
|
F: board/stmicroelectronics/common/stm32mp157/
|
|
|
|
F: configs/avenger96_defconfig
|
|
|
|
F: configs/stm32mp157a_dk1_defconfig
|
|
|
|
F: configs/stm32mp157c_dk2_defconfig
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Martin Bark <martin@barkynet.com>
|
2018-03-24 15:10:17 +01:00
|
|
|
F: board/raspberrypi/
|
|
|
|
F: configs/raspberrypi3_defconfig
|
2022-01-18 22:14:34 +01:00
|
|
|
F: package/brcmfmac_sdio-firmware-rpi/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/ca-certificates/
|
2017-06-04 21:53:56 +02:00
|
|
|
F: package/connman/
|
2017-03-05 00:48:28 +01:00
|
|
|
F: package/nodejs/
|
2018-03-24 15:10:17 +01:00
|
|
|
F: package/rpi-firmware/
|
2016-12-03 15:36:25 +01:00
|
|
|
F: package/tzdata/
|
|
|
|
F: package/zic/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2023-01-05 13:59:56 +01:00
|
|
|
N: Martin Hundebøll <martin@geanix.com>
|
|
|
|
F: package/python-apispec/
|
2023-01-05 14:00:00 +01:00
|
|
|
F: package/python-flask-smorest/
|
2023-01-05 13:59:58 +01:00
|
|
|
F: package/python-marshmallow/
|
2023-01-05 13:59:59 +01:00
|
|
|
F: package/python-marshmallow-sqlalchemy/
|
2023-01-05 13:59:57 +01:00
|
|
|
F: package/python-webargs/
|
2023-01-05 13:59:56 +01:00
|
|
|
|
2017-04-29 15:46:24 +02:00
|
|
|
N: Martin Kepplinger <martink@posteo.de>
|
|
|
|
F: package/tslib/
|
|
|
|
F: package/x11r7/xdriver_xf86-input-tslib/
|
|
|
|
F: package/x11vnc/
|
|
|
|
|
2022-08-03 17:42:48 +02:00
|
|
|
N: Martin Povišer <povik+lin@cutebit.org>
|
|
|
|
F: package/python-construct/
|
|
|
|
F: support/testing/tests/package/sample_python_construct.py
|
|
|
|
F: support/testing/tests/package/test_python_construct.py
|
|
|
|
|
2019-08-11 14:07:36 +02:00
|
|
|
N: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
|
|
F: board/arm/foundation-v8/
|
|
|
|
F: configs/arm_foundationv8_defconfig
|
|
|
|
|
2019-09-19 18:53:59 +02:00
|
|
|
N: Mathieu Audat <mathieuaudat@gmail.com>
|
2016-09-21 12:19:23 +02:00
|
|
|
F: board/technologic/ts4900/
|
|
|
|
F: configs/ts4900_defconfig
|
|
|
|
F: package/ts4900-fpga/
|
|
|
|
|
2024-01-26 03:49:14 +01:00
|
|
|
N: Matt Silva <dev@matt-silva.com>
|
|
|
|
F: package/rlwrap/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Mauro Condarelli <mc5686@mclink.it>
|
|
|
|
F: package/mc/
|
|
|
|
F: package/python-autobahn/
|
|
|
|
F: package/python-cbor/
|
|
|
|
F: package/python-characteristic/
|
|
|
|
F: package/python-click/
|
|
|
|
F: package/python-lmdb/
|
|
|
|
F: package/python-mistune/
|
|
|
|
F: package/python-netaddr/
|
|
|
|
F: package/python-pygments/
|
|
|
|
F: package/python-pynacl/
|
|
|
|
F: package/python-pytrie/
|
|
|
|
F: package/python-service-identity/
|
|
|
|
F: package/python-setproctitle/
|
|
|
|
F: package/python-shutilwhich/
|
|
|
|
F: package/python-treq/
|
|
|
|
F: package/python-txaio/
|
|
|
|
F: package/python-ujson/
|
|
|
|
F: package/python-wsaccel/
|
|
|
|
|
2023-08-20 11:58:33 +02:00
|
|
|
N: Maksim Kiselev <bigunclemax@gmail.com>
|
|
|
|
F: package/ledmon/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Max Filippov <jcmvbkbc@gmail.com>
|
|
|
|
F: arch/Config.in.xtensa
|
|
|
|
|
2020-10-05 12:19:51 +02:00
|
|
|
N: Maxim Kochetkov <fido_max@inbox.ru>
|
2021-08-10 12:24:40 +02:00
|
|
|
F: package/libgeos/
|
2021-04-28 06:12:14 +02:00
|
|
|
F: package/libosmium/
|
2021-04-28 06:12:15 +02:00
|
|
|
F: package/osm2pgsql/
|
2021-04-14 06:35:45 +02:00
|
|
|
F: package/postgis/
|
2023-01-24 06:47:47 +01:00
|
|
|
F: package/postgresql/
|
2021-04-15 17:03:54 +02:00
|
|
|
F: package/protozero/
|
2020-10-05 12:19:51 +02:00
|
|
|
F: package/timescaledb/
|
|
|
|
|
2023-10-24 16:42:53 +02:00
|
|
|
N: Maxime Chevallier <maxime.chevallier@bootlin.com>
|
|
|
|
F: package/libtraceevent/
|
2023-10-24 16:42:54 +02:00
|
|
|
F: package/libtracefs
|
2023-10-24 16:42:55 +02:00
|
|
|
F: package/linux-tools/linux-tool-rtla.mk.in
|
2023-10-24 16:42:53 +02:00
|
|
|
|
2018-03-15 22:07:49 +01:00
|
|
|
N: Michael Durrant <mdurrant@arcturusnetworks.com>
|
|
|
|
F: board/arcturus/
|
|
|
|
F: configs/arcturus_ucp1020_defconfig
|
|
|
|
F: configs/arcturus_ucls1012a_defconfig
|
|
|
|
|
2020-02-27 11:30:55 +01:00
|
|
|
N: Michael Fischer <mf@go-sys.de>
|
|
|
|
F: package/gnuplot/
|
|
|
|
F: package/sdl2/
|
|
|
|
|
2020-08-16 23:44:16 +02:00
|
|
|
N: Michael Nosthoff <buildroot@heine.tech>
|
2022-12-25 22:13:54 +01:00
|
|
|
F: package/boost/
|
2022-10-25 21:01:09 +02:00
|
|
|
F: package/catch2/
|
2022-12-25 22:13:54 +01:00
|
|
|
F: package/fmt/
|
2020-10-21 18:50:04 +02:00
|
|
|
F: package/grpc/
|
|
|
|
F: package/gtest/
|
2022-12-25 22:13:54 +01:00
|
|
|
F: package/json-for-modern-cpp/
|
2020-10-21 18:50:04 +02:00
|
|
|
F: package/libabseil-cpp/
|
2022-01-10 19:51:40 +01:00
|
|
|
F: package/networkd-dispatcher/
|
2020-10-21 18:50:04 +02:00
|
|
|
F: package/protobuf/
|
2020-08-16 23:44:16 +02:00
|
|
|
F: package/re2/
|
2022-12-25 22:13:54 +01:00
|
|
|
F: package/spdlog/
|
2020-08-16 23:44:16 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Michael Trimarchi <michael@amarulasolutions.com>
|
2023-01-16 22:55:15 +01:00
|
|
|
F: board/bsh/
|
|
|
|
F: configs/imx8mn_bsh_smm_s2_defconfig
|
2023-01-16 22:55:16 +01:00
|
|
|
F: configs/imx8mn_bsh_smm_s2_pro_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python-spidev/
|
|
|
|
|
2019-11-27 10:40:55 +01:00
|
|
|
N: Michael Vetter <jubalh@iodoru.org>
|
|
|
|
F: package/jasper/
|
2019-12-02 12:22:44 +01:00
|
|
|
F: package/libstrophe/
|
2019-11-27 10:40:55 +01:00
|
|
|
|
2019-10-11 14:40:41 +02:00
|
|
|
N: Michael Walle <michael@walle.cc>
|
2020-06-05 00:11:22 +02:00
|
|
|
F: board/kontron/smarc-sal28/
|
|
|
|
F: configs/kontron_smarc_sal28_defconfig
|
2019-10-11 14:40:41 +02:00
|
|
|
F: package/libavl/
|
2021-01-12 11:51:53 +01:00
|
|
|
F: package/rcw-smarc-sal28/
|
2019-10-11 14:40:41 +02:00
|
|
|
|
2017-08-02 20:03:02 +02:00
|
|
|
N: Michał Łyszczek <michal.lyszczek@bofc.pl>
|
|
|
|
F: board/altera/socrates_cyclone5/
|
2020-12-15 01:49:03 +01:00
|
|
|
F: board/pine64/rock64
|
|
|
|
F: configs/rock64_defconfig
|
2017-08-02 20:03:02 +02:00
|
|
|
F: configs/socrates_cyclone5_defconfig
|
2019-08-04 14:14:18 +02:00
|
|
|
F: package/netifrc/
|
2019-05-12 21:55:38 +02:00
|
|
|
F: package/openrc/
|
2019-05-12 21:55:39 +02:00
|
|
|
F: package/skeleton-init-openrc/
|
2017-08-02 20:03:02 +02:00
|
|
|
|
2019-03-05 23:37:06 +01:00
|
|
|
N: Michel Stempin <michel.stempin@wanadoo.fr>
|
2023-10-29 21:58:36 +01:00
|
|
|
F: board/sipeed/licheepi_zero/
|
|
|
|
F: configs/sipeed_licheepi_zero_defconfig
|
2019-03-05 23:37:06 +01:00
|
|
|
|
2020-11-19 10:08:52 +01:00
|
|
|
N: Mike Frampton <mikeframpo@gmail.com>
|
|
|
|
F: package/qcom-db410c-firmware/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Mikhail Boiko <mikhailboiko85@gmail.com>
|
|
|
|
F: package/libfribidi/
|
|
|
|
|
2020-02-11 14:46:52 +01:00
|
|
|
N: Mircea Gliga <gliga.mircea@gmail.com>
|
|
|
|
F: package/mbuffer/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Murat Demirten <mdemirten@yh.com.tr>
|
|
|
|
F: package/jpeg-turbo/
|
|
|
|
F: package/libgeotiff/
|
|
|
|
|
2022-10-29 10:02:29 +02:00
|
|
|
N: Nasser Afshin <afshin.nasser@gmail.com>
|
|
|
|
F: package/python-pycrate/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Nathaniel Roach <nroach44@gmail.com>
|
|
|
|
F: package/bandwidthd/
|
|
|
|
F: package/libgudev/
|
|
|
|
|
|
|
|
N: Naumann Andreas <ANaumann@ultratronik.de>
|
|
|
|
F: package/evemu/
|
|
|
|
F: package/libevdev/
|
2020-03-09 23:12:40 +01:00
|
|
|
F: package/pkg-qmake.mk
|
2021-08-04 16:02:11 +02:00
|
|
|
F: package/qt5/qt5opcua/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2022-03-23 08:20:29 +01:00
|
|
|
N: Neal Frager <neal.frager@amd.com>
|
2022-11-25 15:08:00 +01:00
|
|
|
F: board/versal/
|
2022-05-05 17:54:24 +02:00
|
|
|
F: board/zynq/
|
2022-02-11 15:44:02 +01:00
|
|
|
F: board/zynqmp/
|
2022-11-25 15:08:00 +01:00
|
|
|
F: configs/versal_vck190_defconfig
|
2023-10-18 13:13:57 +02:00
|
|
|
F: configs/zynq_zc702_defconfig
|
2022-05-05 17:54:24 +02:00
|
|
|
F: configs/zynq_zc706_defconfig
|
2023-12-13 14:48:49 +01:00
|
|
|
F: configs/zynqmp_kria_kd240_defconfig
|
2023-10-26 13:50:34 +02:00
|
|
|
F: configs/zynqmp_kria_kr260_defconfig
|
2023-08-03 07:03:39 +02:00
|
|
|
F: configs/zynqmp_kria_kv260_defconfig
|
2022-02-11 15:44:02 +01:00
|
|
|
F: configs/zynqmp_zcu102_defconfig
|
2023-12-08 09:22:12 +01:00
|
|
|
F: configs/zynqmp_zcu104_defconfig
|
2022-05-05 17:54:24 +02:00
|
|
|
F: configs/zynqmp_zcu106_defconfig
|
2024-01-31 12:22:14 +01:00
|
|
|
F: package/binutils-bare-metal/
|
2022-10-24 23:14:46 +02:00
|
|
|
F: package/bootgen/
|
2024-01-31 12:22:15 +01:00
|
|
|
F: package/gcc-bare-metal/
|
2024-01-31 12:22:16 +01:00
|
|
|
F: package/newlib-bare-metal/
|
2022-11-25 15:07:59 +01:00
|
|
|
F: package/versal-firmware/
|
2024-01-31 12:22:13 +01:00
|
|
|
F: toolchain/toolchain-bare-metal-buildroot/
|
2022-02-11 15:44:02 +01:00
|
|
|
|
2019-05-01 16:12:34 +02:00
|
|
|
N: Nicola Di Lieto <nicola.dilieto@gmail.com>
|
|
|
|
F: package/uacme/
|
|
|
|
|
2019-08-11 14:07:34 +02:00
|
|
|
N: Nicholas Sielicki <sielicki@yandex.com>
|
|
|
|
F: board/intel/galileo/
|
|
|
|
F: configs/galileo_defconfig
|
|
|
|
|
2019-10-25 20:22:49 +02:00
|
|
|
N: Nicolas Carrier <nicolas.carrier@orolia.com>
|
2021-06-21 23:01:06 +02:00
|
|
|
F: package/bmap-tools/
|
2023-08-01 23:11:27 +02:00
|
|
|
F: package/composer/
|
2021-10-04 14:43:14 +02:00
|
|
|
F: package/libdbi/
|
2021-10-04 14:43:15 +02:00
|
|
|
F: package/libdbi-drivers/
|
2021-10-04 10:38:19 +02:00
|
|
|
F: package/lua-augeas/
|
2021-10-18 15:25:31 +02:00
|
|
|
F: package/modsecurity2/
|
2021-10-11 13:07:56 +02:00
|
|
|
F: package/php-apcu/
|
2021-10-14 11:39:51 +02:00
|
|
|
F: package/php-lua/
|
2021-10-14 14:13:50 +02:00
|
|
|
F: package/php-pam/
|
2021-10-11 10:54:49 +02:00
|
|
|
F: package/php-pecl-dbus/
|
2019-10-25 20:22:49 +02:00
|
|
|
F: package/php-xdebug/
|
2021-06-21 22:34:54 +02:00
|
|
|
F: package/python-augeas/
|
2021-09-19 14:45:16 +02:00
|
|
|
F: package/python-flask-expects-json/
|
2021-09-19 14:45:17 +02:00
|
|
|
F: package/python-git/
|
2021-11-02 23:21:26 +01:00
|
|
|
F: package/python-unittest-xml-reporting/
|
2021-06-21 23:01:09 +02:00
|
|
|
F: support/testing/tests/package/sample_bmap_tools.sh
|
2021-06-21 22:34:55 +02:00
|
|
|
F: support/testing/tests/package/sample_python_augeas.py
|
2021-09-19 14:45:16 +02:00
|
|
|
F: support/testing/tests/package/sample_python_flask_expects_json.py
|
2021-09-19 14:45:17 +02:00
|
|
|
F: support/testing/tests/package/sample_python_git.py
|
2021-11-02 23:21:26 +01:00
|
|
|
F: support/testing/tests/package/sample_python_unittest_xml_reporting.py
|
2021-06-21 23:01:09 +02:00
|
|
|
F: support/testing/tests/package/test_bmap_tools.py
|
2021-12-17 22:45:35 +01:00
|
|
|
F: support/testing/tests/package/test_lua_augeas.py
|
2021-10-11 13:07:56 +02:00
|
|
|
F: support/testing/tests/package/test_php_apcu.py
|
2021-10-11 10:54:49 +02:00
|
|
|
F: support/testing/tests/package/test_php_pecl_dbus.py
|
2021-10-14 11:39:51 +02:00
|
|
|
F: support/testing/tests/package/test_php_lua.py
|
2021-10-14 14:13:50 +02:00
|
|
|
F: support/testing/tests/package/test_php_pam.py
|
2021-06-21 22:34:55 +02:00
|
|
|
F: support/testing/tests/package/test_python_augeas.py
|
2021-09-19 14:45:16 +02:00
|
|
|
F: support/testing/tests/package/test_python_flask_expects_json.py
|
2021-09-19 14:45:17 +02:00
|
|
|
F: support/testing/tests/package/test_python_git.py
|
2021-11-02 23:21:26 +01:00
|
|
|
F: support/testing/tests/package/test_python_unittest_xml_reporting.py
|
2019-10-25 20:22:49 +02:00
|
|
|
|
2018-02-14 12:13:51 +01:00
|
|
|
N: Nicolas Cavallari <nicolas.cavallari@green-communications.fr>
|
|
|
|
F: package/libgit2/
|
|
|
|
|
2021-03-19 11:33:03 +01:00
|
|
|
N: Nicolas Serafini <nicolas.serafini@ik.me>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/exiv2/
|
2019-10-24 12:27:22 +02:00
|
|
|
F: package/ofono/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2022-05-30 05:38:29 +02:00
|
|
|
N: Niklas Cassel <niklas.cassel@wdc.com>
|
|
|
|
F: configs/qemu_riscv64_nommu_virt_defconfig
|
|
|
|
|
2018-09-08 02:24:52 +02:00
|
|
|
N: Nikolay Dimitrov <nikolay.dimitrov@retrohub.org>
|
|
|
|
F: board/embest/riotboard/
|
|
|
|
F: configs/riotboard_defconfig
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Nimai Mahajan <nimaim@gmail.com>
|
|
|
|
F: package/libucl/
|
|
|
|
|
|
|
|
N: Noé Rubinstein <noe.rubinstein@gmail.com>
|
|
|
|
F: package/tpm-tools/
|
|
|
|
F: package/trousers/
|
|
|
|
|
2018-01-02 18:39:25 +01:00
|
|
|
N: Norbert Lange <nolange79@gmail.com>
|
package/dbus-broker: new package
dbus-broker is an alternate implementation of a dbus daemon. It can be
used as a drop-in replacement for the system bus daemon, as well as the
session bus daemon.
dbus-broker is (basically, and as far as we're concerned in Buildroot)
split in two components:
- the actual message bus daemon, that relays messages across clients
- a launcher, which is responsible for setting various aspects of the
bus, like setting the policy et al. and opening the socket(s) the
message bus daemon will have to listen on...
The launcher can only be used in a systemd setup (it makes heavy use of
systemd facilities), while the message bus is generic. However, the
message bus daemon is useless without a launcher. There does not exist a
non-systemd launcher, which makes dbus-broker actually a systemd-only
package; this can be revisited when/if a non-systemd launcher appears.
Note, however, that libdbus is not provided by dbus-broker. People who
want to use dbus-broker as the bus daemon, and need libdbus, will have
to enable both.
If only original dbus is enabled, things stay as they are now. This is
for the moment still the default, though we should change that once
dbus-broker has proven to work.
If only dbus-broker is enabled, it installs the necessary socket
activation units and dbus configuration files. The daemon is not
launched at boot time; instead it is socket-activated when a client
connects to the bus the first time.
If both original dbus and dbus-broker are enabled, we have a conflict
with the configuration files, the socket activation file. Also, original
dbus activates the daemon as a service in multi-user.target.wants, so it
is not socket-activated and dbus-broker would never get the opportunity
to start.
Therefore, original dbus is updated to remove the conflicting files and
the activation of dbus-daemon. Since dbus-broker installs some of the
same file that original dbus removes, we have to add a dependency to
make sure that the ones installed by dbus-broker aren't removed.
If both are installed, it is still possible to revert back to using
original dbus as system bus:
- at build-time: by calling systemctl enable/disable from a
post-build script (preferred), or by providing drop-in units
or presets in an overlay (less preferred) or custom skeleton
(as a last resort),
- at runtime (on a RW filesystem): by calling systemctl
enable/disable
Note about the user: the path to the system bus socket is a so-called
"well-known location": it is expected to be there, by spec. Moving it
elsewhere is going to break existing programs. So, the user running the
system bus daemon must be able to create that socket.
As we may have two packages providing a system bus daemon, they have to
be both able to create the socket, and thus must both be able to write
in the directory containing the socket. And since they can be switched
at runtime, they must be running as the same user.
We can't just reference the original dbus user, so we duplicate the
entry. What is important, is that the user be named 'dbus', as that's
what we use in both cases.
If both original dbus and dbus-broker are selected, the dbus user is
included twice, but the specifications are identical so that's fine.
mkusers will create the user only once.
Finally, the licensing terms are pretty trivial for dbus-broker itself,
but it makes use of third-party code that it inherits as git submodules
(that are bundled in the release archive). Thus the licensing is a bit
convoluted... The third-party codes claim to be licensed as "Apache-2.0
and LGP-2.1+" in their AUTHORS files, but at the same time claim
"**Apache-2.0** OR **LGPL-2.1-or-later**" in their README files. The
individual source files (that are used) do not seem to have any
licensing header to clarify the situation. So we represent the situation
with "Apache-2.0 and/or LGPL-2.1+".
Signed-off-by: Norbert Lange <nolange79@gmail.com>
[yann.morin.1998@free.fr:
- don't select systemd; depend on it instead
- only install config files and systemd units without original dbus
- install a user to run the message bus as
- fix licensing info
- entirely reword and extend the commit log
- add myself to DEVELOPERS as well
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
[Arnout:
- Use dbus-broker as system bus if both are selected.
- Remove conflicting files from dbus installation.
- Simplify symbolic link creation.
- Add comment to remind update of session.conf and system.conf.
]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-01-09 23:16:47 +01:00
|
|
|
F: package/dbus-broker/
|
2020-09-15 11:51:37 +02:00
|
|
|
F: package/systemd/
|
2018-01-02 18:39:25 +01:00
|
|
|
F: package/tcf-agent/
|
|
|
|
|
2022-02-25 10:25:09 +01:00
|
|
|
N: Yu Chien Peter Lin <peterlin@andestech.com>
|
2019-04-16 09:25:43 +02:00
|
|
|
F: board/andes
|
2022-02-25 10:25:09 +01:00
|
|
|
F: configs/andes_ae350_45_defconfig
|
2019-04-16 09:25:42 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Olaf Rempel <razzor@kopf-tisch.de>
|
|
|
|
F: package/ctorrent/
|
|
|
|
|
2018-03-15 22:07:49 +01:00
|
|
|
N: Oleksandr Zhadan <oleks@arcturusnetworks.com>
|
|
|
|
F: board/arcturus/
|
|
|
|
F: configs/arcturus_ucp1020_defconfig
|
|
|
|
F: configs/arcturus_ucls1012a_defconfig
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Oli Vogt <oli.vogt.pub01@gmail.com>
|
|
|
|
F: package/python-django/
|
|
|
|
F: package/python-flup/
|
|
|
|
|
2016-10-12 10:06:32 +02:00
|
|
|
N: Olivier Matz <olivier.matz@6wind.com>
|
|
|
|
F: package/python-pyelftools/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Olivier Schonken <olivier.schonken@gmail.com>
|
2017-11-01 14:03:46 +01:00
|
|
|
F: package/cups/
|
2017-10-23 15:26:11 +02:00
|
|
|
F: package/cups-filters/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/ijs/
|
|
|
|
F: package/poppler/
|
|
|
|
F: package/qpdf/
|
|
|
|
F: package/openjpeg/
|
|
|
|
|
|
|
|
N: Olivier Singla <olivier.singla@gmail.com>
|
|
|
|
F: package/shellinabox/
|
|
|
|
|
|
|
|
N: Parnell Springmeyer <parnell@digitalmentat.com>
|
|
|
|
F: package/scrypt/
|
|
|
|
|
2019-11-21 09:12:23 +01:00
|
|
|
N: Pascal de Bruijn <p.debruijn@unilogic.nl>
|
|
|
|
F: package/libargon2/
|
package/linux-tools: add hyperv integration services
The hyperv integration services offer convenience features for guest
operating systems running on the microsoft hyperv virtualization
platform. They roughly are for HyperV what openvmtools are for VMWare.
The installed binary names are derived from what seems common in large
distros like RedHat:
linux kernel source name -> installed binary name
hv_vss_daemon -> hypervvssd
hv_kvp_daemon -> hypervkvpd
hv_fcopy_daemon -> hypervfcopyd
Each tool was introduced at different points in the kernel history, so
we need to check each of them.
We provide a single init script that is responsible for starting all
enabled programs. The global status will be the status of the last
program to fail to start, or empty (i.e. success) if they all started
successfuly.
However, we provide one systemd unit per program, because it is not easy
to use a single unit to start (and monitor) more than one executable.
Additionally, we do not provide a template that is filled at tinstall
time either, because it does not gain much (three simple units vs. a
template and some replacement code in the .mk).
Finally, the key-value daemon uses a few helper scripts to get/set the
network config. All are optional (their presence is checked before
running them), but one, hv_set_ifconfig. However, it is not strictly
speaking required either, so we just symlink it to /bin/true to avoid
any warning at runtime. Providing actual helpers is left to the end
user, to adapt to their own environment.
Signed-off-by: Pascal de Bruijn <p.debruijn@unilogic.nl>
[yann.morin.1998@free.fr:
- aggregate all three tools in a single sub-package
- introduce the main HV option, use a sub-option for each tool
- aggregate the three init scripts into one
- don't install the helpers; symlink the mandatory one
- don't create symlinks for systemd units (systemctl preset-all does
it for us now)
- expand commit log
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-01-03 20:57:05 +01:00
|
|
|
F: package/linux-tools/S10hyperv
|
|
|
|
F: package/linux-tools/hyperv*.service
|
|
|
|
F: package/linux-tools/linux-tool-hv.mk.in
|
2019-11-21 09:12:23 +01:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Pascal Huerst <pascal.huerst@gmail.com>
|
|
|
|
F: package/google-breakpad/
|
|
|
|
|
|
|
|
N: Patrick Gerber <kpa_info@yahoo.fr>
|
|
|
|
F: package/yavta/
|
|
|
|
|
2019-11-20 14:39:52 +01:00
|
|
|
N: Patrick Havelange <patrick.havelange@essensium.com>
|
|
|
|
F: support/testing/tests/package/test_lxc.py
|
|
|
|
F: support/testing/tests/package/test_lxc/
|
|
|
|
|
2024-01-08 23:25:51 +01:00
|
|
|
N: Patrick Oppenlander <patrick.oppenlander@gmail.com>
|
|
|
|
F: package/minisign/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Paul Cercueil <paul@crapouillou.net>
|
2017-12-13 08:07:43 +01:00
|
|
|
F: package/libiio/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/lightning/
|
2019-11-13 12:21:36 +01:00
|
|
|
F: package/umtprd/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
|
|
|
N: Pedro Aguilar <paguilar@paguilar.org>
|
2022-02-06 10:20:48 +01:00
|
|
|
F: package/bdwgc/
|
|
|
|
F: package/guile/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libunistring/
|
|
|
|
|
|
|
|
N: Peter Korsgaard <peter@korsgaard.com>
|
2021-02-07 22:52:27 +01:00
|
|
|
F: board/arrow/avenger96/
|
2019-09-23 16:46:29 +02:00
|
|
|
F: board/beagleboneai/
|
2018-03-31 09:22:51 +02:00
|
|
|
F: board/minnowboard/
|
2021-11-06 18:29:55 +01:00
|
|
|
F: board/nezha/
|
2019-09-14 07:56:20 +02:00
|
|
|
F: board/librecomputer/lafrite/
|
2018-03-31 09:22:51 +02:00
|
|
|
F: board/nexbox/a95x/
|
|
|
|
F: board/openblocks/a6/
|
2016-09-21 12:19:23 +02:00
|
|
|
F: board/orangepi/
|
2018-03-31 09:22:51 +02:00
|
|
|
F: board/pandaboard/
|
|
|
|
F: board/roseapplepi/
|
2022-10-08 20:40:16 +02:00
|
|
|
F: board/visionfive/
|
2019-01-11 11:01:11 +01:00
|
|
|
F: boot/shim/
|
2021-02-07 22:52:27 +01:00
|
|
|
F: configs/avenger96_defconfig
|
2019-09-23 16:46:29 +02:00
|
|
|
F: configs/beagleboneai_defconfig
|
2019-09-14 07:56:20 +02:00
|
|
|
F: configs/lafrite_defconfig
|
2018-03-31 09:22:51 +02:00
|
|
|
F: configs/minnowboard_max_defconfig
|
|
|
|
F: configs/nexbox_a95x_defconfig
|
2021-11-06 18:29:55 +01:00
|
|
|
F: configs/nezha_defconfig
|
2018-03-31 09:22:51 +02:00
|
|
|
F: configs/openblocks_a6_defconfig
|
2016-12-13 21:52:36 +01:00
|
|
|
F: configs/orangepi_pc_defconfig
|
2019-05-03 16:25:21 +02:00
|
|
|
F: configs/orangepi_r1_defconfig
|
2018-03-31 09:22:51 +02:00
|
|
|
F: configs/pandaboard_defconfig
|
|
|
|
F: configs/roseapplepi_defconfig
|
|
|
|
F: configs/sheevaplug_defconfig
|
2022-10-08 20:40:16 +02:00
|
|
|
F: configs/visionfive_defconfig
|
2019-04-02 15:21:42 +02:00
|
|
|
F: package/bats-core/
|
2023-06-14 20:53:21 +02:00
|
|
|
F: package/dfu-programmer/
|
2018-03-09 20:17:01 +01:00
|
|
|
F: package/docker-compose/
|
2017-09-30 22:07:43 +02:00
|
|
|
F: package/dump1090/
|
2019-05-21 22:40:14 +02:00
|
|
|
F: package/fatcat/
|
2017-09-13 08:21:51 +02:00
|
|
|
F: package/fscryptctl/
|
2019-05-14 11:04:45 +02:00
|
|
|
F: package/ifmetric/
|
2017-03-20 17:00:06 +01:00
|
|
|
F: package/jo/
|
2017-10-03 17:29:57 +02:00
|
|
|
F: package/jose/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libfastjson/
|
2017-10-12 21:34:29 +02:00
|
|
|
F: package/luksmeta/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/lzop/
|
2017-02-26 21:44:27 +01:00
|
|
|
F: package/memtool/
|
2016-09-21 12:19:23 +02:00
|
|
|
F: package/mosquitto/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python-alsaaudio/
|
2018-03-09 20:16:56 +01:00
|
|
|
F: package/python-cached-property/
|
2018-03-09 20:16:55 +01:00
|
|
|
F: package/python-docker/
|
2018-03-09 20:16:58 +01:00
|
|
|
F: package/python-dockerpty/
|
2018-03-09 20:16:52 +01:00
|
|
|
F: package/python-docker-pycreds/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python-psutil/
|
2018-05-23 13:32:37 +02:00
|
|
|
F: package/python-request-id/
|
2018-08-07 11:38:39 +02:00
|
|
|
F: package/python-semver/
|
2018-03-09 20:16:57 +01:00
|
|
|
F: package/python-texttable/
|
2018-06-15 14:54:55 +02:00
|
|
|
F: package/python-validators/
|
2018-05-23 13:32:36 +02:00
|
|
|
F: package/python-webob/
|
2018-03-09 20:16:53 +01:00
|
|
|
F: package/python-websocket-client/
|
2018-09-26 09:52:05 +02:00
|
|
|
F: package/sedutil/
|
2019-04-08 13:56:47 +02:00
|
|
|
F: package/tpm2-totp/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/triggerhappy/
|
2020-01-09 10:16:19 +01:00
|
|
|
F: package/wireguard-linux-compat/
|
2020-01-09 10:16:18 +01:00
|
|
|
F: package/wireguard-tools/
|
2019-10-26 16:05:25 +02:00
|
|
|
F: support/testing/tests/package/test_docker_compose.py
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2023-01-06 22:08:25 +01:00
|
|
|
N: Peter Seiderer <ps.report@gmx.net>
|
|
|
|
F: package/dotconf/
|
2023-02-11 17:34:22 +01:00
|
|
|
F: package/fft-eval/
|
2023-07-13 09:38:50 +02:00
|
|
|
F: package/python-blinker/
|
2023-01-06 22:08:27 +01:00
|
|
|
F: package/qt5/qt5speech/
|
2023-01-06 22:08:26 +01:00
|
|
|
F: package/speechd/
|
2023-01-06 22:08:25 +01:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Peter Thompson <peter.macleod.thompson@gmail.com>
|
|
|
|
F: package/sdl2_gfx/
|
|
|
|
F: package/sdl2_image/
|
|
|
|
F: package/sdl2_ttf/
|
|
|
|
|
2017-06-07 20:44:29 +02:00
|
|
|
N: Petr Kulhavy <brain@jikos.cz>
|
|
|
|
F: package/linuxptp/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Petr Vorel <petr.vorel@gmail.com>
|
2019-10-29 01:34:36 +01:00
|
|
|
F: package/ima-evm-utils/
|
2017-11-15 12:57:50 +01:00
|
|
|
F: package/iproute2/
|
|
|
|
F: package/iputils/
|
2021-03-25 18:58:31 +01:00
|
|
|
F: package/libqrtr-glib/
|
2020-01-17 06:45:02 +01:00
|
|
|
F: package/libtirpc/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/linux-backports/
|
2017-01-18 12:24:19 +01:00
|
|
|
F: package/ltp-testsuite/
|
2020-01-17 06:45:02 +01:00
|
|
|
F: package/nfs-utils/
|
2021-07-25 22:17:36 +02:00
|
|
|
F: package/rpcbind/
|
2018-05-09 11:07:33 +02:00
|
|
|
F: support/kconfig/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
|
|
|
N: Phil Eichinger <phil.eichinger@gmail.com>
|
|
|
|
F: package/libqrencode/
|
|
|
|
F: package/psplash/
|
|
|
|
F: package/sispmctl/
|
|
|
|
F: package/zsh/
|
|
|
|
|
2018-11-23 19:14:25 +01:00
|
|
|
N: Philipp Richter <richterphilipp.pops@gmail.com>
|
|
|
|
F: package/libtorrent-rasterbar/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Philippe Proulx <eeppeliteloop@gmail.com>
|
package/babeltrace2: new package
Babeltrace 2 is a trace manipulation toolkit.
The Babeltrace 2 project offers a library with a C API, Python 3
bindings, and a command-line tool which makes it very easy for mere
mortals to view, convert, transform, and analyze traces.
See <https://babeltrace.org/> for more details.
Babeltrace 2 is a major update of Babeltrace 1 (Buildroot package
`lttng-babeltrace`). Both projects are coinstallable. Except for the
command-line tool (named `babeltrace2`), the Babeltrace 2 project is not
backward compatible with Babeltrace 1.
I'm naming this package `babeltrace2` instead of `lttng-babeltrace2`
because, although it can read LTTng traces, the two projects are
independent. All major distributions use `babeltrace2` as the
Babeltrace 2 package's name.
I'm keeping the `lttng-babeltrace` package because, as of this date, we
still add bug and security fixes from time to time, therefore the
project is not in EOL stage. Some external, custom packages could still
depend on the Babeltrace 1 library, for example.
As with `lttng-babeltrace`, you can build and install the host version
of Babeltrace 2 for the workflow where you trace the target, download
the resulting trace (or receive it during the tracing process), and then
read and analyze it with Babeltrace 2.
If you enable the `elfutils` package (`BR2_PACKAGE_ELFUTILS`), then
support for Babeltrace 2's debugging information filter component
class is enabled.
Tested with glibc, uClibc-ng, and musl.
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-06-23 22:01:53 +02:00
|
|
|
F: package/babeltrace2/
|
2016-11-03 00:23:35 +01:00
|
|
|
F: package/lttng-babeltrace/
|
|
|
|
F: package/lttng-libust/
|
|
|
|
F: package/lttng-modules/
|
|
|
|
F: package/lttng-tools/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python-ipython/
|
2016-11-03 00:23:35 +01:00
|
|
|
F: package/liburcu/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2020-01-03 16:16:57 +01:00
|
|
|
N: Philippe Reynes <philippe.reynes@softathome.com>
|
|
|
|
F: package/ibm-sw-tpm2/
|
|
|
|
|
2018-02-15 17:50:37 +01:00
|
|
|
N: Pierre Crokaert <pct@crookies.net>
|
|
|
|
F: board/hardkernel/odroidxu4/
|
|
|
|
F: configs/odroidxu4_defconfig
|
|
|
|
|
2018-07-05 09:35:23 +02:00
|
|
|
N: Pierre Ducroquet <pinaraf@pinaraf.info>
|
|
|
|
F: package/kf5/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Pierre Floury <pierre.floury@gmail.com>
|
|
|
|
F: package/trace-cmd/
|
|
|
|
|
2020-11-17 22:22:08 +01:00
|
|
|
N: Pierre-Jean Texier <texier.pj2@gmail.com>
|
2019-09-15 15:02:04 +02:00
|
|
|
F: package/fping/
|
2019-08-12 18:09:30 +02:00
|
|
|
F: package/genimage/
|
2019-09-10 21:07:11 +02:00
|
|
|
F: package/haveged/
|
2019-11-27 17:36:05 +01:00
|
|
|
F: package/ipset/
|
2019-08-12 18:09:30 +02:00
|
|
|
F: package/libarchive/
|
2019-08-02 22:42:04 +02:00
|
|
|
F: package/libevent/
|
2019-05-05 21:52:27 +02:00
|
|
|
F: package/libubootenv/
|
2019-08-12 18:09:30 +02:00
|
|
|
F: package/libxml2/
|
2019-10-13 18:11:52 +02:00
|
|
|
F: package/mongoose/
|
2019-09-16 23:13:41 +02:00
|
|
|
F: package/mxml/
|
2020-01-18 13:16:53 +01:00
|
|
|
F: package/numactl/
|
2019-09-17 19:51:31 +02:00
|
|
|
F: package/python-modbus-tk/
|
2019-06-20 20:38:13 +02:00
|
|
|
F: package/python-periphery/
|
2019-11-12 22:22:29 +01:00
|
|
|
F: package/raspi-gpio/
|
2019-10-20 15:53:43 +02:00
|
|
|
F: package/sbc/
|
2019-07-11 22:43:26 +02:00
|
|
|
F: package/stunnel/
|
2019-09-04 19:10:55 +02:00
|
|
|
F: package/tree/
|
2019-05-05 21:52:27 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Pieter De Gendt <pieter.degendt@gmail.com>
|
|
|
|
F: package/libvips/
|
|
|
|
|
2023-07-25 20:48:47 +02:00
|
|
|
N: Pieterjan Camerlynck <pieterjanca@gmail.com>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libdvbpsi/
|
|
|
|
F: package/mraa/
|
2017-03-29 12:14:05 +02:00
|
|
|
F: package/synergy/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2022-10-07 23:19:32 +02:00
|
|
|
N: Prabhu Sannachi <prabhu.sannachi@collins.com>
|
|
|
|
F: package/redis-plus-plus/
|
|
|
|
|
2019-08-11 14:07:29 +02:00
|
|
|
N: Rafal Susz <rafal.susz@gmail.com>
|
|
|
|
F: board/avnet/s6lx9_microboard/
|
|
|
|
F: configs/s6lx9_microboard_defconfig
|
|
|
|
|
2021-10-05 17:46:51 +02:00
|
|
|
N: Rafał Miłecki <rafal@milecki.pl>
|
2022-03-10 13:12:29 +01:00
|
|
|
F: board/broadcom/northstar/
|
|
|
|
F: configs/broadcom_northstar_defconfig
|
2021-10-05 17:46:51 +02:00
|
|
|
F: package/firmware-utils/
|
|
|
|
|
2017-04-07 21:20:02 +02:00
|
|
|
N: Rahul Bedarkar <rahulbedarkar89@gmail.com>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/cxxtest/
|
|
|
|
F: package/gflags/
|
|
|
|
F: package/glog/
|
|
|
|
F: package/gssdp/
|
|
|
|
F: package/gupnp/
|
|
|
|
F: package/gupnp-av/
|
2017-05-03 20:01:24 +02:00
|
|
|
F: package/let-me-create/
|
2017-04-21 11:22:04 +02:00
|
|
|
F: package/nanomsg/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2020-07-06 11:37:43 +02:00
|
|
|
N: Ramon Fried <rfried.dev@gmail.com>
|
|
|
|
F: package/bitwise/
|
|
|
|
|
2021-07-01 01:47:13 +02:00
|
|
|
N: Raphaël Mélotte <raphael.melotte@mind.be>
|
2021-07-01 01:47:14 +02:00
|
|
|
F: package/gumbo-parser/
|
2019-09-13 13:24:13 +02:00
|
|
|
F: package/jbig2dec/
|
2020-02-07 10:37:04 +01:00
|
|
|
F: package/mupdf/
|
2020-02-07 12:43:50 +01:00
|
|
|
F: package/python-boto3/
|
2020-02-07 12:43:48 +01:00
|
|
|
F: package/python-botocore/
|
2020-02-07 12:43:47 +01:00
|
|
|
F: package/python-jmespath/
|
2020-02-07 10:37:05 +01:00
|
|
|
F: package/python-pymupdf/
|
2020-02-07 15:16:28 +01:00
|
|
|
F: package/python-rsa/
|
2020-02-07 12:43:49 +01:00
|
|
|
F: package/python-s3transfer/
|
2022-06-14 18:47:53 +02:00
|
|
|
F: support/testing/tests/package/sample_python_jmespath.py
|
2020-02-07 15:16:28 +01:00
|
|
|
F: support/testing/tests/package/sample_python_rsa.py
|
2022-07-22 22:53:05 +02:00
|
|
|
F: support/testing/tests/package/sample_python_s3transfer.py
|
2022-06-14 18:47:53 +02:00
|
|
|
F: support/testing/tests/package/test_python_jmespath.py
|
2020-02-07 15:16:28 +01:00
|
|
|
F: support/testing/tests/package/test_python_rsa.py
|
2022-07-22 22:53:05 +02:00
|
|
|
F: support/testing/tests/package/test_python_s3transfer.py
|
2019-09-13 13:24:13 +02:00
|
|
|
|
2022-10-31 13:46:25 +01:00
|
|
|
N: Raphael Pavlidis <raphael.pavlidis@gmail.com>
|
2022-09-04 14:58:54 +02:00
|
|
|
F: package/nvidia-persistenced/
|
2022-12-24 18:19:20 +01:00
|
|
|
F: package/shadow/
|
2022-08-27 14:07:12 +02:00
|
|
|
F: package/slirp4netns/
|
2022-10-31 13:46:25 +01:00
|
|
|
F: package/sway/
|
2023-02-16 19:33:20 +01:00
|
|
|
F: package/x11r7/xwayland/
|
2022-08-27 14:07:12 +02:00
|
|
|
|
2020-09-15 21:31:02 +02:00
|
|
|
N: Refik Tuzakli <tuzakli.refik@gmail.com>
|
|
|
|
F: package/freescale-imx/
|
|
|
|
F: package/paho-mqtt-cpp/
|
|
|
|
|
2018-07-09 21:53:33 +02:00
|
|
|
N: Rémi Rérolle <remi.rerolle@gmail.com>
|
|
|
|
F: package/libfreeimage/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Renaud Aubin <root@renaud.io>
|
|
|
|
F: package/libhttpparser/
|
|
|
|
|
2018-05-23 18:55:04 +02:00
|
|
|
N: Ricardo Martincoski <ricardo.martincoski@datacom.com.br>
|
2022-07-24 07:48:57 +02:00
|
|
|
F: .flake8
|
2022-07-24 07:48:58 +02:00
|
|
|
F: .shellcheckrc
|
2017-07-23 06:20:16 +02:00
|
|
|
F: package/atop/
|
2019-12-31 04:12:55 +01:00
|
|
|
F: package/thermald/
|
2019-09-16 04:09:08 +02:00
|
|
|
F: support/testing/infra/
|
|
|
|
F: support/testing/run-tests
|
|
|
|
F: support/testing/tests/package/test_atop.py
|
|
|
|
F: support/testing/tests/utils/test_check_package.py
|
2017-07-01 18:40:39 +02:00
|
|
|
F: utils/check-package
|
2022-11-27 14:07:39 +01:00
|
|
|
F: utils/check-symbols
|
2017-07-01 18:40:39 +02:00
|
|
|
F: utils/checkpackagelib/
|
2022-11-27 14:07:39 +01:00
|
|
|
F: utils/checksymbolslib/
|
2022-07-24 07:48:57 +02:00
|
|
|
F: utils/docker-run
|
2017-02-19 23:17:17 +01:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Richard Braun <rbraun@sceen.net>
|
2016-11-03 08:59:27 +01:00
|
|
|
F: package/curlftpfs/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/tzdata/
|
|
|
|
|
2017-07-28 20:04:59 +02:00
|
|
|
N: RJ Ascani <rj.ascani@gmail.com>
|
|
|
|
F: package/azmq/
|
|
|
|
|
2022-10-27 10:56:28 +02:00
|
|
|
N: Robert Marko <robimarko@gmail.com>
|
|
|
|
F: package/mdio-tools/
|
2023-07-31 19:05:04 +02:00
|
|
|
F: package/mhz/
|
2022-10-27 10:56:28 +02:00
|
|
|
|
2018-11-29 07:21:40 +01:00
|
|
|
N: Robert Rose <robertroyrose@gmail.com>
|
|
|
|
F: package/grpc/
|
|
|
|
|
2023-08-11 18:25:38 +02:00
|
|
|
N: Roberto Medina <robertoxmed@gmail.com>
|
2023-08-20 15:36:15 +02:00
|
|
|
F: board/firefly/roc-rk3399-pc/
|
2023-08-11 18:25:38 +02:00
|
|
|
F: configs/roc_pc_rk3399_defconfig
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Rodrigo Rebello <rprebello@gmail.com>
|
|
|
|
F: package/chocolate-doom/
|
|
|
|
F: package/irssi/
|
|
|
|
F: package/vnstat/
|
|
|
|
|
|
|
|
N: Romain Naour <romain.naour@gmail.com>
|
2020-02-13 22:54:54 +01:00
|
|
|
F: board/qemu/
|
2024-02-20 23:50:24 +01:00
|
|
|
F: board/ti/am574x-idk/
|
2020-02-13 22:54:54 +01:00
|
|
|
F: configs/qemu_*
|
2024-02-20 23:50:24 +01:00
|
|
|
F: configs/am574x_idk_defconfig
|
2020-01-05 12:31:59 +01:00
|
|
|
F: package/alure/
|
2016-12-04 17:30:26 +01:00
|
|
|
F: package/aubio/
|
2019-08-11 22:55:11 +02:00
|
|
|
F: package/binutils/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/bullet/
|
2019-10-05 11:48:56 +02:00
|
|
|
F: package/clinfo/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/efl/
|
2019-04-22 19:10:47 +02:00
|
|
|
F: package/enet/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/enlightenment/
|
2018-03-19 22:19:02 +01:00
|
|
|
F: package/flare-engine/
|
2018-03-19 22:19:03 +01:00
|
|
|
F: package/flare-game/
|
2019-08-11 22:55:11 +02:00
|
|
|
F: package/gcc/
|
2022-01-06 13:34:49 +01:00
|
|
|
F: package/gitlab-runner/
|
2019-08-11 22:55:11 +02:00
|
|
|
F: package/glibc/
|
2017-06-12 22:53:58 +02:00
|
|
|
F: package/irrlicht/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/liblinear/
|
2017-03-05 16:09:56 +01:00
|
|
|
F: package/lensfun/
|
2020-12-20 16:12:01 +01:00
|
|
|
F: package/libbpf/
|
2017-12-26 22:10:06 +01:00
|
|
|
F: package/libgta/
|
2020-04-24 19:04:35 +02:00
|
|
|
F: package/libiec61850/
|
2017-06-12 22:53:59 +02:00
|
|
|
F: package/libspatialindex/
|
2016-12-17 16:13:38 +01:00
|
|
|
F: package/linux-syscall-support/
|
2023-06-15 15:43:08 +02:00
|
|
|
F: package/llvm-project/clang/
|
2023-06-15 15:43:10 +02:00
|
|
|
F: package/llvm-project/libclc/
|
2023-06-15 15:43:06 +02:00
|
|
|
F: package/llvm-project/llvm/
|
2017-02-26 17:48:55 +01:00
|
|
|
F: package/lugaru/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/mcelog/
|
2017-12-22 12:37:22 +01:00
|
|
|
F: package/mesa3d/
|
2017-07-13 14:40:43 +02:00
|
|
|
F: package/minetest/
|
2017-07-13 14:40:52 +02:00
|
|
|
F: package/minetest-game/
|
2019-05-29 17:16:55 +02:00
|
|
|
F: package/ogre/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/openpowerlink/
|
2017-03-25 22:58:58 +01:00
|
|
|
F: package/physfs/
|
2019-08-01 11:21:19 +02:00
|
|
|
F: package/piglit/
|
2022-08-09 15:27:29 +02:00
|
|
|
F: package/python-libevdev/
|
2021-01-07 17:14:14 +01:00
|
|
|
F: package/qemu/
|
2017-11-29 21:04:52 +01:00
|
|
|
F: package/solarus/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/stress-ng/
|
2017-03-25 22:58:59 +01:00
|
|
|
F: package/supertux/
|
2017-11-29 23:29:30 +01:00
|
|
|
F: package/supertuxkart/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/terminology/
|
2018-04-20 10:29:01 +02:00
|
|
|
F: package/tk/
|
2017-01-08 23:20:10 +01:00
|
|
|
F: package/upower/
|
2018-09-22 12:56:25 +02:00
|
|
|
F: package/waffle/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/xenomai/
|
2019-05-29 17:16:53 +02:00
|
|
|
F: package/zziplib/
|
2023-06-09 19:49:52 +02:00
|
|
|
F: support/testing/tests/package/sample_python_mako.py
|
2023-06-09 19:49:55 +02:00
|
|
|
F: support/testing/tests/package/sample_python_mako_ext.py
|
2020-02-13 22:47:38 +01:00
|
|
|
F: support/testing/tests/package/test_glxinfo.py
|
2020-08-17 23:55:45 +02:00
|
|
|
F: support/testing/tests/package/test_openssh.py
|
2023-06-09 19:49:52 +02:00
|
|
|
F: support/testing/tests/package/test_python_mako.py
|
2020-02-13 23:29:13 +01:00
|
|
|
F: toolchain/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2022-05-07 18:13:37 +02:00
|
|
|
N: Rufus Segar <rhs@riseup.net>
|
|
|
|
F: package/agent-proxy/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Ryan Wilkins <ryan@deadfrog.net>
|
|
|
|
F: package/biosdevname/
|
|
|
|
|
2023-10-02 00:08:41 +02:00
|
|
|
N: Saeed Kazemi <kazemi.ms@gmail.com>
|
2023-10-02 19:36:28 +02:00
|
|
|
F: package/eza/
|
2023-10-02 00:08:41 +02:00
|
|
|
F: package/procs/
|
|
|
|
|
2019-09-08 10:03:16 +02:00
|
|
|
N: Sam Lancia <sam@gpsm.co.uk>
|
|
|
|
F: package/lrzip/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Samuel Martin <s.martin49@gmail.com>
|
|
|
|
F: package/armadillo/
|
|
|
|
F: package/cwiid/
|
|
|
|
F: package/flite/
|
|
|
|
F: package/nginx/
|
2016-09-21 21:53:29 +02:00
|
|
|
F: package/opencv3/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/openobex/
|
2016-09-21 21:53:29 +02:00
|
|
|
F: package/pkg-cmake.mk
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python-numpy/
|
|
|
|
F: package/scrub/
|
|
|
|
F: package/urg/
|
|
|
|
F: package/ussp-push/
|
2016-10-01 18:33:13 +02:00
|
|
|
F: support/misc/toolchainfile.cmake.in
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2019-10-03 02:31:46 +02:00
|
|
|
N: Sam Voss <sam.voss@gmail.com>
|
|
|
|
F: package/ripgrep/
|
|
|
|
|
2018-07-09 21:53:33 +02:00
|
|
|
N: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
|
2024-04-18 15:30:35 +02:00
|
|
|
F: board/armadeus/
|
|
|
|
F: configs/armadeus*
|
2018-07-09 21:53:33 +02:00
|
|
|
F: package/mmc-utils/
|
|
|
|
F: package/python-flask-jsonrpc/
|
|
|
|
F: package/python-flask-login/
|
|
|
|
F: package/qt5/qt5charts/
|
|
|
|
|
2017-04-06 17:41:17 +02:00
|
|
|
N: Semyon Kolganov <semenak94@mail.ru>
|
|
|
|
F: package/fmt/
|
2017-04-10 16:59:15 +02:00
|
|
|
F: package/libbson/
|
2017-04-25 20:10:58 +02:00
|
|
|
F: package/lua-resty-http/
|
2017-04-13 22:32:01 +02:00
|
|
|
F: package/mpir/
|
2017-04-06 17:41:17 +02:00
|
|
|
|
2024-02-11 14:16:35 +01:00
|
|
|
N: Sen Hastings <sen@hastings.org>
|
2022-07-17 19:22:10 +02:00
|
|
|
F: package/systemd
|
|
|
|
F: support/scripts/pkg-stats
|
|
|
|
|
2020-11-13 18:18:45 +01:00
|
|
|
N: Sergey Bobrenok <bobrofon@gmail.com>
|
|
|
|
F: package/sdbus-cpp/
|
|
|
|
|
2017-06-18 20:41:59 +02:00
|
|
|
N: Sergey Matyukevich <geomatsi@gmail.com>
|
2017-12-03 22:48:10 +01:00
|
|
|
F: boot/arm-trusted-firmware/
|
2017-12-03 22:25:12 +01:00
|
|
|
F: board/linksprite/pcduino
|
2017-11-06 11:16:51 +01:00
|
|
|
F: board/orangepi/orangepi-zero
|
2017-11-06 11:16:52 +01:00
|
|
|
F: board/orangepi/orangepi-one
|
2017-11-08 20:43:32 +01:00
|
|
|
F: board/orangepi/orangepi-pc-plus/
|
2022-02-25 08:26:22 +01:00
|
|
|
F: board/orangepi/orangepi-zero-plus2/
|
2017-12-03 22:25:12 +01:00
|
|
|
F: configs/linksprite_pcduino_defconfig
|
2017-11-06 11:16:52 +01:00
|
|
|
F: configs/orangepi_one_defconfig
|
2017-11-08 20:43:32 +01:00
|
|
|
F: configs/orangepi_pc_plus_defconfig
|
2017-11-06 11:16:51 +01:00
|
|
|
F: configs/orangepi_zero_defconfig
|
2022-02-25 08:26:22 +01:00
|
|
|
F: configs/orangepi_zero_plus2_defconfig
|
2017-12-03 21:32:18 +01:00
|
|
|
F: package/armbian-firmware/
|
2019-09-28 19:36:32 +02:00
|
|
|
F: package/hostapd/
|
2017-11-08 20:43:33 +01:00
|
|
|
F: package/rtl8189fs/
|
2019-09-28 19:36:32 +02:00
|
|
|
F: package/wpa_supplicant/
|
2017-12-03 21:32:18 +01:00
|
|
|
F: package/xr819-xradio/
|
2017-06-18 20:41:59 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Sergio Prado <sergio.prado@e-labworks.com>
|
2019-08-11 14:07:27 +02:00
|
|
|
F: board/toradex/apalis-imx6/
|
|
|
|
F: configs/toradex_apalis_imx6_defconfig
|
2018-01-15 10:08:51 +01:00
|
|
|
F: package/aoetools/
|
2020-01-10 22:14:20 +01:00
|
|
|
F: package/asn1c/
|
2020-07-04 02:44:36 +02:00
|
|
|
F: package/azure-iot-sdk-c/
|
2017-12-31 12:55:04 +01:00
|
|
|
F: package/curlpp/
|
2017-12-24 22:18:05 +01:00
|
|
|
F: package/daq/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libgdiplus/
|
2017-12-11 23:17:41 +01:00
|
|
|
F: package/pimd/
|
2021-08-27 22:54:28 +02:00
|
|
|
F: package/sloci-image/
|
2018-04-01 17:16:36 +02:00
|
|
|
F: package/snort/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/stella/
|
2019-12-22 23:12:03 +01:00
|
|
|
F: package/tio/
|
2017-12-16 14:01:49 +01:00
|
|
|
F: package/traceroute/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/tunctl/
|
|
|
|
F: package/ubus/
|
2017-12-23 17:32:15 +01:00
|
|
|
F: package/wolfssl/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
|
|
|
N: Simon Dawson <spdawson@gmail.com>
|
|
|
|
F: boot/at91bootstrap3/
|
|
|
|
F: package/cppzmq/
|
|
|
|
F: package/czmq/
|
|
|
|
F: package/filemq/
|
|
|
|
F: package/googlefontdirectory/
|
|
|
|
F: package/jansson/
|
|
|
|
F: package/jquery-ui/
|
|
|
|
F: package/jquery-ui-themes/
|
|
|
|
F: package/json-javascript/
|
|
|
|
F: package/lcdapi/
|
|
|
|
F: package/libfreefare/
|
|
|
|
F: package/libjson/
|
|
|
|
F: package/libnfc/
|
|
|
|
F: package/libnfc/
|
|
|
|
F: package/libserial/
|
|
|
|
F: package/libsigsegv/
|
|
|
|
F: package/macchanger/
|
|
|
|
F: package/minicom/
|
|
|
|
F: package/minidlna/
|
|
|
|
F: package/msgpack/
|
|
|
|
F: package/nanocom/
|
|
|
|
F: package/neard/
|
|
|
|
F: package/neardal/
|
|
|
|
F: package/owl-linux/
|
|
|
|
F: package/rapidjson/
|
|
|
|
F: package/sconeserver/
|
|
|
|
F: package/sound-theme-borealis/
|
|
|
|
F: package/sound-theme-freedesktop/
|
|
|
|
F: package/vlc/
|
|
|
|
F: package/xscreensaver/
|
|
|
|
F: package/zmqpp/
|
|
|
|
F: package/zyre/
|
|
|
|
|
2021-08-31 09:21:12 +02:00
|
|
|
N: Simon Doppler <dopsi@dopsi.ch>
|
|
|
|
F: board/seeed/
|
|
|
|
F: configs/stm32mp157c_odyssey_defconfig
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Spenser Gilliland <spenser@gillilanding.com>
|
|
|
|
F: arch/Config.in.microblaze
|
|
|
|
F: package/a10disp/
|
|
|
|
F: package/glmark2/
|
|
|
|
F: package/libvpx/
|
|
|
|
F: package/mesa3d-demos/
|
|
|
|
F: package/ti-gfx/
|
|
|
|
|
2023-07-24 21:16:37 +02:00
|
|
|
N: Stefan Nickl <Stefan.Nickl@gmail.com>
|
|
|
|
F: board/freescale/imx8dxlevk/
|
|
|
|
F: configs/freescale_imx8dxlevk_defconfig
|
|
|
|
|
2020-03-29 20:00:16 +02:00
|
|
|
N: Stefan Ott <stefan@ott.net>
|
|
|
|
F: package/unbound/
|
|
|
|
|
2017-02-09 14:45:55 +01:00
|
|
|
N: Stefan Sørensen <stefan.sorensen@spectralink.com>
|
2017-05-05 14:35:26 +02:00
|
|
|
F: package/cracklib/
|
2017-05-05 14:35:27 +02:00
|
|
|
F: package/libpwquality/
|
2017-02-09 14:45:55 +01:00
|
|
|
F: package/libscrypt/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Stephan Hoffmann <sho@relinux.de>
|
|
|
|
F: package/cache-calibrator/
|
|
|
|
F: package/gtest/
|
2020-05-18 11:36:02 +02:00
|
|
|
F: package/libhttpserver/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/mtdev/
|
|
|
|
|
2020-05-27 07:07:48 +02:00
|
|
|
N: Stephane Viau <stephane.viau@oss.nxp.com>
|
|
|
|
F: board/freescale/imx8mnevk/
|
2021-03-25 07:21:41 +01:00
|
|
|
F: board/freescale/imx8mpevk/
|
2020-05-27 07:07:48 +02:00
|
|
|
F: configs/freescale_imx8mnevk_defconfig
|
2021-03-25 07:21:41 +01:00
|
|
|
F: configs/freescale_imx8mpevk_defconfig
|
2020-05-27 07:07:48 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Steve Calfee <stevecalfee@gmail.com>
|
|
|
|
F: package/python-pymysql/
|
|
|
|
F: package/python-pyratemp/
|
|
|
|
|
|
|
|
N: Steve James <ste@junkomatic.net>
|
|
|
|
F: package/leveldb/
|
|
|
|
F: package/libcli/
|
|
|
|
|
|
|
|
N: Steve Kenton <skenton@ou.edu>
|
|
|
|
F: package/dvdauthor/
|
|
|
|
F: package/dvdrw-tools/
|
|
|
|
F: package/memtest86/
|
|
|
|
F: package/mjpegtools/
|
2018-01-22 22:31:38 +01:00
|
|
|
F: package/udftools/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/xorriso/
|
|
|
|
|
|
|
|
N: Steven Noonan <steven@uplinklabs.net>
|
|
|
|
F: package/hwloc/
|
|
|
|
F: package/powertop/
|
|
|
|
|
2020-03-28 06:04:29 +01:00
|
|
|
N: Suniel Mahesh <sunil@amarulasolutions.com>
|
2020-08-29 11:35:03 +02:00
|
|
|
F: board/pine64/rockpro64
|
2020-07-17 13:50:34 +02:00
|
|
|
F: board/radxa/rockpi-n8
|
|
|
|
F: configs/rock_pi_n8_defconfig
|
2020-08-29 11:35:03 +02:00
|
|
|
F: configs/rockpro64_defconfig
|
2022-05-31 16:35:02 +02:00
|
|
|
F: package/arm-gnu-toolchain/
|
2020-03-28 06:04:29 +01:00
|
|
|
|
2019-04-13 22:40:57 +02:00
|
|
|
N: Sven Oliver Moll <svolli@svolli.de>
|
|
|
|
F: package/most/
|
|
|
|
|
2022-09-12 02:52:42 +02:00
|
|
|
N: TIAN Yuanhao <tianyuanhao3@163.com>
|
2022-11-28 13:34:13 +01:00
|
|
|
F: package/cli11/
|
2022-11-28 13:34:16 +01:00
|
|
|
F: package/libsolv/
|
2022-10-09 13:14:23 +02:00
|
|
|
F: package/open-iscsi/
|
2022-09-12 02:52:42 +02:00
|
|
|
F: package/open-isns/
|
2022-11-28 13:34:17 +01:00
|
|
|
F: package/reproc/
|
2022-11-28 13:34:14 +01:00
|
|
|
F: package/termcolor/
|
2022-11-28 13:34:15 +01:00
|
|
|
F: package/tl-expected/
|
2022-09-12 02:52:42 +02:00
|
|
|
|
2023-10-03 18:36:13 +02:00
|
|
|
N: Takumi Takahashi <takumiiinn@gmail.com>
|
|
|
|
F: package/gsettings-desktop-schemas/
|
2023-10-03 14:40:03 +02:00
|
|
|
F: package/libcanberra/
|
2023-10-03 18:36:13 +02:00
|
|
|
|
2022-10-31 09:28:41 +01:00
|
|
|
N: Tan En De <ende.tan@starfivetech.com>
|
|
|
|
F: package/libkcapi/
|
|
|
|
|
2016-09-21 12:19:23 +02:00
|
|
|
N: Theo Debrouwere <t.debrouwere@televic.com>
|
2019-08-11 14:07:37 +02:00
|
|
|
F: board/beagleboardx15/
|
|
|
|
F: configs/beagleboardx15_defconfig
|
2016-09-21 12:19:23 +02:00
|
|
|
F: package/pugixml/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Thierry Bultel <tbultel@free.fr>
|
package/dracut: new host package
Dracut is the tool used by desktop distributions to build initrds.
In the embedded world, it can be very useful, too, for instance when
wanting to create an initramfs for a system recovery mode.
Whereas it is definitively possible to achieve this with buildroot, the
process is to have a dedicated buildroot configuration for that, and
perform a full build. Instead of doing that, dracut can pick the needed
binaries/shared libraries, configuration files, or kernel modules from
the 'target' directory.
The advantage is to save build time, and also to have a consistency
between the packages versions taken for the recovery and the production
filesystem.
The principle of dracut is based on the so-called 'dracut modules'. The
modules determine what will be included in the initramfs. For example,
one of dracut's modules checks the kernel modules that are included and
also includes the corresponding firmware blobs.
On the host, they are on host/lib/dracut/modules.d
Each directory as a prefix number for the order of execution, and
at least a "module-setup.sh" script.
Dracut sources all of them, and typically calls the "check()" function,
which is the placeholder for required binaries (that are aimed to be
polulated in the initrd), then the "depends()" function, that lists
other modules to depend on, and the "install()" function, that makes
the actual work.
Dracut was initially thought to work with systems using systemd,
but it can also work without it. Do to so, every "systemd-xxx"
module must be disabled in the dracut configuration file. For
convenience, the 05busybox-init module is provided, to support
busybox init system. Note that this module should *not* be enabled when
using systemd init. It is therefore only installed if busybox init is
selected.
Musl and uClibc make assumptions about the existence of some symlinks
that are not discoverable with readelf. Therefore, another module
05libc-links is provided that creates those links. The module is
installed regardless of which libc is used - the script itself discovers
if the links need to be installed based on which libc is found.
Signed-off-by: Thierry Bultel <thierry.bultel@linatsea.fr>
[arnout@mind.be: many changes]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Cc: Adam Duskett <aduskett@gmail.com>
[yann.morin.1998@free.fr: some additional fixups]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-08-15 13:17:08 +02:00
|
|
|
F: package/dracut/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/mpd-mpc/
|
|
|
|
|
|
|
|
N: Thijs Vermeir <thijsvermeir@gmail.com>
|
|
|
|
F: package/ranger/
|
|
|
|
F: package/x265/
|
|
|
|
|
|
|
|
N: Thomas Claveirole <thomas.claveirole@green-communications.fr>
|
|
|
|
F: package/fcgiwrap/
|
2019-10-22 11:17:40 +02:00
|
|
|
F: package/openlayers/
|
2022-12-01 14:48:40 +01:00
|
|
|
F: package/vuejs/
|
2021-08-02 17:48:12 +02:00
|
|
|
F: package/vuejs-router/
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2023-01-25 17:05:13 +01:00
|
|
|
N: Thomas Devoogdt <thomas@devoogdt.com>
|
|
|
|
F: package/fluent-bit/
|
2023-08-02 14:01:48 +02:00
|
|
|
F: package/libsoup3/
|
2023-01-25 17:05:13 +01:00
|
|
|
|
2019-04-22 10:11:25 +02:00
|
|
|
N: Thomas Huth <huth@tuxfamily.org>
|
2022-03-14 21:32:26 +01:00
|
|
|
F: board/qemu/m68k-mcf5208/
|
|
|
|
F: configs/qemu_m68k_mcf5208_defconfig
|
2019-04-22 10:11:25 +02:00
|
|
|
F: package/ascii-invaders/
|
2020-04-30 16:44:41 +02:00
|
|
|
F: package/frotz/
|
2022-03-14 21:32:26 +01:00
|
|
|
F: package/kvm-unit-tests/
|
2020-04-30 08:54:45 +02:00
|
|
|
F: package/xorcurses/
|
2019-04-22 10:11:25 +02:00
|
|
|
|
2018-02-13 14:26:34 +01:00
|
|
|
N: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: arch/Config.in.arm
|
2021-05-04 22:51:34 +02:00
|
|
|
F: board/beaglev/
|
2019-10-27 13:53:39 +01:00
|
|
|
F: board/stmicroelectronics/stm32mp157c-dk2/
|
2021-05-10 11:06:57 +02:00
|
|
|
F: boot/beaglev-ddrinit/
|
2021-05-04 22:51:37 +02:00
|
|
|
F: boot/beaglev-secondboot/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: boot/boot-wrapper-aarch64/
|
|
|
|
F: boot/grub2/
|
2021-05-04 22:51:34 +02:00
|
|
|
F: configs/beaglev_defconfig
|
2019-10-27 13:53:39 +01:00
|
|
|
F: configs/stm32mp157c_dk2_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/android-tools/
|
|
|
|
F: package/b43-firmware/
|
|
|
|
F: package/b43-fwcutter/
|
2021-06-21 23:01:06 +02:00
|
|
|
F: package/bmap-tools/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/c-periphery/
|
|
|
|
F: package/cdrkit/
|
|
|
|
F: package/cifs-utils/
|
|
|
|
F: package/cloop/
|
|
|
|
F: package/cmake/
|
|
|
|
F: package/cramfs/
|
|
|
|
F: package/dmidecode/
|
2022-07-25 17:25:17 +02:00
|
|
|
F: package/double-conversion/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/flashrom/
|
2016-10-15 15:53:36 +02:00
|
|
|
F: package/gcc/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/genext2fs/
|
|
|
|
F: package/genromfs/
|
|
|
|
F: package/getent/
|
|
|
|
F: package/gnu-efi/
|
|
|
|
F: package/heirloom-mailx/
|
|
|
|
F: package/hiawatha/
|
|
|
|
F: package/igh-ethercat/
|
|
|
|
F: package/intltool/
|
2021-05-15 00:03:15 +02:00
|
|
|
F: package/jh71xx-tools/
|
2022-07-25 17:25:18 +02:00
|
|
|
F: package/libb2/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libcap/
|
|
|
|
F: package/libffi/
|
|
|
|
F: package/libsha1/
|
|
|
|
F: package/libtirpc/
|
|
|
|
F: package/libxkbcommon/
|
|
|
|
F: package/libxml-parser-perl/
|
|
|
|
F: package/localedef/
|
|
|
|
F: package/log4cxx/
|
|
|
|
F: package/monit/
|
|
|
|
F: package/mpdecimal/
|
|
|
|
F: package/msmtp/
|
|
|
|
F: package/musl/
|
2019-09-22 11:06:25 +02:00
|
|
|
F: package/musl-fts/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/ne10/
|
2022-09-25 22:40:26 +02:00
|
|
|
F: package/nodejs/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/pkg-python.mk
|
|
|
|
F: package/pkg-autotools.mk
|
|
|
|
F: package/pkg-generic.mk
|
|
|
|
F: package/python3/
|
2021-06-21 22:34:54 +02:00
|
|
|
F: package/python-augeas/
|
2021-09-19 14:45:16 +02:00
|
|
|
F: package/python-flask-expects-json/
|
2021-09-19 14:45:17 +02:00
|
|
|
F: package/python-git/
|
2022-08-08 11:04:12 +02:00
|
|
|
F: package/python-qrcode/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python-serial/
|
2021-11-02 23:21:26 +01:00
|
|
|
F: package/python-unittest-xml-reporting/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/qextserialport/
|
package/qt6/qt6base: new package
This commit proposes a very minimal package for qt6base. It only
supports building QtCore, so it *really* is minimal. But that's a
starting point, which we can progressively build on top. It is based
on initial work from Peter Seiderer.
This minimal QtCore build is however sufficient to build and run
simple non-graphical Qt applications.
A number of comments:
- Even though there's only qt6base for now, many other qt6 modules
will come later on, which is why we're using the same structure as
for qt5, with a subdir for package/qt6/
- Qt6 is mutually exclusive with Qt5. Even though the library names
on the target and the location of the header files are distinct,
the host tools (qmake, moc and al.) have the same name, so at least
for now, we make them mutually exclusive.
- We've chosen to use non-bundled libraries for zlib, bb2,
double-conversion and pcre2, for both the target and the host
qt6base packages.
- Contrary to qt5 where the target package was building the host
tools, now we have a host qt6base package building the host tools,
and which is needed as a dependency for the target qt6base package.
- qt6base is using CMake. However, it strongly recommends to use
Ninja as a backend instead of make, a recommendation that we follow
in this commit. Since we don't have support for Ninja in the
cmake-package infrastructure (yet), we do this manually in
qt6base.mk itself, by passing -Gninja to CMake at configure time,
and then by using cmake --build at build time and cmake --install
at install time, using explicitly provided build and install
commands. Hopefully these can go away once we have support for
Ninja directly in cmake-package.
- We disable a number of features or external libraries using FEATURE
options. However, because there are over 400 FEATURE options in
qt6base, we didn't go all the way to explicitly disabling *all* of
them (which would be needed for both the host and target
packages). We expect that this list of explicit FEATURE options
disabling will need to grow based on the feedback of users and
issues encountered.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-07-25 17:25:20 +02:00
|
|
|
F: package/qt6/
|
2021-05-04 22:51:35 +02:00
|
|
|
F: package/riscv64-elf-toolchain/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/rpcbind/
|
|
|
|
F: package/rt-tests/
|
2019-01-15 10:32:29 +01:00
|
|
|
F: package/rtc-tools/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/sam-ba/
|
|
|
|
F: package/scons/
|
|
|
|
F: package/squashfs/
|
2020-12-19 16:35:19 +01:00
|
|
|
F: package/tinifier/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/wayland/
|
|
|
|
F: package/weston/
|
2022-07-19 09:40:42 +02:00
|
|
|
F: support/testing/tests/boot/test_grub.py
|
|
|
|
F: support/testing/tests/boot/test_grub/
|
2020-03-24 15:23:56 +01:00
|
|
|
F: support/testing/tests/boot/test_syslinux.py
|
2022-09-25 21:20:28 +02:00
|
|
|
F: support/testing/tests/package/sample_nodejs_basic.js
|
|
|
|
F: support/testing/tests/package/sample_nodejs_module.js
|
2021-06-21 22:34:55 +02:00
|
|
|
F: support/testing/tests/package/sample_python_augeas.py
|
2021-09-19 14:45:15 +02:00
|
|
|
F: support/testing/tests/package/sample_python_flask.py
|
2021-09-19 14:45:16 +02:00
|
|
|
F: support/testing/tests/package/sample_python_flask_expects_json.py
|
2021-09-19 14:45:17 +02:00
|
|
|
F: support/testing/tests/package/sample_python_git.py
|
2021-11-02 23:21:26 +01:00
|
|
|
F: support/testing/tests/package/sample_python_unittest_xml_reporting.py
|
2022-09-25 21:20:28 +02:00
|
|
|
F: support/testing/tests/package/test_nodejs.py
|
2021-06-21 22:34:55 +02:00
|
|
|
F: support/testing/tests/package/test_python_augeas.py
|
2021-09-19 14:45:15 +02:00
|
|
|
F: support/testing/tests/package/test_python_flask.py
|
2021-09-19 14:45:16 +02:00
|
|
|
F: support/testing/tests/package/test_python_flask_expects_json.py
|
2021-09-19 14:45:17 +02:00
|
|
|
F: support/testing/tests/package/test_python_git.py
|
2021-11-02 23:21:26 +01:00
|
|
|
F: support/testing/tests/package/test_python_unittest_xml_reporting.py
|
2016-09-12 22:54:53 +02:00
|
|
|
F: toolchain/
|
|
|
|
|
2018-03-08 09:28:37 +01:00
|
|
|
N: Timo Ketola <timo.ketola@exertus.fi>
|
|
|
|
F: package/fbgrab/
|
|
|
|
|
2020-12-31 14:58:19 +01:00
|
|
|
N: Titouan Christophe <titouanchristophe@gmail.com>
|
2019-12-23 18:23:56 +01:00
|
|
|
F: package/avro-c/
|
2019-08-03 11:38:58 +02:00
|
|
|
F: package/mosquitto/
|
2019-12-23 18:23:57 +01:00
|
|
|
F: package/python-avro/
|
2019-05-09 09:43:11 +02:00
|
|
|
F: package/redis/
|
2020-02-03 15:26:28 +01:00
|
|
|
F: package/waf/
|
2020-02-05 15:11:49 +01:00
|
|
|
F: support/testing/tests/package/test_crudini.py
|
2020-06-02 12:40:09 +02:00
|
|
|
F: support/testing/tests/package/test_redis.py
|
2019-05-09 09:43:11 +02:00
|
|
|
|
2022-10-20 16:14:12 +02:00
|
|
|
N: Tobias Waldekranz <tobias@waldekranz.com>
|
|
|
|
F: package/kmemd/
|
|
|
|
|
package/openjdk: use official hg.openjdk.java.net repository
Since Java 11 (and possibly earlier), OpenJDK now has its own official
repository at hg.openjdk.java.net which is referenced in all OpenJDK
documentation. This patch brings buildroot into line with that
source, reducing the opportunity for code injection, and allowing
consistent patching both across projects and for patches specific to
buildroot environments.
diff -ru shows that the only changes between the downstream and upstream files at
this point in time is the addition of a .hg_archive.txt file, containing:
repo: fd16c54261b32be1aaedd863b7e856801b7f8543
node: 7b6accc7c009304dd2979ea16c1cb15bf749a1fc
branch: default
tag: jdk-12.0.2+10
tag: jdk-12.0.2-ga
This does, however, change the hash for the tar.gz file (but not for the license).
With respect to the concern regarding upstream hash consistency, we have now been
using these archives for just over a year (since OpenJDK 11) and we haven't seen an
archive hash change in that time. This was a vast improvement on the previous
Mercurial forest. /archive is exactly as is sounds. It's an archive that doesn't
change, which is why it effectively negates the need for a "downstream" mirror.
Tests completed successfully (which is not surprising since there are no code changes here):
$ ./support/testing/run-tests -d ./dl/ -k -o test_dir tests.package.test_openjdk.TestOpenJdk
14:35:25 TestOpenJdk Starting
['Hello, World']
['Test: Get JNI Version passed', 'Test: Read Native String Constant passed', 'Test: Write Java String to Native Library passed', 'Test: Write Java Char Array to Native Library passed', 'Test: Write String Member to Native Library passed', 'Test: Set String Member from Native Library passed', 'Test: Execeute Java Function from Native Library passed', 'Test: Instantiate Java Class passed', 'Test: Call Native Library to Set System Time passed']
14:35:46 TestOpenJdk Cleaning up
.
----------------------------------------------------------------------
Ran 1 test in 20.614s
OK
Signed-off-by: Tudor Holton <tudor@tudorholton.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-12-05 06:57:04 +01:00
|
|
|
N: Tudor Holton <buildroot@tudorholton.com>
|
|
|
|
F: package/openjdk/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Tzu-Jung Lee <roylee17@gmail.com>
|
|
|
|
F: package/dropwatch/
|
|
|
|
F: package/tstools/
|
|
|
|
|
2022-01-06 00:15:43 +01:00
|
|
|
N: Uladzimir Bely <wiselord1983@gmail.com>
|
|
|
|
F: package/python-mpd2/
|
|
|
|
|
2018-12-24 18:28:47 +01:00
|
|
|
N: Vadim Kochan <vadim4j@gmail.com>
|
|
|
|
F: package/brcm-patchram-plus/
|
2020-02-25 16:53:22 +01:00
|
|
|
F: package/frr/
|
2019-03-28 00:08:31 +01:00
|
|
|
F: package/gettext-tiny/
|
2019-08-20 01:44:13 +02:00
|
|
|
F: package/tinyssh/
|
2018-12-24 18:28:47 +01:00
|
|
|
|
2018-07-17 11:31:09 +02:00
|
|
|
N: Valentin Korenblit <valentinkorenblit@gmail.com>
|
2018-10-21 00:14:37 +02:00
|
|
|
F: package/clinfo/
|
2023-06-15 15:43:08 +02:00
|
|
|
F: package/llvm-project/clang/
|
2023-06-15 15:43:10 +02:00
|
|
|
F: package/llvm-project/libclc/
|
2023-06-15 15:43:06 +02:00
|
|
|
F: package/llvm-project/llvm/
|
package/llvm: new package
This patch installs LLVM tools and libraries for the host and
libLLVM.so for the target.
In order to cross-compile LLVM for the target, LLVM
must be installed on the host, or at least llvm-tblgen.
This is necessary as the path to host's llvm-tblgen must
be specified when cross-compiling using the LLVM_TABLEGEN option.
Also, a version of llvm-config that can run on the host will
be required by packages that link with LLVM libraries, so we
need to generate it and install it in STAGING_DIR/usr/bin.
It is important to remark why we need llvm-config(host variant)
installed in STAGING dir. This tool is necessary to build
applications that use LLVM, as it prints the compiler flags,
linker flags and object libraries needed to link against LLVM libs.
More info: https://bugs.chromium.org/p/chromium/issues/detail?id=219369
The original idea was to compile only llvm-tblgen and llvm-config
for the host, as they are the only necessary components. However,
llvm-config tool does not work as expected if it is not linked with
libLLVM.so, so we must also enable LLVM_LINK_LLVM_DYLIB, what builds
LLVM as a single shared library and links LLVM tools with it.
More info: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=224847
in comment #11.
If we don't build full LLVM for the host, it would be necessary to
patch configure.ac from mesa3d if we want dynamic linking, because it
uses llvm-config (host variant installed in STAGING_DIR) to get the
necessary LLVM libraries to link with, which has the following problems:
- llvm-config --shared mode outputs static (even if LLVM is built as
one shared library) which leads to link issues with libgallium.
- llvm-config --libs outputs all LLVM tiny libs: -lLLVMLTO,
-lLLVMPasses,etc instead of the single shared library containing
all LLVM components (-lLLVM-5.0)
Mesa tries to execute: llvm-config --link-shared --libs, but this outputs
llvm-config: error: libLLVM-5.0.so is missing.
Given that these problems may arise with other packages that use LLVM,
it is preferable to do a full build for the host. Also, having a
complete installation of LLVM on the host will also facilitate the
integration of Clang front-end, which is going to be added in a future
patch.
As option LLVM_BUILD_LLVM_DYLIB is enabled for the llvm target variant,
a single shared library containing all LLVM components is built.
This option is not compatible with BUILD_SHARED_LIBS, which generates
one .so per library and is only recommended for use by LLVM developers.
Tools and utils are not built for the target. The patch aims to provide
LLVM support for other packages.
The main options needed to cross-compile LLVM are the following ones:
LLVM_TABLEGEN
CMAKE_CROSSCOMPILING
LLVM_DEFAULT_TARGET_TRIPLE
LLVM_HOST_TRIPLE
LLVM_TARGET_ARCH
LLVM_TARGETS_TO_BUILD
Signed-off-by: Valentin Korenblit <valentin.korenblit@smile.fr>
[Thomas:
- add dependency on thread and C++ and update the Config.in comment
accordingly.
- make the Config.in comment depend on BR2_PACKAGE_LLVM_ARCH_SUPPORTS
so that it isn't disabled on architectures where LLVM is anyway not
supported.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-04-04 18:31:18 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Vanya Sergeev <vsergeev@gmail.com>
|
|
|
|
F: package/lua-periphery/
|
|
|
|
|
2022-11-25 11:26:50 +01:00
|
|
|
N: Viacheslav Bocharov <adeep@lexina.in>
|
|
|
|
F: package/rtl8822cs/
|
|
|
|
|
2019-08-13 09:33:20 +02:00
|
|
|
N: Victor Huesca <victor.huesca@bootlin.com>
|
|
|
|
F: support/testing/tests/core/test_root_password.py
|
|
|
|
|
2018-05-29 10:00:12 +02:00
|
|
|
N: Vincent Prince <vincent.prince.fr@gmail.com>
|
|
|
|
F: package/nss-myhostname/
|
2019-02-04 14:10:23 +01:00
|
|
|
F: package/utp_com/
|
2018-05-29 10:00:12 +02:00
|
|
|
|
2022-09-16 09:41:47 +02:00
|
|
|
N: Vincent Stehlé <vincent.stehle@arm.com>
|
|
|
|
F: board/qemu/aarch64-ebbr/
|
2022-11-28 15:11:52 +01:00
|
|
|
F: board/qemu/arm-ebbr/
|
2022-09-16 09:41:47 +02:00
|
|
|
F: configs/qemu_aarch64_ebbr_defconfig
|
2022-11-28 15:11:52 +01:00
|
|
|
F: configs/qemu_arm_ebbr_defconfig
|
2022-12-01 19:33:36 +01:00
|
|
|
F: package/edk2-non-osi/
|
2022-09-16 09:41:47 +02:00
|
|
|
|
2017-07-03 22:09:23 +02:00
|
|
|
N: Vincent Stehlé <vincent.stehle@laposte.net>
|
2020-05-07 18:45:19 +02:00
|
|
|
F: board/bananapi/bananapi-m2-zero/
|
|
|
|
F: configs/bananapi_m2_zero_defconfig
|
2021-05-08 19:12:32 +02:00
|
|
|
F: configs/uevm5432_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/i7z/
|
|
|
|
F: package/msr-tools/
|
2017-07-03 22:09:23 +02:00
|
|
|
F: package/pixz/
|
2022-07-17 11:14:11 +02:00
|
|
|
F: package/zerofree/
|
2022-07-15 11:59:25 +02:00
|
|
|
F: support/testing/tests/package/test_msr_tools*
|
2022-07-13 19:20:06 +02:00
|
|
|
F: support/testing/tests/package/test_pixz.py
|
2022-07-17 11:14:11 +02:00
|
|
|
F: support/testing/tests/package/test_zerofree.py
|
2016-09-12 22:54:53 +02:00
|
|
|
|
|
|
|
N: Vinicius Tinti <viniciustinti@gmail.com>
|
|
|
|
F: package/python-thrift/
|
|
|
|
|
2019-09-19 18:53:31 +02:00
|
|
|
N: Vivien Didelot <vivien.didelot@gmail.com>
|
2018-03-05 18:15:05 +01:00
|
|
|
F: board/technologic/ts5500/
|
|
|
|
F: configs/ts5500_defconfig
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Volkov Viacheslav <sv99@inbox.ru>
|
|
|
|
F: package/v4l2grab/
|
|
|
|
F: package/zbar/
|
|
|
|
|
|
|
|
N: Wade Berrier <wberrier@gmail.com>
|
|
|
|
F: package/ngrep/
|
|
|
|
|
|
|
|
N: Waldemar Brodkorb <wbx@openadk.org>
|
2024-01-02 14:25:57 +01:00
|
|
|
F: package/asterisk/
|
2024-02-02 16:56:14 +01:00
|
|
|
F: package/libjwt/
|
2020-10-15 23:40:41 +02:00
|
|
|
F: package/mksh/
|
|
|
|
F: package/ruby/
|
2016-10-08 18:18:26 +02:00
|
|
|
F: package/uclibc/
|
2016-12-04 21:50:40 +01:00
|
|
|
F: package/uclibc-ng-test/
|
2023-09-18 10:25:11 +02:00
|
|
|
F: support/testing/tests/package/test_ruby.py
|
2016-09-12 22:54:53 +02:00
|
|
|
|
|
|
|
N: Will Newton <will.newton@gmail.com>
|
|
|
|
F: package/enchant/
|
|
|
|
F: package/erlang/
|
|
|
|
F: package/libmicrohttpd/
|
|
|
|
F: package/sysprof/
|
|
|
|
F: package/time/
|
|
|
|
|
|
|
|
N: Will Wagner <will_wagner@carallon.com>
|
|
|
|
F: package/yaffs2utils/
|
|
|
|
|
2023-04-18 13:42:04 +02:00
|
|
|
N: Witold Lipieta <witold.lipieta@thaumatec.com>
|
|
|
|
F: package/python-segno/
|
|
|
|
F: support/testing/tests/package/sample_python_segno.py
|
|
|
|
F: support/testing/tests/package/test_python_segno.py
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Wojciech M. Zabolotny <wzab01@gmail.com>
|
|
|
|
F: package/avrdude/
|
|
|
|
F: package/jack2/
|
|
|
|
F: package/python-msgpack/
|
|
|
|
F: package/python-pyusb/
|
|
|
|
|
|
|
|
N: Wojciech Niziński <niziak@spox.org>
|
|
|
|
F: package/fwup/
|
|
|
|
|
2022-11-25 13:38:01 +01:00
|
|
|
N: Woodrow Douglass <wdouglass@carnegierobotics.com>
|
|
|
|
F: package/opencv4
|
|
|
|
F: package/opencv4-contrib
|
|
|
|
|
2022-12-06 18:17:17 +01:00
|
|
|
N: Xuanhao Shi <X15000177@gmail.com>
|
2023-06-16 02:23:54 +02:00
|
|
|
F: board/ti/am62x-sk/
|
2023-06-16 02:23:53 +02:00
|
|
|
F: board/ti/am64x-sk/
|
2023-08-18 22:40:16 +02:00
|
|
|
F: boot/ti-k3-boot-firmware/
|
2023-06-16 02:23:51 +02:00
|
|
|
F: boot/ti-k3-image-gen/
|
2022-12-06 18:17:17 +01:00
|
|
|
F: boot/ti-k3-r5-loader/
|
2023-06-16 02:23:54 +02:00
|
|
|
F: configs/ti_am62x_sk_defconfig
|
2023-06-16 02:23:53 +02:00
|
|
|
F: configs/ti_am64x_sk_defconfig
|
2022-12-06 18:17:17 +01:00
|
|
|
|
2020-05-19 10:26:30 +02:00
|
|
|
N: Yair Ben Avraham <yairba@protonmail.com>
|
2021-01-10 09:35:35 +01:00
|
|
|
F: package/casync/
|
2020-05-19 10:26:30 +02:00
|
|
|
F: package/gloox/
|
2021-01-24 20:29:26 +01:00
|
|
|
F: package/tpm2-pkcs11/
|
2020-05-19 10:26:30 +02:00
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Yann E. MORIN <yann.morin.1998@free.fr>
|
2017-07-11 00:14:51 +02:00
|
|
|
F: fs/squashfs/
|
2017-11-27 14:30:49 +01:00
|
|
|
F: package/asterisk/
|
2020-03-23 19:03:30 +01:00
|
|
|
F: package/cegui/
|
2017-11-27 14:30:49 +01:00
|
|
|
F: package/dahdi-linux/
|
|
|
|
F: package/dahdi-tools/
|
package/dbus-broker: new package
dbus-broker is an alternate implementation of a dbus daemon. It can be
used as a drop-in replacement for the system bus daemon, as well as the
session bus daemon.
dbus-broker is (basically, and as far as we're concerned in Buildroot)
split in two components:
- the actual message bus daemon, that relays messages across clients
- a launcher, which is responsible for setting various aspects of the
bus, like setting the policy et al. and opening the socket(s) the
message bus daemon will have to listen on...
The launcher can only be used in a systemd setup (it makes heavy use of
systemd facilities), while the message bus is generic. However, the
message bus daemon is useless without a launcher. There does not exist a
non-systemd launcher, which makes dbus-broker actually a systemd-only
package; this can be revisited when/if a non-systemd launcher appears.
Note, however, that libdbus is not provided by dbus-broker. People who
want to use dbus-broker as the bus daemon, and need libdbus, will have
to enable both.
If only original dbus is enabled, things stay as they are now. This is
for the moment still the default, though we should change that once
dbus-broker has proven to work.
If only dbus-broker is enabled, it installs the necessary socket
activation units and dbus configuration files. The daemon is not
launched at boot time; instead it is socket-activated when a client
connects to the bus the first time.
If both original dbus and dbus-broker are enabled, we have a conflict
with the configuration files, the socket activation file. Also, original
dbus activates the daemon as a service in multi-user.target.wants, so it
is not socket-activated and dbus-broker would never get the opportunity
to start.
Therefore, original dbus is updated to remove the conflicting files and
the activation of dbus-daemon. Since dbus-broker installs some of the
same file that original dbus removes, we have to add a dependency to
make sure that the ones installed by dbus-broker aren't removed.
If both are installed, it is still possible to revert back to using
original dbus as system bus:
- at build-time: by calling systemctl enable/disable from a
post-build script (preferred), or by providing drop-in units
or presets in an overlay (less preferred) or custom skeleton
(as a last resort),
- at runtime (on a RW filesystem): by calling systemctl
enable/disable
Note about the user: the path to the system bus socket is a so-called
"well-known location": it is expected to be there, by spec. Moving it
elsewhere is going to break existing programs. So, the user running the
system bus daemon must be able to create that socket.
As we may have two packages providing a system bus daemon, they have to
be both able to create the socket, and thus must both be able to write
in the directory containing the socket. And since they can be switched
at runtime, they must be running as the same user.
We can't just reference the original dbus user, so we duplicate the
entry. What is important, is that the user be named 'dbus', as that's
what we use in both cases.
If both original dbus and dbus-broker are selected, the dbus user is
included twice, but the specifications are identical so that's fine.
mkusers will create the user only once.
Finally, the licensing terms are pretty trivial for dbus-broker itself,
but it makes use of third-party code that it inherits as git submodules
(that are bundled in the release archive). Thus the licensing is a bit
convoluted... The third-party codes claim to be licensed as "Apache-2.0
and LGP-2.1+" in their AUTHORS files, but at the same time claim
"**Apache-2.0** OR **LGPL-2.1-or-later**" in their README files. The
individual source files (that are used) do not seem to have any
licensing header to clarify the situation. So we represent the situation
with "Apache-2.0 and/or LGPL-2.1+".
Signed-off-by: Norbert Lange <nolange79@gmail.com>
[yann.morin.1998@free.fr:
- don't select systemd; depend on it instead
- only install config files and systemd units without original dbus
- install a user to run the message bus as
- fix licensing info
- entirely reword and extend the commit log
- add myself to DEVELOPERS as well
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
[Arnout:
- Use dbus-broker as system bus if both are selected.
- Remove conflicting files from dbus installation.
- Simplify symbolic link creation.
- Add comment to remind update of session.conf and system.conf.
]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-01-09 23:16:47 +01:00
|
|
|
F: package/dbus-broker/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/dtc/
|
|
|
|
F: package/dtv-scan-tables/
|
|
|
|
F: package/dvb-apps/
|
2017-02-18 15:33:04 +01:00
|
|
|
F: package/freerdp/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/keyutils/
|
|
|
|
F: package/libbsd/
|
|
|
|
F: package/libedit/
|
2017-01-27 20:33:46 +01:00
|
|
|
F: package/libgsm/
|
package/libiberty: new package
Some packages, like prelink-cross, want to use libiberty but do not bundle
their own instance (which is good!).
However, libiberty is made for being bundled in packages: all GNU
packages that use libiberty (gcc, Binutils, gdb, et al...) all have their own
bundled variant. This common practice means that there is no official upstream
for libiberty, the closest being as part of the combined Binutils-gdb tree.
So we introduce a new host-only package, that installs just libiberty from a
Binutils released tarball.
Again, as packages usually bundle libiberty, it usually only installs a static
version. Furthermore, it does not obey the usual --enable-shared and
--disable-static flags; it only ever builds a static version.
Furthermore, -fPIC is not used with this library, but some packages may pick it
to build shared objects. This behavior is the case for host-gdb, for example,
which accidentally picks that library instead of its internal one.
So, rather than fix the various gdb versions and variants we can use, we ensure
that the libiberty we install is usable in shared objects, and we always build
before host-gdb.
Signed-off-by: Adam Duskett <Aduskett@gmail.com>
[yann.morin.1998@free.fr:
- fix DL_SUBDIR for a host-only package
- add licensing info
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-02-11 17:34:00 +01:00
|
|
|
F: package/libiberty/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libinput/
|
|
|
|
F: package/libiscsi/
|
2017-11-27 14:30:49 +01:00
|
|
|
F: package/libpri/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libseccomp/
|
2017-11-27 14:30:49 +01:00
|
|
|
F: package/libss7/
|
2018-01-13 23:24:29 +01:00
|
|
|
F: package/linux-firmware/
|
2016-10-15 15:55:41 +02:00
|
|
|
F: package/linux-tools/
|
2017-12-23 17:15:39 +01:00
|
|
|
F: package/matchbox*
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/mesa3d-headers/
|
2017-03-12 10:58:15 +01:00
|
|
|
F: package/nbd/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/nut/
|
2016-09-21 12:19:23 +02:00
|
|
|
F: package/nvidia-driver/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/omxplayer/
|
|
|
|
F: package/python-pyparsing/
|
|
|
|
F: package/pkg-download.mk
|
2016-10-30 17:02:15 +01:00
|
|
|
F: package/pkg-waf.mk
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/slirp/
|
|
|
|
F: package/snappy/
|
|
|
|
F: package/spice/
|
|
|
|
F: package/spice-protocol/
|
2016-10-15 15:55:41 +02:00
|
|
|
F: package/systemd/
|
|
|
|
F: package/systemd-bootchart/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/tmux/
|
|
|
|
F: package/tvheadend/
|
|
|
|
F: package/usbredir/
|
|
|
|
F: package/vde2/
|
|
|
|
F: package/w_scan/
|
2016-10-15 15:55:41 +02:00
|
|
|
F: package/wayland/
|
|
|
|
F: package/weston/
|
2022-04-23 19:09:23 +02:00
|
|
|
F: package/wtfutil/
|
2018-01-02 21:04:11 +01:00
|
|
|
F: package/zisofs-tools/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: support/download/
|
|
|
|
|
2022-09-16 15:06:17 +02:00
|
|
|
N: Yann E. MORIN <yann.morin@orange.com>
|
.editorconfig: add editor-agnostic configuration
EditorConfig [0] is an editor-agnostic configuration file, to set
preferences on how to edit text: tabs vs. spaces, tab width, indentation
size, line endings...
A large number of editors support EditorConfig, either natively [1] or
with the help of plugins [2].
Add a basic .editorconfig that provides defaults for most of the files
used by Buildroot. More can be added in the future if we can find more
matching patterns.
The values are chosen a bit arbitrarily, unless we already have a
(un)written rule about it. Notably, indentation defaults to using 4
spaces, and only a set of files for which we require TABs (Makefile,
essentially) or have already settled for TABs (Kconfig files, init
scripts...) are configured so. The traditional width of TABs is 8 char,
and we pair TAB indentation with TAB size.
Trailing spaces are usually useless, except in asciidoc source where
they can be used to force a new line without a new paragraph.
One of the limitations of .editorconfig, though, is that it matches on
filenames (e.g. *.py), not on the content (e.g. no use of mimetype, or
libmagic, or such). Still, this is enough to cover a lot of files in
Buildroot.
[0] https://editorconfig.org/
[1] https://editorconfig.org/#pre-installed
[2] https://editorconfig.org/#download
Signed-off-by: Yann E. MORIN <yann.morin@orange.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023-10-31 14:40:38 +01:00
|
|
|
F: .editorconfig
|
2022-09-16 15:06:17 +02:00
|
|
|
F: package/gpsd/
|
|
|
|
|
2016-09-12 22:54:53 +02:00
|
|
|
N: Yegor Yefremov <yegorslists@googlemail.com>
|
2019-09-27 10:59:03 +02:00
|
|
|
F: configs/beaglebone_defconfig
|
|
|
|
F: configs/beaglebone_qt5_defconfig
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/acl/
|
|
|
|
F: package/attr/
|
2022-01-10 09:58:49 +01:00
|
|
|
F: package/avrdude/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/boost/
|
|
|
|
F: package/bootstrap/
|
|
|
|
F: package/cannelloni/
|
2016-12-18 13:00:26 +01:00
|
|
|
F: package/can-utils/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/circus/
|
2019-09-09 10:54:36 +02:00
|
|
|
F: package/dhcpcd/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/feh/
|
|
|
|
F: package/giblib/
|
2022-01-30 11:51:16 +01:00
|
|
|
F: package/hostapd/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/imlib2/
|
|
|
|
F: package/jquery-datetimepicker/
|
|
|
|
F: package/jquery-sidebar/
|
|
|
|
F: package/kmod/
|
2020-02-06 12:12:09 +01:00
|
|
|
F: package/libftdi1/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libical/
|
|
|
|
F: package/libmbim/
|
|
|
|
F: package/libndp/
|
|
|
|
F: package/libnftnl/
|
2022-01-30 11:54:59 +01:00
|
|
|
F: package/libqmi/
|
|
|
|
F: package/libqrtr-glib/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/libsoc/
|
|
|
|
F: package/libsocketcan/
|
|
|
|
F: package/libubox/
|
|
|
|
F: package/libuci/
|
|
|
|
F: package/linux-firmware/
|
2019-11-05 12:56:07 +01:00
|
|
|
F: package/linux-serial-test/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/modem-manager/
|
2024-06-03 11:25:13 +02:00
|
|
|
F: package/ncftp/
|
2019-09-09 10:54:36 +02:00
|
|
|
F: package/nftables/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/nuttcp/
|
|
|
|
F: package/parted/
|
2017-04-13 11:33:20 +02:00
|
|
|
F: package/phytool/
|
2017-12-04 12:16:08 +01:00
|
|
|
F: package/poco/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python*
|
2016-11-07 07:51:33 +01:00
|
|
|
F: package/ser2net/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/socketcand/
|
2020-02-06 12:12:09 +01:00
|
|
|
F: package/swig/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/qt5/qt5serialbus/
|
|
|
|
F: package/sdparm/
|
|
|
|
F: package/ti-utils/
|
2022-01-30 11:51:16 +01:00
|
|
|
F: package/wpa_supplicant/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/x11r7/xapp_xconsole/
|
|
|
|
F: package/x11r7/xapp_xinput-calibrator/
|
|
|
|
F: package/zlog/
|
2022-12-05 07:04:14 +01:00
|
|
|
F: support/testing/tests/package/sample_python_dicttoxml2.py
|
2022-08-04 07:23:32 +02:00
|
|
|
F: support/testing/tests/package/sample_python_dtschema.py
|
2022-12-12 10:50:50 +01:00
|
|
|
F: support/testing/tests/package/sample_python_munch.py
|
2023-07-23 13:21:59 +02:00
|
|
|
F: support/testing/tests/package/sample_python_pysmb.py
|
2020-02-10 10:11:49 +01:00
|
|
|
F: support/testing/tests/package/test_libftdi1.py
|
2020-01-15 09:09:26 +01:00
|
|
|
F: support/testing/tests/package/test_python_can.py
|
2022-12-05 07:04:14 +01:00
|
|
|
F: support/testing/tests/package/test_python_dicttoxml2.py
|
2022-08-04 07:23:32 +02:00
|
|
|
F: support/testing/tests/package/test_python_dtschema.py
|
2022-12-12 10:50:50 +01:00
|
|
|
F: support/testing/tests/package/test_python_munch.py
|
2023-07-23 13:21:59 +02:00
|
|
|
F: support/testing/tests/package/test_python_pysmb.py
|
2017-07-01 18:40:39 +02:00
|
|
|
F: utils/scanpypi
|
2016-09-12 22:54:53 +02:00
|
|
|
|
2021-11-03 09:31:09 +01:00
|
|
|
N: Yunhao Tian <t123yh.xyz@gmail.com>
|
|
|
|
F: package/libopenaptx/
|
|
|
|
|
2018-06-02 23:11:13 +02:00
|
|
|
N: Zoltan Gyarmati <zgyarmati@zgyarmati.de>
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/crudini/
|
|
|
|
F: package/grantlee/
|
2019-08-27 12:46:23 +02:00
|
|
|
F: package/libusb/
|
|
|
|
F: package/libusb-compat/
|
2017-12-17 00:52:59 +01:00
|
|
|
F: package/proj/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/python-iniparse/
|
|
|
|
F: package/qjson/
|
2023-08-09 19:15:00 +02:00
|
|
|
F: package/qt6/qt6core5compat/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/quazip/
|
2016-07-31 14:45:50 +02:00
|
|
|
F: package/shapelib/
|
2021-01-06 21:52:06 +01:00
|
|
|
F: package/simple-mail/
|
2016-09-12 22:54:53 +02:00
|
|
|
F: package/tinc/
|