2016-09-13 04:54:53 +08: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.
|
|
|
|
|
|
|
|
N: Adam Duskett <aduskett@gmail.com>
|
2017-05-26 22:46:28 +08:00
|
|
|
F: package/audit/
|
2017-11-03 20:08:11 +08:00
|
|
|
F: package/busybox/
|
2017-05-26 22:46:28 +08:00
|
|
|
F: package/checkpolicy/
|
2017-11-03 20:08:11 +08:00
|
|
|
F: package/cppdb/
|
package/gobject-introspection: new package
GObject introspection is a middleware layer between C
libraries (using GObject) and language bindings. The C library
can be scanned at compile time and generate a metadata file,
in addition to the actual native C library. Then at runtime,
language bindings can read this metadata and automatically
provide bindings to call into the C library.
There's an XML format called GIR used by GObject-Introspection.
The purpose of it is to provide a standard structure to access the complete
available API that a library or other unit of code exports. It's
language-agnostic using namespaces to separate core, language, or
library-specific functionality.
Cross-compiling gobject-introspection is not an easy task. The main issue is
that in the process of creating the XML files, gobject-introspection must first
run and scan the binary, which, if the binary is cross-compiled, would not
typically be possible from the host system.
Because of this limitation, we use several wrappers to call instead first out
qemu, which runs the native scanner to create the binaries.
There are seven total patches and four different wrapper files needed to
successfully cross-compile and run this package, many of them are from
open-embedded, but one of them is of my own doing.
1) Revert a previous, incomplete attempt at adding cross-compiling support.
2) Add support for cross-compiling with meson.
3) Disable tests.
4) Add an option to use a binary wrapper; this patch will force giscanner to
use a wrapper executable to run binaries it's producing, instead of
attempting to run them from the host.
5) Add an option to use an LDD wrapper, again, useful for cross-compiled
environments.
6) Add a --lib-dirs-envar option to pass to giscanner. (See patch for details.)
7) Add rpath-links to ccompiler: when passing the PACKAGE_GIR_EXTRA_LIBS_PATH
to the ccompiler.py script, ccompiler.py needs to add -Wl,-rpath-link to the
environment for the package to correctly link against the passed on paths.
8) Ignore error return codes from ldd-wrapper because prelink-rtld returns 127
when it can't find a library, which breaks subprocess.check_output().
Signed-off-by: Adam Duskett <Aduskett@gmail.com>
Tested-by: Yegor Yefremov <yegorslists@googlemail.com>
Tested-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
[yann.morin.1998@free.fr:
- host-prelink-cross has no Kconfig entry
- reorder dependencies for arch deps first
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-02-12 00:34:04 +08:00
|
|
|
F: package/gobject-introspection/
|
2017-11-03 20:08:11 +08:00
|
|
|
F: package/gstreamer1/gstreamer1/
|
2017-12-04 22:26:58 +08:00
|
|
|
F: package/gstreamer1/gstreamer1-mm/
|
2017-11-03 20:08:11 +08:00
|
|
|
F: package/gstreamer1/gst1-plugins-bad/
|
|
|
|
F: package/gstreamer1/gst1-plugins-base/
|
|
|
|
F: package/gstreamer1/gst1-plugins-good/
|
|
|
|
F: package/gstreamer1/gst1-plugins-ugly/
|
2020-03-16 04:10:32 +08:00
|
|
|
F: package/gstreamer1/gst1-python/
|
gst1-vaapi: new package
gstreamer-vaapi consists in a collection of VA-API based plugins for
GStreamer and helper libraries. These libraries are used for hardware
decoding and encoding of several video formats.
decoding formats:
JPEG, MPEG-2, MPEG-4:2, H.264 AVC, H.264 MVC, VP8, VC-1, WMV3, and HEVC.
encoding formats:
MPEG-2, H.264 AVC, H.264 MVC, JPEG, VP8, HEVC
The package won't compile without at least one renderer enabled, so I
chose to enable DRM by default, as X11, GLX, and wayland are heavy
handed with the dependencies. As such, I have disabled every option
defaulting to yes except for DRM for the first patch.
Also, these codecs are only for x86 and require a Intel CPU (See Hardware
Requirements on line 82 of the README file.)
Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
[Thomas:
- Add entry to DEVELOPERS file.
- Add BR2_TOOLCHAIN_HAS_THREADS dependency to the main Config.in
option.
- Add BR2_PACKAGE_HAS_UDEV dependency to the main Config.in option.
- Add comments about the BR2_STATIC_LIBS config option.
- Rewrap Config.in help text and removing trailing tabs/spaces.
- Remove restriction to i386/x86-64
- Add patch to fix build with uClibc.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-02-01 21:18:53 +08:00
|
|
|
F: package/gstreamer1/gst1-vaapi/
|
2017-11-03 20:08:11 +08:00
|
|
|
F: package/imx-usb-loader/
|
2017-06-15 20:13:14 +08:00
|
|
|
F: package/janus-gateway/
|
json-for-modern-cpp: new package
A json library that aims to make json feel like a first class data
type using C++11, json for modern c++ is a easy to use, flexible,
modern json library.
Design goals include:
- Intuitive syntax. In languages such as Python, JSON feels like a
first class data type. All the operator magic of modern C++ is used
to achieve the same feeling in c++.
- Trivial integration. The whole code consists of a single header file
json.hpp. That's it. No library, no subproject, no dependencies, no
complex build system. The class is written in vanilla C++11. All in
all, everything should require no adjustment of compiler flags or
project settings.
- Serious testing. The class is heavily unit-tested and covers 100% of
the code, including all exceptional behavior. Furthermore, it is
checked with Valgrind that there are no memory leaks. To maintain
high quality, the project is following the Core Infrastructure
Initiative (CII) best practices.
Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
[Thomas:
- use "json-for-modern-cpp" everywhere as the name of the package
- add <pkg>_INSTALL_TARGET = NO since it's a header only library]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-12-31 03:24:37 +08:00
|
|
|
F: package/json-for-modern-cpp/
|
2020-07-22 05:45:21 +08:00
|
|
|
F: package/libabseil-cpp/
|
2020-07-26 07:06:07 +08:00
|
|
|
F: package/libblockdev/
|
2020-07-26 07:06:08 +08:00
|
|
|
F: package/libbytesize/
|
2018-01-15 03:56:44 +08:00
|
|
|
F: package/libcpprestsdk/
|
2020-07-06 23:30:34 +08:00
|
|
|
F: package/libcutl/
|
2020-07-06 23:30:37 +08:00
|
|
|
F: package/libodb/
|
2020-07-06 23:30:38 +08:00
|
|
|
F: package/libodb-pgsql/
|
2017-07-06 22:40:50 +08:00
|
|
|
F: package/libressl/
|
2017-05-26 22:46:28 +08:00
|
|
|
F: package/libselinux/
|
|
|
|
F: package/libsemanage/
|
|
|
|
F: package/libsepol/
|
2020-04-22 04:55:02 +08:00
|
|
|
F: package/libtextstyle/
|
2019-02-27 00:48:35 +08:00
|
|
|
F: package/libwebsockets/
|
2019-06-06 23:52:15 +08:00
|
|
|
F: package/mender-grubenv/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/nginx-naxsi/
|
package/odb: new package
ODB is an open-source, cross-platform, and cross-database
object-relational mapping (ORM) system for C++. It allows you to
persist C++ objects to a relational database without having to deal
with tables, columns, or SQL and without manually writing any mapping
code.
ODB supports MySQL, SQLite, PostgreSQL, Oracle, and Microsoft SQL
Server relational databases as well as C++98/03 and C++11 language
standards. It also comes with optional profiles for Boost and Qt
which allow you to seamlessly use value types, containers, and smart
pointers from these libraries in your persistent C++ classes.
This package is used for auto-generating ODB specific header files
into useable code that can be linked against a seperate libodb and a
specific libodb database library. As such, it is only needed as a
host program and is not user selectable.
Signed-off-by: Adam Duskett <aduskett@gmail.com>
[Kamel: Fix incorrect odb license]
Signed-off-by: Kamel Bouhara <kamel.bouhara@bootlin.com>
[Thomas: add patch fixing gcc10 build, add references to upstream
commits]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-07-06 23:30:36 +08:00
|
|
|
F: package/odb/
|
package/openjdk: new package
OpenJDK is a free and open-source implementation of the Java Platform.
This package provides the option to build a client or a server JVM
interpreter.
The default option is the server option, as that is what the majority
of users use. This JVM interpreter loads more slowly, putting more
effort into JIT compilations to yield higher performance.
Unlike most autotools packages, OpenJDK is exceptionally different and
has many quirks, some of which are below:
- X11, alsa, and cups are required to build Java, even if it's a headless build.
See
http://hg.openjdk.java.net/jdk10/jdk10/raw-file/tip/common/doc/building.html#external-library-requirements
for more information.
- host-zip is needed for the zip executable.
- There is no autogen.sh file, instead, a user must call "./configure
autogen."
- OpenJDK ignores some variables unless passed via the environment.
These variables are: PATH, LD, CC, CXX, and CPP.
- OpenJDK defaults ld to the ld binary but passes -Xlinker and -z as
arguments during the linking process, which causes linking failures.
To fix this issue, ld is set to gcc.
- Make -jn is unsupported. Instead, one must use the "--with-jobs="
configure option, and use $(MAKE1).
Signed-off-by: Adam Duskett <Aduskett@gmail.com>
[Thomas:
- drop explanations about CC, LD, CXX, etc. be set to their "actual
binaries" instead of ccache: TARGET_CC/TARGET_LD/TARGET_CXX point
to the compiler wrapper, so the usage of ccache is hidden
- make sure at least one of the variants is enabled in Config.in
- drop the submenu for variant selection
- use system zlib instead of the bundled one. This works fine when
BUILD_SYSROOT_CFLAGS and BUILD_SYSROOT_LDFLAGS are passed
- fix minor nits in the Config.in comments]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-03-16 04:52:31 +08:00
|
|
|
F: package/openjdk/
|
2019-02-05 22:31:24 +08:00
|
|
|
F: package/openjdk-bin/
|
2019-02-27 00:48:35 +08:00
|
|
|
F: package/php/
|
2019-10-30 08:56:03 +08:00
|
|
|
F: package/pkcs11-helper/
|
2017-05-26 22:46:28 +08:00
|
|
|
F: package/policycoreutils/
|
2020-02-12 00:34:02 +08:00
|
|
|
F: package/prelink-cross/
|
2019-12-07 07:46:44 +08:00
|
|
|
F: package/polkit/
|
2019-02-27 00:48:35 +08:00
|
|
|
F: package/python3/
|
2019-08-04 09:16:29 +08:00
|
|
|
F: package/python-aioredis/
|
2019-09-28 14:27:41 +08:00
|
|
|
F: package/python-asgiref/
|
2019-08-04 09:16:30 +08:00
|
|
|
F: package/python-channels/
|
2019-08-04 09:16:31 +08:00
|
|
|
F: package/python-channels-redis/
|
2019-08-04 09:16:27 +08:00
|
|
|
F: package/python-daphne/
|
2019-08-04 09:16:24 +08:00
|
|
|
F: package/python-django-enumfields/
|
2018-02-06 21:25:04 +08:00
|
|
|
F: package/python-flask-sqlalchemy/
|
2019-11-30 05:29:07 +08:00
|
|
|
F: package/python-gitdb2/
|
2020-03-13 03:47:17 +08:00
|
|
|
F: package/python-gobject/
|
2019-11-26 03:38:49 +08:00
|
|
|
F: package/python-lockfile/
|
2017-01-26 16:53:50 +08:00
|
|
|
F: package/python-mutagen/
|
2019-11-26 03:43:17 +08:00
|
|
|
F: package/python-nested-dict/
|
2019-11-26 03:38:48 +08:00
|
|
|
F: package/python-pbr/
|
2018-08-07 06:46:15 +08:00
|
|
|
F: package/python-pip/
|
2018-03-12 18:12:31 +08:00
|
|
|
F: package/python-psycopg2/
|
2019-11-30 04:38:40 +08:00
|
|
|
F: package/python-smmap2/
|
2018-02-06 21:25:03 +08:00
|
|
|
F: package/python-sqlalchemy/
|
2019-08-04 09:16:25 +08:00
|
|
|
F: package/python-sqlparse/
|
2018-02-06 21:25:05 +08:00
|
|
|
F: package/python-visitor/
|
2017-10-18 06:32:18 +08:00
|
|
|
F: package/restorecond/
|
2017-05-21 04:41:41 +08:00
|
|
|
F: package/refpolicy/
|
2017-10-18 06:32:18 +08:00
|
|
|
F: package/selinux-python/
|
|
|
|
F: package/semodule-utils/
|
2017-05-26 22:46:28 +08:00
|
|
|
F: package/setools/
|
2017-01-26 16:53:50 +08:00
|
|
|
F: package/sngrep/
|
package/spidermonkey: new package
Spidermonkey is Mozilla's JavaScript engine written in C and C++. It is used in
various Mozilla products, including Firefox, and is available under the MPL2.
There are 10 patches currently required to properly cross-compile spidermonkey:
1) allow-newer-autoconf-versions
- Spidermonkey is hardcoded to use Autoconf 2.13, which is from 1999!
The reasoning behind using 2.13 is because newer versions of Autoconf do not
work correctly with the custom m4 macros in the source code.
However: Because we are building just the Spidermonkey engine instead of the
entire Firefox package, newer versions of Autoconf work without issue.
See: See: https://bugzilla.mozilla.org/show_bug.cgi?id=104642
for further explanation.
2) allow-building-in-tree
- By default, spidermonkey must be configured and built out-of-tree, otherwise
the following error occurs:
FATAL ERROR PROCESSING MOZBUILD FILE
==============================
The error occurred while processing the following file or one of the files
it includes:
js/src/shell/moz.build
The error occurred when validating the result of the execution. The reported
error is:
The path specified in LOCAL_INCLUDES is not allowed:
.. (resolved to js/src)
Remove this check, as spidermonkey builds without issue in-tree.
3) allow-unknown-configuration-options
- By default, if an unknown parameter is passed to configure, an error is
raised. Replace the raise with a pass and continue.
Fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1379540
4) fix-building-with-musl
- The MIPS specific header <sgidefs.h> is not provided by musl.
The Linux kernel headers <asm/sgidefs.h> provide the same definitions.
5) add-riscv-support
- Submitted upstream:
See: https://bugzilla.mozilla.org/show_bug.cgi?id=1318905
6) copy-headers-on-install-instead-of-symlinking
- When installing, instead of linking the headers to the source directory,
copy them.
7) ensure-proper-running-on-64-bit-and-32-bit-be-platforms
- Taken from the Fedora RPM
Applied upstream.
Fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1488552
8) 0008-save-and-restore-non-volatile-x28-on-ARM64-for-generated-unboxed-obje
- Taken from the Fedora RPM:
Applied upstream.
Fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1375074
9) save-x28-before-clobbering-it-in-the-regex-compiler
- Taken from the Fedora RPM:
Applied upstream.
Fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1445907
10) always-use-the-equivalent-year-to-determine-the-time-zone
- Taken from the Fedora RPM:
Applied upstream.
Fixes: https://bugzilla.mozilla.org/show_bug.cgi?id=1415202
Typically, The Firefox source tarball is used to build spidermonkey; however,
this has two disadvantages:
- It's large. The Firefox source tarball is over 250M.
- It requires Autoconf 2.13
Instead, use a tarball with only the Spidermonkey source code in it with a
pre-setup configure file. This tarball reduces the size to 31M and prevents the
Autoconf 2.13 requirement.
Signed-off-by: Adam Duskett <aduskett@greenlots.com>
[Thomas: adjust how the libnspr arch dependency is handled]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-11-26 01:50:28 +08:00
|
|
|
F: package/spidermonkey/
|
2019-02-27 00:48:35 +08:00
|
|
|
F: package/systemd/
|
2020-03-16 04:10:33 +08:00
|
|
|
F: support/testing/tests/package/test_gst1_python.py
|
2019-12-02 02:39:09 +08:00
|
|
|
F: support/testing/tests/package/test_python_gobject.py
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2019-08-03 17:59:06 +08:00
|
|
|
N: Adam Heinrich <adam@adamh.cz>
|
|
|
|
F: package/jack1/
|
|
|
|
|
2017-07-06 01:20:26 +08:00
|
|
|
N: Adrian Perez de Castro <aperez@igalia.com>
|
2018-03-24 02:59:39 +08:00
|
|
|
F: package/brotli/
|
2019-09-20 23:31:04 +08:00
|
|
|
F: package/bubblewrap/
|
2019-11-11 04:06:38 +08:00
|
|
|
F: package/cage/
|
2019-02-06 04:41:52 +08:00
|
|
|
F: package/cog/
|
2017-11-21 17:15:54 +08:00
|
|
|
F: package/libepoxy/
|
2019-02-06 04:41:49 +08:00
|
|
|
F: package/libwpe/
|
2017-07-06 01:20:26 +08:00
|
|
|
F: package/webkitgtk/
|
2019-11-11 04:06:37 +08:00
|
|
|
F: package/wlroots/
|
2018-03-24 02:59:40 +08:00
|
|
|
F: package/woff2/
|
2019-02-06 04:41:50 +08:00
|
|
|
F: package/wpebackend-fdo/
|
2019-02-06 04:41:51 +08:00
|
|
|
F: package/wpewebkit/
|
2019-09-20 23:31:05 +08:00
|
|
|
F: package/xdg-dbus-proxy/
|
2017-07-06 01:20:26 +08:00
|
|
|
|
2017-12-06 00:22:59 +08:00
|
|
|
N: Adrien Gallouët <adrien@gallouet.fr>
|
2018-09-28 06:21:01 +08:00
|
|
|
F: package/bird/
|
2017-12-06 00:22:59 +08:00
|
|
|
F: package/glorytun/
|
|
|
|
|
2020-08-29 20:33:00 +08:00
|
|
|
N: Alejandro González <alejandro.gonzalez.correo@gmail.com>
|
|
|
|
F: package/watchdog/
|
|
|
|
|
2017-09-07 19:49:46 +08:00
|
|
|
N: Aleksander Morgado <aleksander@aleksander.es>
|
|
|
|
F: package/libmbim/
|
|
|
|
F: package/libqmi/
|
|
|
|
F: package/modem-manager/
|
|
|
|
|
2020-02-04 16:04:38 +08:00
|
|
|
N: Alex Michel <alex.michel@wiedemann-group.com>
|
|
|
|
F: package/network-manager-openvpn/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Alex Suykov <alex.suykov@gmail.com>
|
2018-03-05 23:02:33 +08:00
|
|
|
F: board/chromebook/snow/
|
|
|
|
F: configs/chromebook_snow_defconfig
|
2016-09-13 04:54:53 +08: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/
|
|
|
|
F: package/putty/
|
|
|
|
|
2019-09-10 02:23:45 +08:00
|
|
|
N: Alexander Kurz <akurz@blala.de>
|
|
|
|
F: package/minimodem/
|
|
|
|
|
2019-12-01 21:33:03 +08:00
|
|
|
N: Alexander Lukichev <alexander.lukichev@gmail.com>
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/openpgm/
|
|
|
|
|
2020-03-14 18:23:23 +08:00
|
|
|
N: Alexander Mukhin <alexander.i.mukhin@gmail.com>
|
|
|
|
F: package/tinyproxy/
|
|
|
|
|
2018-11-23 02:36:09 +08:00
|
|
|
N: Alexander Sverdlin <alexander.sverdlin@gmail.com>
|
|
|
|
F: package/mini-snmpd/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Alexander Varnin <fenixk19@mail.ru>
|
|
|
|
F: package/liblog4c-localtime/
|
|
|
|
|
2018-02-13 21:26:34 +08:00
|
|
|
N: Alexandre Belloni <alexandre.belloni@bootlin.com>
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/tz/
|
|
|
|
|
2017-06-17 07:29:27 +08:00
|
|
|
N: Alexandre Esse <alexandre.esse.dev@gmail.com>
|
|
|
|
F: package/kvazaar/
|
2017-06-21 03:11:38 +08:00
|
|
|
F: package/v4l2loopback/
|
2017-06-17 07:29:27 +08:00
|
|
|
|
2019-08-11 20:07:35 +08:00
|
|
|
N: Alexey Brodkin <alexey.brodkin@synopsys.com>
|
|
|
|
F: board/cubietech/cubieboard2/
|
|
|
|
F: configs/cubieboard2_defconfig
|
|
|
|
|
2018-02-28 00:43:23 +08:00
|
|
|
N: Alistair Francis <alistair@alistair23.me>
|
2019-07-23 04:44:47 +08:00
|
|
|
F: board/sifive/
|
2019-03-21 07:05:21 +08:00
|
|
|
F: boot/opensbi/
|
2019-07-23 04:44:47 +08:00
|
|
|
F: configs/hifive_unleashed_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/xen/
|
|
|
|
|
|
|
|
N: Alvaro G. M <alvaro.gamez@hazent.com>
|
|
|
|
F: package/dcron/
|
|
|
|
F: package/libxmlrpc/
|
|
|
|
F: package/python-docopt/
|
|
|
|
|
|
|
|
N: Anders Darander <anders@chargestorm.se>
|
|
|
|
F: package/ktap/
|
|
|
|
|
|
|
|
N: André Hentschel <nerv@dawncrow.de>
|
2019-02-19 04:48:07 +08:00
|
|
|
F: board/freescale/imx8qxpmek/
|
|
|
|
F: configs/freescale_imx8qxpmek_defconfig
|
2019-02-19 04:48:03 +08:00
|
|
|
F: package/freescale-imx/imx-sc-firmware/
|
2018-03-08 04:15:57 +08:00
|
|
|
F: package/libkrb5/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/openal/
|
|
|
|
F: package/p7zip/
|
|
|
|
F: package/wine/
|
|
|
|
|
2017-06-03 07:56:43 +08:00
|
|
|
N: Andrey Smirnov <andrew.smirnov@gmail.com>
|
2017-06-13 07:42:14 +08:00
|
|
|
F: package/python-backports-shutil-get-terminal-size/
|
2017-04-28 05:33:31 +08:00
|
|
|
F: package/python-decorator/
|
2017-06-03 07:56:46 +08:00
|
|
|
F: package/python-ipython-genutils/
|
2017-06-13 07:42:12 +08:00
|
|
|
F: package/python-pathlib2/
|
2017-06-13 07:42:13 +08:00
|
|
|
F: package/python-pickleshare/
|
2017-06-13 07:42:11 +08:00
|
|
|
F: package/python-scandir/
|
2017-04-28 05:33:33 +08:00
|
|
|
F: package/python-simplegeneric/
|
2017-07-18 05:07:50 +08:00
|
|
|
F: package/python-systemd/
|
2017-06-13 07:42:10 +08:00
|
|
|
F: package/python-traitlets/
|
2017-07-26 00:56:03 +08:00
|
|
|
F: package/zstd/
|
2017-04-28 05:33:31 +08:00
|
|
|
|
2017-06-30 03:08:11 +08:00
|
|
|
N: Andrey Yurovsky <yurovsky@gmail.com>
|
|
|
|
F: package/rauc/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Angelo Compagnucci <angelo.compagnucci@gmail.com>
|
2020-04-21 17:10:21 +08:00
|
|
|
F: package/apparmor/
|
2018-04-26 22:10:37 +08:00
|
|
|
F: package/corkscrew/
|
2020-07-26 04:49:42 +08:00
|
|
|
F: package/cups/
|
|
|
|
F: package/cups-filters/
|
2018-11-25 07:24:22 +08:00
|
|
|
F: package/fail2ban/
|
2020-07-26 04:49:42 +08:00
|
|
|
F: package/grep/
|
2017-11-14 18:51:44 +08:00
|
|
|
F: package/i2c-tools/
|
2020-07-26 04:49:42 +08: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 17:29:05 +08:00
|
|
|
F: package/libapparmor/
|
2020-07-26 04:49:42 +08:00
|
|
|
F: package/libb64/
|
2018-05-04 17:21:59 +08:00
|
|
|
F: package/mender/
|
2019-02-06 21:23:59 +08:00
|
|
|
F: package/mender-artifact/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/mono/
|
|
|
|
F: package/mono-gtksharp3/
|
|
|
|
F: package/monolite/
|
2020-07-26 04:49:42 +08:00
|
|
|
F: package/openjpeg/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-can/
|
|
|
|
F: package/python-pillow/
|
|
|
|
F: package/python-pydal/
|
2019-10-21 16:48:14 +08:00
|
|
|
F: package/python-spidev/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-web2py/
|
2020-07-26 04:49:42 +08:00
|
|
|
F: package/sam-ba/
|
2019-07-17 03:56:52 +08:00
|
|
|
F: package/sshguard/
|
2019-10-12 05:32:19 +08:00
|
|
|
F: package/sunwait/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/sysdig/
|
|
|
|
|
2018-05-12 04:50:35 +08:00
|
|
|
N: Anisse Astier <anisse@astier.eu>
|
|
|
|
F: package/go/
|
2018-07-19 21:54:08 +08:00
|
|
|
F: package/nghttp2/
|
2019-04-08 19:47:31 +08:00
|
|
|
F: package/pkg-golang.mk
|
2018-05-12 04:50:35 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Anthony Viallard <viallard@syscom-instruments.com>
|
|
|
|
F: package/gnuplot/
|
|
|
|
|
2018-02-13 21:26:34 +08:00
|
|
|
N: Antoine Ténart <antoine.tenart@bootlin.com>
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/wf111/
|
|
|
|
|
2018-07-10 03:53:33 +08:00
|
|
|
N: Antony Pavlov <antonynpavlov@gmail.com>
|
|
|
|
F: package/lsscsi/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: ARC Maintainers <arc-buildroot@synopsys.com>
|
|
|
|
F: arch/Config.in.arc
|
2017-12-19 22:55:54 +08:00
|
|
|
F: board/synopsys/
|
2018-04-04 01:48:17 +08:00
|
|
|
F: configs/snps_arc700_axs101_defconfig
|
|
|
|
F: configs/snps_archs38_axs103_defconfig
|
|
|
|
F: configs/snps_archs38_haps_defconfig
|
2017-12-19 22:55:54 +08:00
|
|
|
F: configs/snps_archs38_hsdk_defconfig
|
2018-04-04 01:48:17 +08:00
|
|
|
F: configs/snps_archs38_vdk_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Ariel D'Alessandro <ariel@vanguardiasur.com.ar>
|
|
|
|
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 18:14:10 +08:00
|
|
|
F: package/arp-scan/
|
2018-06-18 20:13:09 +08:00
|
|
|
F: package/dehydrated/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/freescale-imx/firmware-imx/
|
|
|
|
F: package/freescale-imx/imx-lib/
|
2018-02-16 23:21:25 +08:00
|
|
|
F: package/libpagekite/
|
2017-02-24 01:00:36 +08:00
|
|
|
F: package/lua-bit32/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/owfs/
|
|
|
|
F: package/python-bottle/
|
|
|
|
F: package/sqlcipher/
|
|
|
|
F: package/stress/
|
|
|
|
|
2019-12-04 18:54:30 +08:00
|
|
|
N: Arthur Courtel <arthur.courtel@smile.fr>
|
|
|
|
F: board/raspberrypi/genimage-raspberrypi4-64.cfg
|
|
|
|
F: configs/raspberrypi4_64_defconfig
|
|
|
|
|
2018-03-07 04:03:25 +08:00
|
|
|
N: Asaf Kahlon <asafka7@gmail.com>
|
2019-09-21 22:49:33 +08:00
|
|
|
F: package/collectd/
|
2020-04-17 21:18:55 +08:00
|
|
|
F: package/libfuse3/
|
2018-06-23 23:17:36 +08:00
|
|
|
F: package/libuv/
|
2018-10-21 03:07:31 +08:00
|
|
|
F: package/python*
|
2019-10-10 01:24:21 +08:00
|
|
|
F: package/snmpclitools/
|
2019-04-27 22:03:35 +08:00
|
|
|
F: package/spdlog/
|
2019-03-16 15:05:20 +08:00
|
|
|
F: package/uftp/
|
2019-10-26 22:02:04 +08:00
|
|
|
F: package/uvw/
|
2018-04-16 02:15:55 +08:00
|
|
|
F: package/zeromq/
|
2018-03-07 04:03:25 +08:00
|
|
|
|
2019-10-09 04:19:52 +08:00
|
|
|
N: Ash Charles <ashcharles@gmail.com>
|
2016-12-09 10:23:21 +08:00
|
|
|
F: package/pru-software-support/
|
|
|
|
F: package/ti-cgt-pru/
|
|
|
|
|
2016-09-13 04:54:53 +08: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 21:40:40 +08:00
|
|
|
N: Attila Wagner <attila.wagner@onyxinsight.com>
|
|
|
|
F: package/python-canopen/
|
|
|
|
|
2017-12-08 21:59:27 +08:00
|
|
|
N: Bartosz Bilas <b.bilas@grinn-global.com>
|
2020-03-21 21:32:19 +08:00
|
|
|
F: board/stmicroelectronics/stm32mp157a-dk1/
|
|
|
|
F: configs/stm32mp157a_dk1_defconfig
|
2019-11-08 01:05:04 +08:00
|
|
|
F: package/python-esptool/
|
2019-11-08 01:05:03 +08:00
|
|
|
F: package/python-pyaes/
|
2020-06-17 01:19:01 +08:00
|
|
|
F: package/ttyd/
|
2017-12-08 21:59:27 +08:00
|
|
|
F: package/qt5/qt5scxml/
|
2019-10-06 20:13:31 +08:00
|
|
|
F: package/qt5/qt5webview/
|
2017-12-08 21:59:27 +08:00
|
|
|
|
2017-04-04 23:04:35 +08:00
|
|
|
N: Bartosz Golaszewski <brgl@bgdev.pl>
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/autoconf-archive/
|
|
|
|
F: package/doxygen/
|
2017-01-19 20:01:50 +08:00
|
|
|
F: package/libgpiod/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/libserialport/
|
|
|
|
F: package/libsigrok/
|
|
|
|
F: package/libsigrokdecode/
|
|
|
|
F: package/libzip/
|
|
|
|
F: package/pulseview/
|
|
|
|
F: package/sigrok-cli/
|
|
|
|
|
|
|
|
N: Baruch Siach <baruch@tkos.co.il>
|
2019-06-16 16:18:47 +08:00
|
|
|
F: board/solidrun/clearfog_gt_8k/
|
|
|
|
F: configs/solidrun_clearfog_gt_8k_defconfig
|
2018-03-02 05:51:42 +08:00
|
|
|
F: package/18xx-ti-utils/
|
2019-11-20 20:45:23 +08:00
|
|
|
F: package/cpuburn-arm/
|
2017-05-02 13:07:44 +08:00
|
|
|
F: package/daemon/
|
2017-11-10 02:52:54 +08:00
|
|
|
F: package/dropbear/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/ebtables/
|
2017-11-10 02:52:54 +08:00
|
|
|
F: package/i2c-tools/
|
|
|
|
F: package/libcurl/
|
|
|
|
F: package/libpcap/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/openipmi/
|
2017-10-30 13:08:55 +08:00
|
|
|
F: package/socat/
|
2017-11-10 02:52:54 +08:00
|
|
|
F: package/strace/
|
|
|
|
F: package/tcpdump/
|
2017-03-13 22:42:13 +08:00
|
|
|
F: package/ti-uim/
|
2017-08-22 21:11:20 +08:00
|
|
|
F: package/uhubctl/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Ben Boeckel <mathstuf@gmail.com>
|
|
|
|
F: package/taskd/
|
|
|
|
|
|
|
|
N: Benjamin Kamath <kamath.ben@gmail.com>
|
|
|
|
F: package/lapack/
|
|
|
|
|
|
|
|
N: Bernd Kuhls <bernd.kuhls@t-online.de>
|
2017-05-21 23:01:06 +08:00
|
|
|
F: package/alsa-lib/
|
|
|
|
F: package/alsa-utils/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/apache/
|
|
|
|
F: package/apr/
|
|
|
|
F: package/apr-util/
|
2017-10-07 04:28:27 +08:00
|
|
|
F: package/bcg729/
|
2017-02-10 05:26:16 +08:00
|
|
|
F: package/bluez-tools/
|
2017-10-30 00:12:55 +08:00
|
|
|
F: package/boinc/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/clamav/
|
2019-08-10 16:00:21 +08:00
|
|
|
F: package/dav1d/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/dovecot/
|
|
|
|
F: package/dovecot-pigeonhole/
|
|
|
|
F: package/dtv-scan-tables/
|
|
|
|
F: package/eudev/
|
|
|
|
F: package/exim/
|
|
|
|
F: package/fetchmail/
|
2018-07-29 19:12:05 +08:00
|
|
|
F: package/ffmpeg/
|
2019-08-12 11:46:39 +08:00
|
|
|
F: package/flac/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/freeswitch/
|
2017-10-07 04:28:28 +08:00
|
|
|
F: package/freeswitch-mod-bcg729/
|
2019-07-07 19:44:15 +08:00
|
|
|
F: package/freetype/
|
2019-09-22 03:28:02 +08:00
|
|
|
F: package/fstrcmp/
|
2016-12-19 04:56:29 +08:00
|
|
|
F: package/ghostscript/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/giflib/
|
2019-04-11 01:57:46 +08:00
|
|
|
F: package/gli/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/glmark2/
|
2019-08-06 13:19:21 +08:00
|
|
|
F: package/gpsd/
|
2017-06-04 21:20:40 +08:00
|
|
|
F: package/hdparm/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/jsoncpp/
|
|
|
|
F: package/kodi*
|
|
|
|
F: package/lame/
|
|
|
|
F: package/leafnode2/
|
|
|
|
F: package/libaacs/
|
|
|
|
F: package/libasplib/
|
|
|
|
F: package/libass/
|
|
|
|
F: package/libbdplus/
|
|
|
|
F: package/libbluray/
|
|
|
|
F: package/libbroadvoice/
|
|
|
|
F: package/libcdio/
|
|
|
|
F: package/libcec/
|
|
|
|
F: package/libcodec2/
|
|
|
|
F: package/libcrossguid/
|
|
|
|
F: package/libdcadec/
|
|
|
|
F: package/libdrm/
|
|
|
|
F: package/libdvbcsa/
|
|
|
|
F: package/libdvdcss/
|
|
|
|
F: package/libdvdnav/
|
|
|
|
F: package/libdvdread/
|
|
|
|
F: package/libebur128/
|
|
|
|
F: package/libfreeglut/
|
|
|
|
F: package/libg7221/
|
|
|
|
F: package/libglew/
|
|
|
|
F: package/libglfw/
|
|
|
|
F: package/libglu/
|
|
|
|
F: package/libhdhomerun/
|
|
|
|
F: package/libilbc/
|
|
|
|
F: package/libldns/
|
|
|
|
F: package/libmicrohttpd/
|
|
|
|
F: package/libminiupnpc/
|
2019-10-06 04:59:20 +08:00
|
|
|
F: package/libmspack/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/libnatpmp/
|
2017-03-12 19:33:25 +08:00
|
|
|
F: package/libnpth/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/libogg/
|
|
|
|
F: package/libopenh264/
|
|
|
|
F: package/libpciaccess/
|
|
|
|
F: package/libplatform/
|
2017-09-03 21:08:58 +08:00
|
|
|
F: package/libpng/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/libsidplay2/
|
|
|
|
F: package/libsilk/
|
|
|
|
F: package/libsndfile/
|
|
|
|
F: package/libsoil/
|
|
|
|
F: package/libsoundtouch/
|
|
|
|
F: package/libsquish/
|
2020-04-06 02:20:34 +08:00
|
|
|
F: package/libudfread/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/liburiparser/
|
|
|
|
F: package/libva/
|
|
|
|
F: package/libva-intel-driver/
|
2017-07-04 05:09:53 +08:00
|
|
|
F: package/libva-utils/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/libvorbis/
|
|
|
|
F: package/libvpx/
|
|
|
|
F: package/libyuv/
|
|
|
|
F: package/mesa3d/
|
|
|
|
F: package/minidlna/
|
|
|
|
F: package/mjpg-streamer/
|
2018-08-22 04:41:32 +08:00
|
|
|
F: package/perl-crypt-openssl-guess/
|
2016-09-13 04:54:53 +08: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/
|
|
|
|
F: package/perl-net-dns/
|
|
|
|
F: package/perl-net-http/
|
|
|
|
F: package/perl-netaddr-ip/
|
|
|
|
F: package/perl-timedate/
|
|
|
|
F: package/perl-uri/
|
|
|
|
F: package/perl-www-robotrules/
|
|
|
|
F: package/pixman/
|
2017-04-08 23:18:03 +08:00
|
|
|
F: package/pngquant/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/pound/
|
2019-08-12 11:46:39 +08:00
|
|
|
F: package/pulseaudio/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/pure-ftpd/
|
2016-10-11 03:09:58 +08:00
|
|
|
F: package/python-couchdb/
|
|
|
|
F: package/python-cssutils/
|
|
|
|
F: package/python-futures/
|
|
|
|
F: package/python-mwclient/
|
|
|
|
F: package/python-mwscrape/
|
|
|
|
F: package/python-mwscrape2slob/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-mako/
|
2017-11-12 18:45:21 +08:00
|
|
|
F: package/python-oauthlib/
|
2016-10-11 03:09:58 +08:00
|
|
|
F: package/python-pyicu/
|
|
|
|
F: package/python-pylru/
|
2017-11-12 18:45:22 +08:00
|
|
|
F: package/python-requests-oauthlib/
|
2016-10-11 03:09:58 +08:00
|
|
|
F: package/python-slob/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/rtmpdump/
|
2018-01-28 20:53:34 +08:00
|
|
|
F: package/samba4/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/softether/
|
2018-10-03 21:13:57 +08:00
|
|
|
F: package/spandsp/
|
2018-06-10 17:04:42 +08:00
|
|
|
F: package/sqlite/
|
2019-08-06 13:04:45 +08:00
|
|
|
F: package/stellarium/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/taglib/
|
|
|
|
F: package/tinyxml2/
|
|
|
|
F: package/tor/
|
|
|
|
F: package/transmission/
|
|
|
|
F: package/tvheadend/
|
|
|
|
F: package/unixodbc/
|
2019-09-29 23:36:03 +08:00
|
|
|
F: package/utf8proc/
|
2016-10-26 04:36:03 +08:00
|
|
|
F: package/vdr/
|
2016-10-26 04:49:09 +08:00
|
|
|
F: package/vdr-plugin-vnsiserver/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/vlc/
|
|
|
|
F: package/vnstat/
|
2017-11-23 02:34:20 +08:00
|
|
|
F: package/waylandpp/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/x11r7/
|
|
|
|
F: package/x264/
|
|
|
|
F: package/x265/
|
2019-09-05 05:21:17 +08:00
|
|
|
F: package/ytree/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/znc/
|
2020-02-10 19:26:35 +08:00
|
|
|
F: support/testing/tests/package/test_perl_html_parser.py
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2016-09-23 16:14:14 +08:00
|
|
|
N: Biagio Montaruli <biagio.hkr@gmail.com>
|
|
|
|
F: board/acmesystems/
|
|
|
|
F: configs/acmesystems_*
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Bogdan Radulescu <bogdan@nimblex.net>
|
|
|
|
F: package/iftop/
|
|
|
|
F: package/ncdu/
|
|
|
|
|
2018-11-16 23:52:53 +08:00
|
|
|
N: Brandon Maier <brandon.maier@rockwellcollins.com>
|
|
|
|
F: package/vmtouch/
|
|
|
|
|
2017-08-29 06:22:29 +08:00
|
|
|
N: Brock Williams <brock@cottonwoodcomputer.com>
|
|
|
|
F: package/pdmenu/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Carlo Caione <carlo.caione@gmail.com>
|
2019-11-10 21:29:11 +08:00
|
|
|
F: package/jailhouse/
|
2016-09-13 04:54:53 +08: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-10 03:53:33 +08:00
|
|
|
N: Cédric Chépied <cedric.chepied@gmail.com>
|
|
|
|
F: package/znc/
|
|
|
|
|
2017-06-19 00:28:09 +08:00
|
|
|
N: Chakra Divi <chakra@openedev.com>
|
2017-07-06 00:04:15 +08:00
|
|
|
F: board/friendlyarm/nanopi-m1
|
2017-07-11 00:28:38 +08:00
|
|
|
F: board/friendlyarm/nanopi-m1-plus
|
2017-06-19 00:28:09 +08:00
|
|
|
F: board/olimex/a13_olinuxino
|
2017-07-01 09:17:20 +08:00
|
|
|
F: board/orangepi/orangepi-plus
|
2017-07-06 00:04:15 +08:00
|
|
|
F: configs/nanopi_m1_defconfig
|
2017-07-11 00:28:38 +08:00
|
|
|
F: configs/nanopi_m1_plus_defconfig
|
2017-06-19 00:28:09 +08:00
|
|
|
F: configs/olimex_a13_olinuxino_defconfig
|
2017-07-01 09:17:20 +08:00
|
|
|
F: configs/orangepi_plus_defconfig
|
2017-06-19 00:28:09 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Chris Packham <judge.packham@gmail.com>
|
2019-01-25 17:13:22 +08:00
|
|
|
F: package/gstreamer1/gst1-shark/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/micropython/
|
|
|
|
F: package/micropython-lib/
|
|
|
|
F: package/syslog-ng/
|
|
|
|
|
2017-03-02 00:18:39 +08:00
|
|
|
N: Christian Kellermann <christian.kellermann@solectrix.de>
|
|
|
|
F: package/python-pylibftdi/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Christian Stewart <christian@paral.in>
|
2016-09-21 18:19:23 +08:00
|
|
|
F: linux/linux-ext-aufs.mk
|
|
|
|
F: package/aufs/
|
|
|
|
F: package/aufs-util/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/batman-adv/
|
2018-12-04 04:11:59 +08:00
|
|
|
F: package/docker-cli/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/docker-containerd/
|
|
|
|
F: package/docker-engine/
|
2018-03-04 08:43:42 +08:00
|
|
|
F: package/docker-proxy/
|
2020-06-20 02:04:31 +08:00
|
|
|
F: package/fuse-overlayfs/
|
2018-11-08 04:12:59 +08:00
|
|
|
F: package/go/
|
2020-05-18 11:48:58 +08:00
|
|
|
F: package/mbpfan/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/mosh/
|
2019-04-08 15:13:36 +08:00
|
|
|
F: package/pkg-golang.mk
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/rtl8821au/
|
|
|
|
F: package/runc/
|
2018-08-11 02:42:55 +08:00
|
|
|
F: package/tini/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2019-08-11 20:07:22 +08:00
|
|
|
N: Christophe Priouzeau <christophe.priouzeau@st.com>
|
|
|
|
F: board/stmicroelectronics/stm32f429-disco/
|
|
|
|
F: board/stmicroelectronics/stm32f469-disco/
|
|
|
|
F: configs/stm32f429_disco_defconfig
|
|
|
|
F: configs/stm32f469_disco_defconfig
|
|
|
|
|
2016-09-13 04:54:53 +08: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-11 00:14:45 +08:00
|
|
|
N: Christopher McCrory <chrismcc@gmail.com>
|
|
|
|
F: package/perl-appconfig/
|
2018-08-11 00:14:46 +08:00
|
|
|
F: package/perl-astro-suntime/
|
2018-08-20 19:55:10 +08:00
|
|
|
F: package/perl-class-load/
|
2018-08-11 00:14:48 +08:00
|
|
|
F: package/perl-class-std/
|
2018-08-12 02:27:36 +08:00
|
|
|
F: package/perl-class-std-fast/
|
2018-08-20 19:55:04 +08:00
|
|
|
F: package/perl-data-dump/
|
2018-08-12 02:27:37 +08:00
|
|
|
F: package/perl-data-optlist/
|
2018-08-11 00:14:49 +08:00
|
|
|
F: package/perl-data-uuid/
|
2018-08-11 00:14:50 +08:00
|
|
|
F: package/perl-date-manip/
|
2018-08-20 19:55:03 +08:00
|
|
|
F: package/perl-dbd-mysql/
|
2018-08-11 00:14:51 +08:00
|
|
|
F: package/perl-dbi/
|
2018-08-11 00:14:52 +08:00
|
|
|
F: package/perl-device-serialport/
|
2018-08-20 19:55:08 +08:00
|
|
|
F: package/perl-dist-checkconflicts/
|
2018-08-11 00:14:53 +08:00
|
|
|
F: package/perl-file-slurp/
|
2018-08-11 00:14:54 +08:00
|
|
|
F: package/perl-io-interface/
|
2018-08-12 02:27:40 +08:00
|
|
|
F: package/perl-io-socket-multicast/
|
2018-08-11 00:14:55 +08:00
|
|
|
F: package/perl-json-maybexs/
|
2018-08-12 02:27:41 +08:00
|
|
|
F: package/perl-mime-tools/
|
2018-08-12 02:27:42 +08:00
|
|
|
F: package/perl-module-implementation/
|
2018-08-11 00:14:56 +08:00
|
|
|
F: package/perl-module-runtime/
|
2018-08-11 00:14:57 +08:00
|
|
|
F: package/perl-number-bytes-human/
|
2018-08-20 19:55:09 +08:00
|
|
|
F: package/perl-package-stash/
|
2018-08-11 00:14:58 +08:00
|
|
|
F: package/perl-params-util/
|
2018-08-11 00:14:59 +08:00
|
|
|
F: package/perl-sub-install/
|
2018-08-20 19:55:07 +08:00
|
|
|
F: package/perl-sys-cpu/
|
2018-08-11 00:15:00 +08:00
|
|
|
F: package/perl-sys-meminfo/
|
2018-08-11 00:15:01 +08:00
|
|
|
F: package/perl-sys-mmap/
|
2018-08-20 19:55:05 +08:00
|
|
|
F: package/perl-time-parsedate/
|
2018-08-20 19:55:06 +08:00
|
|
|
F: package/perl-x10/
|
2018-08-11 00:14:45 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Clayton Shotwell <clayton.shotwell@rockwellcollins.com>
|
|
|
|
F: package/audit/
|
|
|
|
F: package/checkpolicy/
|
2016-12-10 22:49:44 +08:00
|
|
|
F: package/cpio/
|
2016-09-13 04:54:53 +08: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 22:50:16 +08:00
|
|
|
F: package/policycoreutils/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2019-10-28 03:21:29 +08:00
|
|
|
N: Clément Péron <peron.clem@gmail.com>
|
|
|
|
F: board/beelink/gs1/
|
|
|
|
F: configs/beelink_gs1_defconfig
|
|
|
|
|
2017-05-06 22:07:07 +08:00
|
|
|
N: Corentin Guillevic <corentin.guillevic@smile.fr>
|
|
|
|
F: package/libloki/
|
|
|
|
|
2016-09-21 18:19:23 +08:00
|
|
|
N: Cyril Bur <cyrilbur@gmail.com>
|
2016-11-09 07:09:44 +08:00
|
|
|
F: arch/Config.in.powerpc
|
2016-09-21 18:19:23 +08:00
|
|
|
F: package/kvm-unit-tests
|
|
|
|
|
2019-02-19 05:55:03 +08:00
|
|
|
N: Daniel J. Leach <dleach@belcan.com>
|
|
|
|
F: package/dacapo/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Damien Lanson <damien@kal-host.com>
|
|
|
|
F: package/libvdpau/
|
|
|
|
F: package/log4cpp/
|
|
|
|
|
2018-07-18 04:46:13 +08:00
|
|
|
N: Daniel Nicoletti <dantti12@gmail.com>
|
|
|
|
F: package/cutelyst/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Daniel Price <daniel.price@gmail.com>
|
|
|
|
F: package/nodejs/
|
|
|
|
F: package/redis/
|
|
|
|
|
|
|
|
N: Daniel Sangue <daniel.sangue@sangue.ch>
|
|
|
|
F: package/libftdi1/
|
|
|
|
|
|
|
|
N: Danomi Manchego <danomimanchego123@gmail.com>
|
|
|
|
F: package/cjson/
|
|
|
|
F: package/jq/
|
2016-09-21 18:19:23 +08:00
|
|
|
F: package/libwebsockets/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/ljsyscall/
|
|
|
|
F: package/lua-cjson/
|
|
|
|
F: package/luaexpat/
|
|
|
|
F: package/xinetd/
|
|
|
|
|
|
|
|
N: David Bachelart <david.bachelart@bbright.com>
|
|
|
|
F: package/ccrypt/
|
|
|
|
F: package/dos2unix/
|
|
|
|
F: package/ipmiutil/
|
2017-01-28 18:04:21 +08:00
|
|
|
F: package/jsmn/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-daemon/
|
2017-01-27 16:38:08 +08:00
|
|
|
F: package/sslh/
|
2017-01-25 18:45:37 +08:00
|
|
|
F: package/udpxy/
|
2016-09-13 04:54:53 +08: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/
|
|
|
|
|
2016-11-03 05:01:12 +08: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 09:04:53 +08:00
|
|
|
F: package/brickd/
|
2016-11-03 05:01:12 +08:00
|
|
|
F: package/ev3dev-linux-drivers/
|
|
|
|
|
2020-05-02 04:54:58 +08:00
|
|
|
N: Davide Viti <zinosat@gmail.com>
|
2019-10-28 03:50:46 +08:00
|
|
|
F: board/friendlyarm/nanopi-r1/
|
|
|
|
F: configs/nanopi_r1_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/flann/
|
|
|
|
F: package/python-paho-mqtt/
|
|
|
|
F: package/qhull/
|
|
|
|
F: package/tcllib/
|
|
|
|
|
|
|
|
N: Denis Bodor <lefinnois@lefinnois.net>
|
|
|
|
F: package/libstrophe/
|
|
|
|
|
|
|
|
N: Dimitrios Siganos <dimitris@siganos.org>
|
|
|
|
F: package/wireless-regdb/
|
|
|
|
|
|
|
|
N: Dominik Faessler <faessler@was.ch>
|
|
|
|
F: package/logsurfer/
|
|
|
|
F: package/python-id3/
|
|
|
|
|
|
|
|
N: Doug Kehn <rdkehn@yahoo.com>
|
|
|
|
F: package/nss-pam-ldapd/
|
|
|
|
F: package/sp-oops-extract/
|
|
|
|
F: package/unscd/
|
|
|
|
|
2017-10-01 06:13:03 +08:00
|
|
|
N: Dushara Jayasinghe <nidujay@gmail.com>
|
|
|
|
F: package/prosody/
|
|
|
|
|
2019-03-14 23:34:34 +08:00
|
|
|
N: Eloi Bail <eloi.bail@savoirfairelinux.com>
|
|
|
|
F: package/bayer2rgb-neon/
|
2019-03-14 23:34:35 +08:00
|
|
|
F: package/gstreamer1/gst1-plugins-bayer2rgb-neon/
|
2019-03-14 23:34:34 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Eric Le Bihan <eric.le.bihan.dev@free.fr>
|
2017-10-29 21:10:52 +08:00
|
|
|
F: docs/manual/adding-packages-meson.txt
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/adwaita-icon-theme/
|
2016-12-11 22:10:44 +08:00
|
|
|
F: package/darkhttpd/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/eudev/
|
2016-12-20 05:29:08 +08:00
|
|
|
F: package/execline/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/hicolor-icon-theme/
|
|
|
|
F: package/jemalloc/
|
2019-09-30 01:10:17 +08:00
|
|
|
F: package/mdevd/
|
2017-10-29 21:10:51 +08:00
|
|
|
F: package/meson/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/ninja/
|
2018-05-16 03:51:52 +08:00
|
|
|
F: package/pkg-meson.mk
|
2018-02-05 02:07:41 +08: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-05 02:07:43 +08:00
|
|
|
F: package/rust/
|
2016-12-20 05:29:09 +08:00
|
|
|
F: package/s6/
|
2016-12-20 05:29:10 +08:00
|
|
|
F: package/s6-dns/
|
2016-12-20 05:29:15 +08:00
|
|
|
F: package/s6-linux-init/
|
2016-12-20 05:29:14 +08:00
|
|
|
F: package/s6-linux-utils/
|
2016-12-20 05:29:11 +08:00
|
|
|
F: package/s6-networking/
|
2016-12-20 05:29:13 +08:00
|
|
|
F: package/s6-portable-utils/
|
2016-12-20 05:29:12 +08:00
|
|
|
F: package/s6-rc/
|
2016-12-23 18:20:29 +08:00
|
|
|
F: package/skalibs/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/smack/
|
2016-09-21 18:19:23 +08:00
|
|
|
F: package/xvisor/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Eric Limpens <limpens@gmail.com>
|
|
|
|
F: package/pifmrds/
|
|
|
|
F: package/ympd/
|
|
|
|
|
|
|
|
N: Erico Nunes <nunes.erico@gmail.com>
|
2018-12-08 23:01:21 +08:00
|
|
|
F: board/aarch64-efi/
|
|
|
|
F: configs/aarch64_efi_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/acpica/
|
|
|
|
F: package/acpitool/
|
|
|
|
F: package/efibootmgr/
|
|
|
|
F: package/efivar/
|
2016-10-04 22:52:23 +08:00
|
|
|
F: package/fwts/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/spi-tools/
|
|
|
|
F: package/xdotool/
|
2017-10-22 21:54:26 +08:00
|
|
|
F: configs/pc_x86_64_*
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2018-03-10 19:51:39 +08:00
|
|
|
N: Erik Larsson <karl.erik.larsson@gmail.com>
|
|
|
|
F: package/imx-mkimage/
|
|
|
|
|
2016-09-13 04:54:53 +08: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 13:44:35 +08:00
|
|
|
N: Esben Haabendal <esben@haabendal.dk>
|
|
|
|
F: boot/gummiboot/
|
2019-09-17 16:50:33 +08:00
|
|
|
F: package/python-kiwisolver/
|
2019-03-21 13:44:35 +08:00
|
|
|
|
2019-01-30 18:47:23 +08:00
|
|
|
N: Etienne Carriere <etienne.carriere@linaro.org>
|
|
|
|
F: boot/optee-os/
|
2019-01-30 18:47:27 +08:00
|
|
|
F: package/optee-benchmark/
|
2019-01-30 18:47:24 +08:00
|
|
|
F: package/optee-client/
|
2019-01-30 18:47:25 +08:00
|
|
|
F: package/optee-examples/
|
2019-01-30 18:47:26 +08:00
|
|
|
F: package/optee-test/
|
2019-01-30 18:47:23 +08:00
|
|
|
|
2018-04-11 01:12:37 +08:00
|
|
|
N: Eugene Tarassov <eugene@largest.net>
|
|
|
|
F: package/tcf-agent/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Evan Zelkowitz <evan.zelkowitz@gmail.com>
|
|
|
|
F: package/sdl_gfx/
|
|
|
|
|
|
|
|
N: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
|
2018-03-08 06:41:27 +08:00
|
|
|
F: board/ci20/
|
|
|
|
F: configs/ci20_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
F: arch/Config.in.nios2
|
|
|
|
F: package/fio/
|
|
|
|
F: package/iptraf-ng/
|
|
|
|
F: package/jimtcl/
|
2016-12-10 21:59:29 +08:00
|
|
|
F: package/mimic/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/nodm/
|
|
|
|
F: package/openbox/
|
2017-01-29 23:20:18 +08:00
|
|
|
F: package/rtl8723bs/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/supertuxkart/
|
|
|
|
|
|
|
|
N: Fabio Estevam <festevam@gmail.com>
|
2019-08-11 20:07:25 +08:00
|
|
|
F: board/freescale/warpboard/
|
2016-09-21 18:19:23 +08:00
|
|
|
F: board/warp7/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: configs/freescale_imx*
|
2018-03-05 08:21:30 +08:00
|
|
|
F: configs/imx23evk_defconfig
|
|
|
|
F: configs/imx6-sabre*
|
2017-11-14 21:18:11 +08:00
|
|
|
F: configs/imx6slevk_defconfig
|
2017-11-24 15:51:56 +08:00
|
|
|
F: configs/imx6sx-sdb_defconfig
|
2017-11-23 22:38:42 +08:00
|
|
|
F: configs/imx6ulevk_defconfig
|
2020-07-16 08:25:59 +08:00
|
|
|
F: configs/imx6ullevk_defconfig
|
2016-10-01 05:37:03 +08:00
|
|
|
F: configs/imx6ulpico_defconfig
|
2018-07-09 05:16:19 +08:00
|
|
|
F: configs/imx7d-sdb_defconfig
|
2018-03-05 08:21:30 +08:00
|
|
|
F: configs/imx7dpico_defconfig
|
|
|
|
F: configs/mx25pdk_defconfig
|
|
|
|
F: configs/mx51evk_defconfig
|
|
|
|
F: configs/mx53loco_defconfig
|
2016-10-01 05:37:03 +08:00
|
|
|
F: configs/mx6cubox_defconfig
|
2016-12-29 01:42:29 +08:00
|
|
|
F: configs/mx6sx_udoo_neo_defconfig
|
2016-11-04 02:40:17 +08:00
|
|
|
F: configs/mx6udoo_defconfig
|
2016-12-29 01:42:29 +08:00
|
|
|
F: configs/wandboard_defconfig
|
2016-09-21 18:19:23 +08:00
|
|
|
F: configs/warp7_defconfig
|
2019-08-11 20:07:25 +08:00
|
|
|
F: configs/warpboard_defconfig
|
2017-04-10 01:44:02 +08:00
|
|
|
F: package/atest/
|
2017-02-15 18:31:42 +08:00
|
|
|
F: package/kmscube/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Fabio Porcedda <fabio.porcedda@gmail.com>
|
|
|
|
F: package/netsurf-buildsystem/
|
|
|
|
|
2018-09-28 21:59:21 +08:00
|
|
|
N: Fabio Urquiza <fabiorush@gmail.com>
|
|
|
|
F: package/bitcoin/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Fabrice Fontaine <fabrice.fontaine@orange.com>
|
|
|
|
F: package/domoticz/
|
2017-03-25 04:38:50 +08:00
|
|
|
F: package/libmediaart/
|
2017-02-13 04:26:56 +08:00
|
|
|
F: package/libmaxminddb/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/openzwave/
|
|
|
|
|
|
|
|
N: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
2020-02-28 00:30:42 +08:00
|
|
|
F: package/bearssl/
|
2020-02-28 01:47:12 +08:00
|
|
|
F: package/belle-sip/
|
2020-02-28 01:47:13 +08:00
|
|
|
F: package/belr/
|
2017-10-30 00:12:55 +08:00
|
|
|
F: package/boinc/
|
2018-06-04 03:19:31 +08:00
|
|
|
F: package/cairo/
|
2018-09-06 02:23:20 +08:00
|
|
|
F: package/duktape/
|
2018-08-30 05:48:05 +08:00
|
|
|
F: package/expat/
|
2017-12-19 05:10:39 +08:00
|
|
|
F: package/flatbuffers/
|
2018-05-20 16:28:53 +08:00
|
|
|
F: package/gerbera/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/gtksourceview/
|
2016-09-21 18:19:23 +08:00
|
|
|
F: package/gssdp/
|
|
|
|
F: package/gupnp/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/gupnp-dlna/
|
|
|
|
F: package/gupnp-tools/
|
2018-09-22 04:56:19 +08:00
|
|
|
F: package/haproxy/
|
2017-04-01 22:03:50 +08:00
|
|
|
F: package/hiredis/
|
2018-03-28 05:24:01 +08:00
|
|
|
F: package/i2pd/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/igd2-for-linux/
|
2018-06-19 02:14:36 +08:00
|
|
|
F: package/json-c/
|
2018-05-09 18:28:49 +08:00
|
|
|
F: package/lcms2/
|
2018-05-03 01:14:38 +08:00
|
|
|
F: package/lftp/
|
2018-04-10 04:18:45 +08:00
|
|
|
F: package/libcap-ng/
|
2018-03-10 06:33:37 +08:00
|
|
|
F: package/libcdio-paranoia/
|
2018-04-30 04:23:58 +08:00
|
|
|
F: package/libcgicc/
|
|
|
|
F: package/libconfig/
|
|
|
|
F: package/libcue/
|
|
|
|
F: package/libebml/
|
2018-05-01 00:32:30 +08:00
|
|
|
F: package/libgee/
|
2018-04-07 20:04:21 +08:00
|
|
|
F: package/libglib2/
|
2018-05-01 00:32:30 +08:00
|
|
|
F: package/libgtk2/
|
|
|
|
F: package/libgtk3/
|
2019-03-15 05:25:59 +08:00
|
|
|
F: package/libhtp/
|
2018-05-03 01:14:38 +08:00
|
|
|
F: package/libidn/
|
2018-05-02 04:40:32 +08:00
|
|
|
F: package/libidn2/
|
2018-05-03 01:14:38 +08:00
|
|
|
F: package/libjpeg/
|
2018-05-09 18:28:49 +08:00
|
|
|
F: package/liblockfile/
|
2018-04-30 04:23:58 +08:00
|
|
|
F: package/libmatroska/
|
2018-03-09 00:50:06 +08:00
|
|
|
F: package/libmpdclient/
|
2018-05-09 18:28:49 +08:00
|
|
|
F: package/libnetfilter_conntrack/
|
|
|
|
F: package/libnetfilter_queue/
|
2020-06-24 04:31:24 +08:00
|
|
|
F: package/libnpupnp/
|
2018-06-04 03:19:31 +08:00
|
|
|
F: package/liboping/
|
|
|
|
F: package/libpfm4/
|
|
|
|
F: package/libraw/
|
|
|
|
F: package/libraw1394/
|
|
|
|
F: package/libroxml/
|
|
|
|
F: package/librsvg/
|
|
|
|
F: package/librsync/
|
2018-06-19 02:14:36 +08:00
|
|
|
F: package/libsoup/
|
|
|
|
F: package/libsoxr/
|
2017-11-19 04:32:02 +08:00
|
|
|
F: package/libupnp/
|
2017-11-19 04:24:40 +08:00
|
|
|
F: package/libupnp18/
|
2018-08-30 05:48:05 +08:00
|
|
|
F: package/libv4l/
|
2018-06-19 02:14:36 +08:00
|
|
|
F: package/libxslt/
|
2018-06-04 03:19:31 +08:00
|
|
|
F: package/mbedtls/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/minissdpd/
|
2018-08-30 05:48:05 +08:00
|
|
|
F: package/minizip/
|
2019-02-10 22:26:19 +08:00
|
|
|
F: package/mongodb/
|
2017-04-01 22:03:50 +08:00
|
|
|
F: package/motion/
|
2018-05-03 01:14:38 +08:00
|
|
|
F: package/mutt/
|
2018-03-09 00:42:52 +08:00
|
|
|
F: package/ncmpc/
|
2019-03-31 23:12:05 +08:00
|
|
|
F: package/oniguruma/
|
2018-06-04 03:19:31 +08:00
|
|
|
F: package/oprofile/
|
2018-05-01 00:32:30 +08:00
|
|
|
F: package/pcmanfm/
|
2019-04-19 17:19:28 +08:00
|
|
|
F: package/python-backcall/
|
2019-04-19 17:19:30 +08:00
|
|
|
F: package/python-jedi/
|
2019-04-19 17:19:29 +08:00
|
|
|
F: package/python-parso/
|
2020-06-12 04:56:06 +08:00
|
|
|
F: package/python-yatl/
|
2020-02-02 21:47:30 +08:00
|
|
|
F: package/rocksdb/
|
2017-10-31 16:39:33 +08:00
|
|
|
F: package/rygel/
|
2017-12-20 03:12:04 +08:00
|
|
|
F: package/safeclib/
|
2019-04-16 04:44:10 +08:00
|
|
|
F: package/suricata/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/tinycbor/
|
|
|
|
F: package/tinydtls/
|
2018-06-19 02:14:36 +08:00
|
|
|
F: package/tinymembench/
|
2018-05-09 18:28:49 +08:00
|
|
|
F: package/whois/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2020-03-24 05:01:22 +08:00
|
|
|
N: Fabrice Goucem <fabrice.goucem@oss.nxp.com>
|
|
|
|
F: board/freescale/imx6ullevk/
|
|
|
|
F: configs/freescale_imx6ullevk_defconfig
|
|
|
|
|
2018-03-14 21:17:50 +08:00
|
|
|
N: Falco Hyfing <hyfinglists@gmail.com>
|
|
|
|
F: package/python-pymodbus/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Floris Bos <bos@je-eigen-domein.nl>
|
|
|
|
F: package/ipmitool/
|
|
|
|
F: package/odhcploc/
|
|
|
|
|
|
|
|
N: Francisco Gonzalez <gzmorell@gmail.com>
|
|
|
|
F: package/ser2net/
|
|
|
|
|
|
|
|
N: Francois Perrad <francois.perrad@gadz.org>
|
|
|
|
F: board/olimex/a20_olinuxino
|
2019-08-11 20:07:32 +08:00
|
|
|
F: board/olimex/imx233_olinuxino/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: configs/olimex_a20_olinuxino_*
|
2019-08-11 20:07:32 +08:00
|
|
|
F: configs/olimex_imx233_olinuxino_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/4th/
|
2019-08-12 23:37:30 +08:00
|
|
|
F: package/cgilua/
|
2018-04-29 15:11:46 +08:00
|
|
|
F: package/chipmunk/
|
2019-02-06 04:41:52 +08:00
|
|
|
F: package/cog/
|
2019-09-19 02:19:37 +08:00
|
|
|
F: package/collectl/
|
2019-08-12 23:37:30 +08:00
|
|
|
F: package/copas/
|
|
|
|
F: package/coxpcall/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/dado/
|
|
|
|
F: package/ficl/
|
|
|
|
F: package/libtomcrypt/
|
|
|
|
F: package/libtommath/
|
2019-02-06 04:41:49 +08:00
|
|
|
F: package/libwpe/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/linenoise/
|
|
|
|
F: package/ljlinenoise/
|
|
|
|
F: package/lpeg/
|
|
|
|
F: package/lpty/
|
|
|
|
F: package/lrandom/
|
|
|
|
F: package/lsqlite3/
|
|
|
|
F: package/lua*
|
|
|
|
F: package/lzlib/
|
|
|
|
F: package/moarvm/
|
2018-12-05 21:40:40 +08:00
|
|
|
F: package/netsurf/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/perl*
|
|
|
|
F: package/pkg-perl.mk
|
|
|
|
F: package/pkg-luarocks.mk
|
2019-08-12 23:37:30 +08:00
|
|
|
F: package/rings/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/tekui/
|
2019-02-06 04:41:50 +08:00
|
|
|
F: package/wpebackend-fdo/
|
2019-02-06 04:41:51 +08:00
|
|
|
F: package/wpewebkit/
|
2019-08-12 23:37:30 +08:00
|
|
|
F: package/wsapi/
|
2017-09-03 00:56:42 +08:00
|
|
|
F: package/wsapi-fcgi/
|
2017-09-03 00:56:41 +08:00
|
|
|
F: package/wsapi-xavante/
|
2019-08-12 23:37:30 +08:00
|
|
|
F: package/xavante/
|
2017-07-02 00:40:39 +08:00
|
|
|
F: utils/scancpan
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Frank Hunleth <fhunleth@troodon-software.com>
|
|
|
|
F: package/am335x-pru-package/
|
2017-05-24 22:01:01 +08:00
|
|
|
F: package/libconfuse/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/libdmtx/
|
|
|
|
F: package/libsodium/
|
2016-10-12 04:44:50 +08:00
|
|
|
F: package/php-amqp/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-cherrypy/
|
2016-10-25 23:49:08 +08:00
|
|
|
F: package/rabbitmq-server/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/sane-backends/
|
|
|
|
F: package/ucl/
|
|
|
|
F: package/upx/
|
|
|
|
F: package/zxing-cpp/
|
|
|
|
|
2020-01-30 17:56:28 +08:00
|
|
|
N: Frank Vanbever <frank.vanbever@essensium.com>
|
2020-02-04 18:07:32 +08:00
|
|
|
F: package/elixir/
|
2020-01-30 17:56:28 +08:00
|
|
|
F: package/libmodsecurity/
|
2020-01-30 17:56:29 +08:00
|
|
|
F: package/nginx-modsecurity/
|
2020-01-30 17:56:28 +08:00
|
|
|
|
2018-12-04 07:54:00 +08:00
|
|
|
N: Gaël Portay <gael.portay@collabora.com>
|
2017-04-02 06:36:51 +08:00
|
|
|
F: package/qt5/qt5virtualkeyboard/
|
qt5webengine: new package
This patch is based on works [1] and [2].
With this patch, one can run the Qt5 WebEngine quicknanobrowser sample
with the following options.
BR2_TOOLCHAIN_BUILDROOT_LIBC="glibc" and
BR2_TOOLCHAIN_BUILDROOT_CXX (Qt 5 needs a toolchain w/ wchar, NPTL, C++,
dynamic library; for now it builds only with glibc)
BR2_PACKAGE_LIBERATION (Qt needs at least one font)
BR2_PACKAGE_QT5BASE_EXAMPLES (to install quicknanobrowser sample)
BR2_PACKAGE_QT5BASE_GIF (do display gif)
BR2_PACKAGE_QT5BASE_JPEG (do display jpeg)
BR2_PACKAGE_QT5BASE_PNG (do display png)
BR2_PACKAGE_QT5QUICKCONTROLS (needed by webengine)
BR2_PACKAGE_QT5QUICKCONTROLS2 (needed by webengine)
BR2_PACKAGE_QT5WEBENGINE (because it is what we want)
Qt WebEngine requires an Open(E)GL-capable backend. As an example, the
package rpi-userland must be enabled to build for a rpi.
BR2_PACKAGE_RPI_USERLAND (to enable OpenGL ES backend)
To browse for HTTPS websites, please consider adding the following
options as well for SSL/TLS.
BR2_PACKAGE_CA_CERT (for certificates)
BR2_PACKAGE_NTPD (to sync date for certificates)
Since version 5.9, chromium requires udev at runtime (see note 4).
BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV (input backend)
To run quicknanobrowser
# cd /usr/lib/qt/examples/webengine/quicknanobrowser/
# ./quicknanobrowser https://www.buildroot.org/
Note: The chromium.inc has been generated using the following command.
( echo 'CHROMIUM_LICENSE_FILES = \' &&
cd output/build/qt5webengine-5.9.1/ && \
find "src/3rdparty/chromium/" -type f -iname "*LICENSE*" -o -iname "*COPYING*" -o -iname "*GPL*" | \
sed -e '/\.asm$/d' \
-e '/\.h$/d' \
-e '/\.c$/d' \
-e '/\.cc$/d' \
-e '/\.cpp$/d' \
-e '/\.pyc\?$/d' \
-e '/\.pl$/d' \
-e '/\.sha1$/d' \
-e '/\.patch$/d' \
-e '/licensecheck/d' \
-e 's,^,\t,' \
-e 's,$, \\,' | \
sort && \
echo '' ) >package/qt5/qt5webengine/chromium.inc
Note 2: Since 5.9.1, the chromium's copy of opus fails with neon [3].
Qt WebEngine can uses buildroot ffmpeg copy which compiles fine (using
qmake flag WEBENGINE_CONFIG+=use_system_ffmpeg). It implies selecting
the following options.
BR2_PACKAGE_FFMPEG
BR2_PACKAGE_OPUS
BR2_PACKAGE_LIBVPX
BR2_PACKAGE_WEBP
BR2_PACKAGE_WEBP_DEMUX
In file included from ../../3rdparty/chromium/third_party/opus/src/silk/arm/NSQ_neon.c:31:0:
/home/gportay/src/buildroot/output-rpi3-qt5.9/host/lib/gcc/arm-buildroot-linux-gnueabihf/6.4.0/include/arm_neon.h:8997:1: error: inlining failed in call to always_inline ‘vld1q_s32’: target specific option mismatch
vld1q_s32 (const int32_t * __a)
^~~~~~~~~
../../3rdparty/chromium/third_party/opus/src/silk/arm/NSQ_neon.c:40:15: note: called from here
int32x4_t coef0 = vld1q_s32(coef32);
^~~~~
../../3rdparty/chromium/third_party/opus/src/silk/arm/NSQ_neon.c: At top level:
cc1: warning: unrecognized command line option ‘-Wno-#pragma-messages’
Note 3: Version 5.6.2 causes a build issue while building chromium. The
build against this version is disabled until the release 5.6.3 is out.
Note 4: Here is trace when udev does not run
# cd /usr/lib/qt/examples/webengine/quicknanobrowser
# ./quicknanobrowser
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
Unable to query physical screen size, defaulting to 100 dpi.
To override, set QT_QPA_EGLFS_PHYSICAL_WIDTH and QT_QPA_EGLFS_PHYSICAL_HEIGHT (in millimeters).
[0101/000248.161973:WARNING:resource_bundle_qt.cpp(114)] locale_file_path.empty() for locale
[0101/000248.384693:WARNING:resource_bundle_qt.cpp(114)] locale_file_path.empty() for locale
[202:223:0101/000248.484954:FATAL:udev_loader.cc(38)] Check failed: false.
#0 0x0000742b93de <unknown>
#1 0x0000742c3c38 <unknown>
#2 0x000073e1e1aa <unknown>
#3 0x000073e1d96e <unknown>
#4 0x000073e1defa <unknown>
#5 0x000074af6364 <unknown>
#6 0x000074302878 <unknown>
#7 0x0000742c8fee <unknown>
#8 0x0000742c9f44 <unknown>
#9 0x0000742ca21e <unknown>
#10 0x0000742cac4c <unknown>
#11 0x0000742c87b2 <unknown>
#12 0x0000742da4f6 <unknown>
#13 0x000073ed9d38 <unknown>
#14 0x000073eda03c <unknown>
#15 0x0000742e9aec <unknown>
#16 0x0000742e71dc <unknown>
Aborted
Note 5: On rpi and depending on what is insinde the .config, more GPU
memory should be allocated to run properly qt samples.
#0 0x0000742c63de <unknown>
#1 0x0000742d0c38 <unknown>
#2 0x0000749d7bde <unknown>
#3 0x0000749e3c70 <unknown>
#4 0x00007530227c <unknown>
#5 0x000075302480 <unknown>
#6 0x0000752fb1e4 <unknown>
#7 0x00007430f878 <unknown>
#8 0x0000742d5fee <unknown>
#9 0x0000742d6f44 <unknown>
#10 0x0000742d721e <unknown>
#11 0x0000742d7ad6 <unknown>
#12 0x0000742d57b2 <unknown>
#13 0x0000742e74f6 <unknown>
#14 0x0000742f6a74 <unknown>
#15 0x0000742f41dc <unknown>
Received signal 6
#0 0x0000742c63de <unknown>
#1 0x0000742c66a0 <unknown>
#2 0x0000725b5d10 <unknown>
[end of stack trace]
qml: Render process exited with code 256 (abnormal exit)
# mount /dev/mmcblk0p1 /mnt
# sed '/^gpu_mem_/s,=.*,=200,' -i /mnt/config.txt
# umount /mnt
Note 6: The first patch fixes a build issue when samples are compiled
without the support of printing [4]. This patch is already merged in
branch 5.9 [5] and concerns only 5.9.1.
085c2c52 Always compile QWebEnginePage::print
It fixes the error below.
.obj/browsermainwindow.o: In function `BrowserMainWindow::printRequested(QWebEnginePage*)': browsermainwindow.cpp:(.text+0x2cc0): undefined reference to `QWebEnginePage::print(QPrinter*, QWebEngineCallback<bool> const&)'
The second patch loads both libEGL and libGLESv2 symbols implicitly
instead of loading them with explicitly using hard-coded locations. It
fixes a bug when providers of lib*GL does not create libraries named
libEGL.so.1 and libGLESv2.s2 [6]. This patch is already merged in branch
5.9 [7].
d4c621f6 Load libEGL and libGLES2 symbols implicitly
It fixes the error below.
[327:347:1221/085837:ERROR:surface_factory_qt.cpp(68)] Failed to load /usr/lib/libGLESv2.so.2: /usr/lib/libGLESv2.so.2: cannot open shared object file: No such file or directory
[1]: http://lists.busybox.net/pipermail/buildroot/2015-July/132010.html
[2]: https://patchwork.ozlabs.org/patch/640633/
[3]: https://patchwork.ozlabs.org/patch/791332/
[4]: https://bugreports.qt.io/browse/QTBUG-61510
[5]: https://codereview.qt-project.org/#/c/198041/
[6]: https://bugreports.qt.io/browse/QTBUG-57761
[7]: https://codereview.qt-project.org/#/c/199554/
Cc: Akihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp>
Cc: Julien Corjon <corjon.j@ecagroup.com>
Signed-off-by: Gaël PORTAY <gael.portay@savoirfairelinux.com>
[Arnout:
- move more dependencies to _ARCH_DEPENDS;
- mention all toolchain dependencies in the comments]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2017-08-16 04:38:53 +08:00
|
|
|
F: package/qt5/qt5webengine/
|
2018-07-01 11:11:53 +08:00
|
|
|
F: package/qt5/qt5webkit/
|
2017-11-29 12:50:38 +08:00
|
|
|
F: package/qt5/qt5webkit-examples/
|
2017-04-02 06:36:51 +08:00
|
|
|
|
2020-03-16 09:58:37 +08:00
|
|
|
N: Gao Xiang <hsiangkao@aol.com>
|
|
|
|
F: package/erofs-utils/
|
|
|
|
|
2019-02-17 18:22:43 +08:00
|
|
|
N: Gary Bisson <bisson.gary@gmail.com>
|
2016-09-13 04:54:53 +08:00
|
|
|
F: board/boundarydevices/
|
|
|
|
F: configs/nitrogen*
|
|
|
|
F: package/freescale-imx/
|
|
|
|
F: package/gstreamer1/gst1-imx/
|
|
|
|
F: package/libimxvpuapi/
|
2016-10-27 00:08:03 +08:00
|
|
|
F: package/mfgtools/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/sshpass/
|
2016-11-02 16:59:11 +08:00
|
|
|
F: package/x11r7/xdriver_xf86-video-imx-viv/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Geoff Levand <geoff@infradead.org>
|
|
|
|
F: package/flannel/
|
|
|
|
|
|
|
|
N: Geoffrey Ragot <geoffreyragot@gmail.com>
|
|
|
|
F: package/python-pycli/
|
|
|
|
F: package/python-pyyaml/
|
|
|
|
|
2019-08-11 20:07:31 +08:00
|
|
|
N: Gerome Burlats <gerome.burlats@smile.fr>
|
|
|
|
F: board/qemu/
|
|
|
|
F: configs/qemu_*
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Gilles Talis <gilles.talis@gmail.com>
|
2019-06-15 02:26:46 +08:00
|
|
|
F: board/freescale/imx8mmevk/
|
|
|
|
F: configs/freescale_imx8mmevk_defconfig
|
2019-12-22 21:23:14 +08:00
|
|
|
F: package/cctz/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/fdk-aac/
|
|
|
|
F: package/httping/
|
|
|
|
F: package/iozone/
|
2017-03-19 16:07:52 +08:00
|
|
|
F: package/leptonica/
|
2020-02-23 00:35:30 +08:00
|
|
|
F: package/libeXosip2/
|
2019-10-13 17:30:49 +08:00
|
|
|
F: package/libolm/
|
2020-02-23 00:35:30 +08:00
|
|
|
F: package/libosip2/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/ocrad/
|
2019-08-10 13:23:53 +08:00
|
|
|
F: package/restclient-cpp/
|
2017-03-19 16:07:53 +08:00
|
|
|
F: package/tesseract-ocr/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/webp/
|
2018-10-07 17:17:01 +08:00
|
|
|
F: package/xapian/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2019-09-17 04:04:45 +08:00
|
|
|
N: Giulio Benetti <giulio.benetti@benettiengineering.com>
|
2019-08-29 01:19:23 +08:00
|
|
|
F: package/at/
|
2019-09-03 18:27:38 +08:00
|
|
|
F: package/libnspr/
|
|
|
|
F: package/libnss/
|
2019-05-15 23:06:38 +08:00
|
|
|
F: package/minicom/
|
2020-01-18 07:16:08 +08:00
|
|
|
F: package/nfs-utils/
|
2018-02-15 21:57:17 +08:00
|
|
|
F: package/sunxi-mali-mainline/
|
2018-02-15 21:57:52 +08:00
|
|
|
F: package/sunxi-mali-mainline-driver/
|
2018-02-15 21:57:17 +08:00
|
|
|
|
2016-09-13 04:54:53 +08: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 18:16:17 +08:00
|
|
|
N: Grzegorz Blach <grzegorz@blach.pl>
|
2018-11-03 22:49:12 +08:00
|
|
|
F: fs/f2fs/
|
2018-09-13 19:56:55 +08:00
|
|
|
F: package/bluez5_utils-headers/
|
2018-10-27 04:00:15 +08:00
|
|
|
F: package/f2fs-tools/
|
2018-09-29 02:00:33 +08:00
|
|
|
F: package/pigpio/
|
2019-03-14 06:02:52 +08:00
|
|
|
F: package/python-aioblescan/
|
2019-09-27 03:27:18 +08:00
|
|
|
F: package/python-bluezero/
|
2019-11-20 00:51:54 +08:00
|
|
|
F: package/python-crontab/
|
2018-08-28 18:16:18 +08:00
|
|
|
F: package/python-falcon/
|
2019-07-05 19:57:11 +08:00
|
|
|
F: package/python-ifaddr/
|
2019-03-18 03:05:39 +08:00
|
|
|
F: package/python-hiredis/
|
2018-08-28 18:16:17 +08:00
|
|
|
F: package/python-mimeparse/
|
2018-09-29 02:00:34 +08:00
|
|
|
F: package/python-pigpio/
|
2018-08-30 18:18:48 +08:00
|
|
|
F: package/python-pyjwt/
|
2019-03-18 03:05:40 +08:00
|
|
|
F: package/python-redis/
|
2019-09-21 18:31:42 +08:00
|
|
|
F: package/python-rpi-ws281x/
|
2018-11-07 23:59:53 +08:00
|
|
|
F: package/python-wtforms/
|
2018-08-28 18:16:17 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Guillaume Gardet <guillaume.gardet@oliseo.fr>
|
|
|
|
F: package/c-icap/
|
|
|
|
F: package/c-icap-modules/
|
|
|
|
F: package/sdl2/
|
|
|
|
|
|
|
|
N: Guillaume William Brs <guillaume.bressaix@gmail.com>
|
2020-06-22 18:53:59 +08:00
|
|
|
F: package/libnids/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/liquid-dsp/
|
2018-04-12 21:18:51 +08:00
|
|
|
F: package/pixiewps/
|
2020-06-09 05:30:43 +08:00
|
|
|
F: package/python-pybind/
|
2018-04-12 19:44:33 +08:00
|
|
|
F: package/reaver/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2017-03-03 09:20:20 +08:00
|
|
|
N: Guo Ren <ren_guo@c-sky.com>
|
|
|
|
F: arch/Config.in.csky
|
2017-03-06 19:52:32 +08:00
|
|
|
F: board/csky/
|
2019-06-13 23:14:30 +08:00
|
|
|
F: board/qemu/csky
|
2017-03-06 19:52:32 +08:00
|
|
|
F: configs/csky_*
|
2019-06-13 23:14:30 +08:00
|
|
|
F: configs/qemu_csky*
|
2017-03-03 09:20:20 +08:00
|
|
|
|
2018-08-22 21:35:00 +08:00
|
|
|
N: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
|
|
|
|
F: configs/arm_juno_defconfig
|
|
|
|
F: board/arm/juno/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
|
|
|
|
F: package/gnuradio/
|
2017-02-10 22:01:12 +08:00
|
|
|
F: package/gqrx/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/gr-osmosdr/
|
2020-08-12 05:42:48 +08:00
|
|
|
F: package/librtlsdr/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/libusbgx/
|
2020-04-28 14:42:24 +08:00
|
|
|
F: package/matio/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-cheetah/
|
|
|
|
F: package/python-markdown/
|
2018-02-03 05:42:05 +08:00
|
|
|
F: package/python-remi/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-sip/
|
2020-08-24 20:02:46 +08:00
|
|
|
F: package/uhd/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2019-10-11 20:40:42 +08:00
|
|
|
N: Heiko Thiery <heiko.thiery@gmail.com>
|
2019-10-11 20:40:43 +08:00
|
|
|
F: package/libnetconf2/
|
2019-10-11 20:40:42 +08:00
|
|
|
F: package/libyang/
|
2020-06-16 20:16:45 +08:00
|
|
|
F: package/netopeer2/
|
2019-10-28 17:03:26 +08:00
|
|
|
F: package/sysrepo/
|
2019-10-11 20:40:42 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Henrique Camargo <henrique@henriquecamargo.com>
|
|
|
|
F: package/json-glib/
|
|
|
|
|
|
|
|
N: Hiroshi Kawashima <kei-k@ca2.so-net.ne.jp>
|
|
|
|
F: package/gauche/
|
|
|
|
F: package/gmrender-resurrect/
|
|
|
|
F: package/squeezelite/
|
|
|
|
|
2020-08-29 15:24:16 +08:00
|
|
|
N: Horatiu Vultur <horatiu.vultur@microchip.com>
|
|
|
|
F: package/easyframes/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Ian Haylock <haylocki@yahoo.co.uk>
|
|
|
|
F: package/python-rpi-gpio/
|
|
|
|
|
|
|
|
N: Ignacy Gawędzki <ignacy.gawedzki@green-communications.fr>
|
|
|
|
F: package/angularjs/
|
|
|
|
|
2017-02-15 16:38:52 +08:00
|
|
|
N: Ilias Apalodimas <apalos@gmail.com>
|
|
|
|
F: package/keepalived/
|
|
|
|
|
2018-12-19 02:11:02 +08:00
|
|
|
N: Ilya Averyanov <averyanovin@gmail.com>
|
|
|
|
F: package/exempi/
|
|
|
|
|
2017-12-05 13:42:35 +08:00
|
|
|
N: Ismael Luceno <ismael@iodev.co.uk>
|
|
|
|
F: package/axel/
|
|
|
|
|
2017-06-13 02:21:41 +08:00
|
|
|
N: Jagan Teki <jagan@amarulasolutions.com>
|
2018-01-30 20:03:53 +08:00
|
|
|
F: board/amarula/
|
2018-01-30 20:03:55 +08:00
|
|
|
F: board/asus/
|
2017-10-19 17:45:23 +08:00
|
|
|
F: board/bananapi/
|
2017-06-13 02:21:41 +08:00
|
|
|
F: board/engicam/
|
2017-12-20 17:53:33 +08:00
|
|
|
F: board/friendlyarm/nanopi-a64/
|
2017-12-20 17:53:34 +08:00
|
|
|
F: board/friendlyarm/nanopi-neo2/
|
2019-09-24 15:20:07 +08:00
|
|
|
F: board/olimex/a33_olinuxino/
|
2017-12-20 17:53:35 +08:00
|
|
|
F: board/olimex/a64-olinuxino/
|
2018-11-03 20:56:07 +08:00
|
|
|
F: board/orangepi/orangepi-lite2/
|
2018-11-03 20:56:06 +08:00
|
|
|
F: board/orangepi/orangepi-one-plus
|
2017-12-20 17:53:39 +08:00
|
|
|
F: board/orangepi/orangepi-pc2/
|
2017-12-20 17:53:37 +08:00
|
|
|
F: board/orangepi/orangepi-prime/
|
2017-12-20 17:53:36 +08:00
|
|
|
F: board/orangepi/orangepi-win/
|
2017-12-20 17:53:38 +08:00
|
|
|
F: board/orangepi/orangepi-zero-plus2/
|
2017-12-20 17:53:31 +08:00
|
|
|
F: board/pine64/
|
2018-10-26 21:03:57 +08:00
|
|
|
F: configs/amarula_a64_relic_defconfig
|
2018-09-03 16:26:09 +08:00
|
|
|
F: configs/amarula_vyasa_rk3288_defconfig
|
|
|
|
F: configs/asus_tinker_rk3288_defconfig
|
2017-10-19 17:45:23 +08:00
|
|
|
F: configs/bananapi_m1_defconfig
|
2017-12-20 17:53:30 +08:00
|
|
|
F: configs/bananapi_m64_defconfig
|
2018-09-03 16:26:09 +08:00
|
|
|
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
|
2017-12-20 17:53:33 +08:00
|
|
|
F: configs/friendlyarm_nanopi_a64_defconfig
|
2017-12-20 17:53:34 +08:00
|
|
|
F: configs/friendlyarm_nanopi_neo2_defconfig
|
2019-09-24 15:20:07 +08:00
|
|
|
F: configs/olimex_a33_olinuxino_defconfig
|
2017-12-20 17:53:35 +08:00
|
|
|
F: configs/olimex_a64_olinuxino_defconfig
|
2018-11-03 20:56:07 +08:00
|
|
|
F: configs/orangepi_lite2_defconfig
|
2018-11-03 20:56:06 +08:00
|
|
|
F: configs/orangepi_one_plus_defconfig
|
2017-12-20 17:53:39 +08:00
|
|
|
F: configs/orangepi_pc2_defconfig
|
2017-12-20 17:53:37 +08:00
|
|
|
F: configs/orangepi_prime_defconfig
|
2017-12-20 17:53:36 +08:00
|
|
|
F: configs/orangepi_win_defconfig
|
2017-12-20 17:53:38 +08:00
|
|
|
F: configs/orangepi_zero_plus2_defconfig
|
2017-12-20 17:53:31 +08:00
|
|
|
F: configs/pine64_defconfig
|
2017-12-20 17:53:32 +08:00
|
|
|
F: configs/pine64_sopine_defconfig
|
2017-06-13 02:21:41 +08:00
|
|
|
|
2018-10-22 17:31:36 +08:00
|
|
|
N: James Hilliard <james.hilliard1@gmail.com>
|
2020-04-19 08:39:53 +08:00
|
|
|
F: package/apcupsd/
|
2020-04-18 04:14:05 +08:00
|
|
|
F: package/exfatprogs/
|
2020-01-25 13:46:17 +08:00
|
|
|
F: package/gensio/
|
2018-12-29 10:07:23 +08:00
|
|
|
F: package/lua-std-debug/
|
2018-12-29 10:07:24 +08:00
|
|
|
F: package/lua-std-normalize/
|
2019-08-26 10:34:02 +08:00
|
|
|
F: package/pipewire/
|
2019-03-04 07:44:19 +08:00
|
|
|
F: package/python-aioconsole/
|
2018-11-12 16:09:16 +08:00
|
|
|
F: package/python-aiodns/
|
2018-11-20 03:52:38 +08:00
|
|
|
F: package/python-aiohttp/
|
2019-02-24 11:35:22 +08:00
|
|
|
F: package/python-aiohttp-cors/
|
2019-12-11 10:02:52 +08:00
|
|
|
F: package/python-aiohttp-debugtoolbar/
|
2018-12-07 16:52:57 +08:00
|
|
|
F: package/python-aiohttp-jinja2/
|
2019-12-11 10:13:14 +08:00
|
|
|
F: package/python-aiohttp-mako/
|
2018-12-07 07:49:30 +08:00
|
|
|
F: package/python-aiohttp-remotes/
|
2018-12-07 16:49:41 +08:00
|
|
|
F: package/python-aiohttp-security/
|
2018-12-07 16:42:43 +08:00
|
|
|
F: package/python-aiohttp-session/
|
2018-12-07 16:45:08 +08:00
|
|
|
F: package/python-aiohttp-sse/
|
2019-12-11 09:37:38 +08:00
|
|
|
F: package/python-aiologstash/
|
2019-03-04 07:44:20 +08:00
|
|
|
F: package/python-aiomonitor/
|
2018-12-07 07:08:15 +08:00
|
|
|
F: package/python-aiojobs/
|
2018-12-07 08:08:04 +08:00
|
|
|
F: package/python-aiorwlock/
|
2019-12-11 14:18:34 +08:00
|
|
|
F: package/python-aiosignal/
|
2019-12-11 14:29:28 +08:00
|
|
|
F: package/python-aiozipkin/
|
2020-02-13 15:42:45 +08:00
|
|
|
F: package/python-argon2-cffi/
|
2019-12-11 10:24:11 +08:00
|
|
|
F: package/python-async-lru/
|
2018-10-22 17:37:08 +08:00
|
|
|
F: package/python-async-timeout/
|
2019-08-13 07:03:45 +08:00
|
|
|
F: package/python-brotli/
|
2020-02-13 14:26:14 +08:00
|
|
|
F: package/python-cbor2/
|
2018-11-12 07:23:12 +08:00
|
|
|
F: package/python-cchardet/
|
2020-02-24 13:15:48 +08:00
|
|
|
F: package/python-flatbuffers/
|
2019-12-11 14:18:33 +08:00
|
|
|
F: package/python-frozenlist/
|
2019-11-01 16:01:35 +08:00
|
|
|
F: package/python-greenlet/
|
2019-12-11 10:30:50 +08:00
|
|
|
F: package/python-janus/
|
2019-12-11 09:37:37 +08:00
|
|
|
F: package/python-logstash/
|
2018-11-01 19:07:23 +08:00
|
|
|
F: package/python-multidict/
|
2018-11-12 16:09:15 +08:00
|
|
|
F: package/python-pycares/
|
2020-02-13 14:58:24 +08:00
|
|
|
F: package/python-snappy/
|
2019-12-11 09:51:43 +08:00
|
|
|
F: package/python-sockjs/
|
2019-03-04 07:44:18 +08:00
|
|
|
F: package/python-terminaltables/
|
2018-10-22 17:31:36 +08:00
|
|
|
F: package/python-yarl/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: James Knight <james.knight@rockwellcollins.com>
|
|
|
|
F: package/atkmm/
|
|
|
|
F: package/cairomm/
|
|
|
|
F: package/google-material-design-icons/
|
|
|
|
F: package/glibmm/
|
|
|
|
F: package/gtkmm3/
|
|
|
|
F: package/libpqxx/
|
|
|
|
F: package/pangomm/
|
2016-12-20 08:09:17 +08:00
|
|
|
F: package/rpm/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/yad/
|
|
|
|
|
2018-01-04 20:28:31 +08:00
|
|
|
N: Jan Heylen <jan.heylen@nokia.com>
|
|
|
|
F: package/opentracing-cpp/
|
|
|
|
|
2017-12-08 01:59:26 +08:00
|
|
|
N: Jan Kraval <jan.kraval@gmail.com>
|
|
|
|
F: board/orangepi/orangepi-lite
|
|
|
|
F: configs/orangepi_lite_defconfig
|
|
|
|
|
2018-07-10 03:53:33 +08:00
|
|
|
N: Jan Kundrát <jan.kundrat@cesnet.cz>
|
|
|
|
F: configs/solidrun_clearfog_defconfig
|
|
|
|
F: board/solidrun/clearfog/
|
2019-12-04 18:17:27 +08:00
|
|
|
F: package/libnetconf2/
|
|
|
|
F: package/libyang/
|
|
|
|
F: package/sysrepo/
|
2018-07-10 03:53:33 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Jan Pedersen <jp@jp-embedded.com>
|
|
|
|
F: package/zip/
|
|
|
|
|
|
|
|
N: Jan Viktorin <viktorin@rehivetech.com>
|
|
|
|
F: package/python-pexpect/
|
|
|
|
F: package/python-ptyprocess/
|
|
|
|
F: package/zynq-boot-bin/
|
|
|
|
|
|
|
|
N: Jarkko Sakkinen <jarkko.sakkinen@intel.com>
|
|
|
|
F: package/quota/
|
|
|
|
|
|
|
|
N: Jason Pruitt <jrspruitt@gmail.com>
|
|
|
|
F: package/librtlsdr/
|
|
|
|
|
2020-02-18 16:32:47 +08:00
|
|
|
N: Jean Burgat <jeanburgat33@gmail.com>
|
|
|
|
F: package/openfpgaloader/
|
|
|
|
|
2019-11-14 16:55:28 +08:00
|
|
|
N: Jens Kleintje <scooby22@web.de>
|
|
|
|
F: package/gcnano-binaries/
|
|
|
|
|
2016-09-13 04:54:53 +08: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-10 03:53:33 +08: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/
|
|
|
|
F: package/x11r7/xdriver_xf86-video-imx-viv/
|
|
|
|
|
2020-03-10 23:06:06 +08:00
|
|
|
N: Jianhui Zhao <zhaojh329@gmail.com>
|
2020-04-05 01:04:28 +08:00
|
|
|
F: package/libuhttpd/
|
2019-09-15 00:23:02 +08:00
|
|
|
F: package/libuwsc/
|
2020-03-10 23:06:06 +08:00
|
|
|
F: package/rtty/
|
|
|
|
|
2020-05-08 17:45:09 +08:00
|
|
|
N: Joachim Nilsson <troglobit@gmail.com>
|
|
|
|
F: configs/globalscale_espressobin_defconfig
|
|
|
|
F: board/globalscale/espressobin/
|
|
|
|
|
2019-08-11 20:07:28 +08:00
|
|
|
N: Joao Pinto <jpinto@synopsys.com>
|
|
|
|
F: board/synopsys/vdk/
|
|
|
|
F: configs/snps_aarch64_vdk_defconfig
|
|
|
|
|
2018-06-09 03:27:39 +08:00
|
|
|
N: Joel Carlson <JoelsonCarl@gmail.com>
|
2019-08-01 17:44:40 +08:00
|
|
|
F: package/c-capnproto/
|
2018-07-11 06:31:25 +08:00
|
|
|
F: package/capnproto/
|
2018-06-21 06:26:11 +08:00
|
|
|
F: package/cmocka/
|
2018-06-01 01:04:29 +08:00
|
|
|
F: package/flatcc/
|
2018-10-10 07:46:49 +08:00
|
|
|
F: package/libcorrect/
|
2018-06-01 01:04:29 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Joel Stanley <joel@jms.id.au>
|
|
|
|
F: package/pdbg/
|
2017-09-20 10:48:45 +08:00
|
|
|
F: board/qemu/ppc64le-pseries/
|
|
|
|
F: configs/qemu_ppc64le_pseries_defconfig
|
2019-06-25 09:26:52 +08:00
|
|
|
F: board/qemu/ppc-mac99/
|
|
|
|
F: configs/qemu_ppc_mac99_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Johan Derycke <johanderycke@gmail.com>
|
|
|
|
F: package/python-libconfig/
|
|
|
|
|
|
|
|
N: Johan Oudinet <johan.oudinet@gmail.com>
|
|
|
|
F: package/ejabberd/
|
2020-01-07 00:11:07 +08:00
|
|
|
F: package/erlang-base64url/
|
2018-11-26 19:08:06 +08:00
|
|
|
F: package/erlang-eimp/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/erlang-goldrush/
|
2020-01-07 00:11:09 +08:00
|
|
|
F: package/erlang-idna/
|
2017-06-01 00:35:42 +08:00
|
|
|
F: package/erlang-jiffy/
|
2020-01-07 00:11:08 +08:00
|
|
|
F: package/erlang-jose/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/erlang-lager/
|
2020-01-07 00:11:13 +08:00
|
|
|
F: package/erlang-p1-acme/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/erlang-p1-cache-tab/
|
2020-01-07 00:11:10 +08:00
|
|
|
F: package/erlang-p1-mqtree/
|
2017-06-06 22:33:10 +08:00
|
|
|
F: package/erlang-p1-oauth2/
|
2020-01-07 00:11:11 +08:00
|
|
|
F: package/erlang-p1-pkix/
|
2016-09-13 04:54:53 +08: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-06-01 00:35:44 +08:00
|
|
|
F: package/erlang-p1-xmpp/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/erlang-p1-yaml/
|
2020-01-07 00:11:12 +08:00
|
|
|
F: package/erlang-p1-yconf/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/erlang-p1-zlib/
|
2016-12-05 06:35:31 +08:00
|
|
|
F: package/nginx-dav-ext/
|
2020-03-25 22:04:24 +08:00
|
|
|
F: package/vuejs/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: John Stile <johns@msli.com>
|
|
|
|
F: package/dhcpcd/
|
|
|
|
|
2019-06-24 23:45:41 +08:00
|
|
|
N: John Faith <jfaith@impinj.com>
|
|
|
|
F: package/python-inflection/
|
2019-08-08 03:12:00 +08:00
|
|
|
F: package/sdbusplus/
|
2019-06-24 23:45:41 +08:00
|
|
|
|
2016-09-13 04:54:53 +08: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 19:55:03 +08:00
|
|
|
N: Joris Offouga <offougajoris@gmail.com>
|
|
|
|
F: package/python-colorlog/
|
2019-09-17 00:23:03 +08:00
|
|
|
F: package/python-simplelogging/
|
2019-09-16 19:55:03 +08:00
|
|
|
|
2018-07-10 03:53:33 +08:00
|
|
|
N: Jörg Krause <joerg.krause@embedded.rocks>
|
|
|
|
F: board/lemaker/bananapro/
|
|
|
|
F: configs/bananapro_defconfig
|
|
|
|
F: package/augeas/
|
2018-07-18 18:40:00 +08:00
|
|
|
F: package/bluez-alsa/
|
2019-10-14 19:26:55 +08:00
|
|
|
F: package/caps/
|
2018-07-10 03:53:33 +08:00
|
|
|
F: package/freescale-imx/imx-alsa-plugins/
|
|
|
|
F: package/libopusenc/
|
|
|
|
F: package/libupnpp/
|
|
|
|
F: package/luv/
|
|
|
|
F: package/luvi/
|
|
|
|
F: package/mpd/
|
|
|
|
F: package/shairport-sync/
|
|
|
|
F: package/swupdate/
|
|
|
|
F: package/upmpdcli/
|
|
|
|
F: package/wavemon/
|
|
|
|
|
2016-09-13 04:54:53 +08: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/
|
|
|
|
|
2018-07-10 03:53:33 +08:00
|
|
|
N: Joseph Kogut <joseph.kogut@gmail.com>
|
|
|
|
F: package/at-spi2-atk/
|
|
|
|
F: package/at-spi2-core/
|
2018-07-17 01:21:41 +08:00
|
|
|
F: package/clang/
|
2020-06-13 01:40:29 +08:00
|
|
|
F: package/earlyoom/
|
2018-07-10 03:53:33 +08:00
|
|
|
F: package/gconf/
|
|
|
|
F: package/libnss/
|
2019-07-25 01:35:36 +08:00
|
|
|
F: package/lld/
|
2018-07-17 01:21:41 +08:00
|
|
|
F: package/llvm/
|
2018-07-10 03:53:33 +08:00
|
|
|
F: package/python-cython/
|
|
|
|
F: package/python-raven/
|
|
|
|
F: package/python-schedule/
|
2018-12-11 03:22:28 +08:00
|
|
|
F: package/python-sentry-sdk/
|
2018-07-10 03:53:33 +08:00
|
|
|
F: package/python-websockets/
|
|
|
|
F: package/python-xlib/
|
2020-06-24 05:41:54 +08:00
|
|
|
F: package/unclutter-xfixes/
|
2018-07-10 03:53:33 +08:00
|
|
|
|
2017-08-05 04:46:24 +08:00
|
|
|
N: Joshua Henderson <joshua.henderson@microchip.com>
|
|
|
|
F: package/qt5/qt5wayland/
|
|
|
|
|
2019-05-09 23:58:49 +08:00
|
|
|
N: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
|
|
|
|
F: package/python-cycler/
|
2019-05-09 23:58:50 +08:00
|
|
|
F: package/python-matplotlib/
|
2019-05-09 23:58:49 +08:00
|
|
|
|
2016-09-13 04:54:53 +08: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-07 01:19:52 +08:00
|
|
|
F: package/abootimg/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/gpm/
|
|
|
|
F: package/lbreakout2/
|
|
|
|
F: package/libcddb/
|
|
|
|
F: package/libmodbus/
|
|
|
|
F: package/ltris/
|
|
|
|
F: package/opentyrian/
|
2016-09-21 18:19:21 +08:00
|
|
|
F: package/python-pygame/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Julien Corjon <corjon.j@ecagroup.com>
|
|
|
|
F: package/qt5/
|
|
|
|
|
2018-11-16 19:39:57 +08:00
|
|
|
N: Julien Grossholtz <julien.grossholtz@openest.io>
|
2019-08-11 20:07:23 +08:00
|
|
|
F: board/technologic/ts7680/
|
|
|
|
F: configs/ts7680_defconfig
|
2018-11-16 19:39:57 +08:00
|
|
|
F: package/paho-mqtt-c
|
|
|
|
|
2019-03-11 00:30:42 +08:00
|
|
|
N: Julien Olivain <juju@cotds.org>
|
2020-01-03 03:41:20 +08:00
|
|
|
F: board/qmtech/zynq/
|
2019-06-10 18:19:24 +08:00
|
|
|
F: board/technexion/imx8mmpico/
|
2019-03-11 00:30:42 +08:00
|
|
|
F: board/technexion/imx8mpico/
|
2019-06-10 18:19:24 +08:00
|
|
|
F: configs/imx8mmpico_defconfig
|
2019-03-11 00:30:42 +08:00
|
|
|
F: configs/imx8mpico_defconfig
|
2020-01-03 03:41:20 +08:00
|
|
|
F: configs/zynq_qmtech_defconfig
|
2019-12-30 02:58:23 +08:00
|
|
|
F: package/fluid-soundfont/
|
2019-12-10 04:03:24 +08:00
|
|
|
F: package/fluidsynth/
|
2019-08-24 04:57:11 +08:00
|
|
|
F: package/glslsandbox-player/
|
2020-01-25 02:24:47 +08:00
|
|
|
F: package/ptm2human/
|
2020-01-04 23:59:02 +08:00
|
|
|
F: package/python-pyalsa/
|
2019-03-11 00:30:42 +08:00
|
|
|
|
2017-02-09 05:37:52 +08:00
|
|
|
N: Julien Viard de Galbert <julien@vdg.name>
|
|
|
|
F: package/dieharder/
|
2017-05-30 05:03:39 +08:00
|
|
|
F: package/easy-rsa/
|
2017-02-09 05:37:52 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Justin Maggard <jmaggard@netgear.com>
|
|
|
|
F: package/dtach/
|
2020-07-06 23:30:39 +08:00
|
|
|
|
|
|
|
N: Kamel Bouhara <kamel.bouhara@gmail.com>
|
2020-07-06 23:30:40 +08:00
|
|
|
F: package/libodb-boost/
|
2020-07-06 23:30:39 +08:00
|
|
|
F: package/libodb-mysql/
|
2016-09-13 04:54:53 +08: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 19:29:02 +08:00
|
|
|
N: Kieran Bingham <kieran.bingham@ideasonboard.com>
|
|
|
|
F: package/libcamera/
|
|
|
|
|
2017-06-20 00:55:06 +08:00
|
|
|
N: Koen Martens <gmc@sonologic.nl>
|
2018-07-11 06:31:25 +08:00
|
|
|
F: package/capnproto/
|
2017-06-20 00:55:06 +08:00
|
|
|
F: package/linuxconsoletools/
|
2017-04-11 15:00:08 +08:00
|
|
|
|
2017-08-25 20:58:54 +08:00
|
|
|
N: Kurt Van Dijck <dev.kurt@vandijck-laurijssen.be>
|
|
|
|
F: package/bcusdk/
|
|
|
|
F: package/libpthsem/
|
2017-12-29 03:45:55 +08:00
|
|
|
F: package/nilfs-utils/
|
2017-08-25 20:58:54 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Laurent Cans <laurent.cans@gmail.com>
|
|
|
|
F: package/aircrack-ng/
|
|
|
|
|
2018-07-10 03:53:33 +08:00
|
|
|
N: Laurent Charpentier <laurent_pubs@yahoo.com>
|
|
|
|
F: package/open-lldp/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Lee Jones <lee.jones@linaro.org>
|
|
|
|
F: boot/afboot-stm32/
|
|
|
|
|
2018-07-09 21:46:25 +08:00
|
|
|
N: Leon Anavi <leon.anavi@konsulko.com>
|
|
|
|
F: board/olimex/a10_olinuxino
|
|
|
|
F: configs/olimex_a10_olinuxino_lime_defconfig
|
|
|
|
|
2017-01-24 22:43:47 +08:00
|
|
|
N: Lionel Flandrin <lionel@svkt.org>
|
|
|
|
F: package/python-babel/
|
2018-04-12 00:37:12 +08:00
|
|
|
F: package/python-daemonize/
|
2017-01-25 17:01:50 +08:00
|
|
|
F: package/python-flask/
|
2017-01-30 22:11:18 +08:00
|
|
|
F: package/python-flask-babel/
|
|
|
|
F: package/python-gunicorn/
|
2017-01-24 22:43:47 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Lionel Orry <lionel.orry@gmail.com>
|
|
|
|
F: package/mongrel2/
|
|
|
|
|
|
|
|
N: Lothar Felten <lothar.felten@gmail.com>
|
2018-12-08 22:50:08 +08:00
|
|
|
F: board/bananapi/bananapi-m2-ultra/
|
2019-08-11 20:07:38 +08:00
|
|
|
F: board/beaglebone/
|
2018-12-08 22:50:08 +08:00
|
|
|
F: configs/bananapi_m2_ultra_defconfig
|
2019-08-11 20:07:38 +08:00
|
|
|
F: configs/beaglebone_defconfig
|
|
|
|
F: configs/beaglebone_qt5_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/ti-sgx-demos/
|
2019-11-15 20:49:57 +08:00
|
|
|
F: package/ti-sgx-libgbm/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/ti-sgx-km/
|
|
|
|
F: package/ti-sgx-um/
|
|
|
|
|
2019-11-04 00:01:57 +08:00
|
|
|
N: Louis Aussedat <aussedat.louis@gmail.com>
|
|
|
|
F: board/friendlyarm/nanopi-neo-plus2/
|
|
|
|
F: configs/friendlyarm_nanopi_neo_plus2_defconfig
|
2019-12-21 02:14:56 +08:00
|
|
|
F: package/mfoc
|
2019-12-22 20:05:00 +08:00
|
|
|
F: package/libpam-nfc
|
2019-11-11 06:26:53 +08:00
|
|
|
F: package/python-dnspython/
|
2019-11-11 06:26:55 +08:00
|
|
|
F: package/python-future/
|
2019-11-11 06:26:54 +08:00
|
|
|
F: package/python-huepy/
|
2019-11-04 00:01:58 +08:00
|
|
|
F: package/python-tqdm/
|
2019-11-04 00:01:57 +08:00
|
|
|
|
2019-01-31 20:15:21 +08:00
|
|
|
N: Louis-Paul Cordier <lpdev@cordier.org>
|
|
|
|
F: package/intel-gmmlib/
|
2019-02-06 02:19:43 +08:00
|
|
|
F: package/intel-mediadriver/
|
2019-02-06 02:19:44 +08:00
|
|
|
F: package/intel-mediasdk/
|
2019-01-31 20:15:21 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Luca Ceresoli <luca@lucaceresoli.net>
|
2016-09-22 05:43:01 +08:00
|
|
|
F: board/olimex/a20_olinuxino/
|
2018-04-09 22:47:08 +08:00
|
|
|
F: board/zynq/
|
2018-07-25 22:35:37 +08:00
|
|
|
F: board/zynqmp/
|
2016-09-22 05:43:01 +08:00
|
|
|
F: configs/olimex_a20_olinuxino_*
|
2019-08-11 20:07:26 +08:00
|
|
|
F: configs/zynq_microzed_defconfig
|
2018-04-09 22:47:08 +08:00
|
|
|
F: configs/zynq_zed_defconfig
|
2019-08-11 20:07:26 +08:00
|
|
|
F: configs/zynq_zc706_defconfig
|
2018-07-25 22:35:37 +08:00
|
|
|
F: configs/zynqmp_zcu106_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/agentpp/
|
|
|
|
F: package/exim/
|
|
|
|
F: package/libpjsip/
|
|
|
|
F: package/qpid-proton/
|
|
|
|
F: package/rtl8188eu/
|
2016-09-21 18:19:23 +08:00
|
|
|
F: package/snmppp/
|
2016-09-13 04:54:53 +08: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 17:59:52 +08:00
|
|
|
N: Lubomir Rintel <lkundrak@v3.sk>
|
|
|
|
F: board/olpc/
|
2020-04-16 17:59:53 +08:00
|
|
|
F: configs/olpc_xo1_defconfig
|
2020-04-16 17:59:54 +08:00
|
|
|
F: configs/olpc_xo175_defconfig
|
2020-04-16 17:59:52 +08:00
|
|
|
|
2017-11-16 23:22:43 +08:00
|
|
|
N: Ludovic Desroches <ludovic.desroches@microchip.com>
|
2016-09-13 04:54:53 +08:00
|
|
|
F: board/atmel/
|
|
|
|
F: configs/at91*
|
|
|
|
F: configs/atmel_*
|
2019-11-12 23:24:33 +08:00
|
|
|
F: configs/microchip_*
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/fb-test-app/
|
|
|
|
F: package/python-json-schema-validator/
|
|
|
|
F: package/python-keyring/
|
|
|
|
F: package/python-simplejson/
|
|
|
|
F: package/python-versiontools/
|
|
|
|
F: package/wilc1000-firmware/
|
|
|
|
|
2020-03-05 00:14:27 +08:00
|
|
|
N: Maeva Manuel <maeva.manuel@oss.nxp.com>
|
|
|
|
F: board/freescale/imx8qmmek/
|
|
|
|
F: configs/freescale_imx8qmmek_defconfig
|
2020-03-21 00:31:54 +08:00
|
|
|
F: package/freescale-imx/imx-seco/
|
2020-03-05 00:14:27 +08:00
|
|
|
|
2018-01-02 00:39:32 +08:00
|
|
|
N: Mahyar Koshkouei <mahyar.koshkouei@gmail.com>
|
|
|
|
F: package/ffmpeg/
|
|
|
|
F: package/mpv/
|
|
|
|
F: package/rpi-firmware/
|
|
|
|
F: package/rpi-userland/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Mamatha Inamdar <mamatha4@linux.vnet.ibm.com>
|
|
|
|
F: package/nvme/
|
|
|
|
|
|
|
|
N: Manuel Vögele <develop@manuel-voegele.de>
|
2016-09-21 18:19:23 +08:00
|
|
|
F: package/python-pyqt5/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-requests-toolbelt/
|
|
|
|
|
|
|
|
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-31 02:36:17 +08:00
|
|
|
F: board/grinn/
|
|
|
|
F: configs/grinn_*
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/argparse/
|
2017-06-23 18:37:57 +08:00
|
|
|
F: package/dt-utils/
|
2016-12-08 22:51:49 +08:00
|
|
|
F: package/easydbus/
|
2017-06-20 23:16:31 +08:00
|
|
|
F: package/lua-flu/
|
2017-06-26 23:19:41 +08:00
|
|
|
F: package/lua-stdlib/
|
2017-05-29 22:32:05 +08:00
|
|
|
F: package/luaossl/
|
2019-05-10 16:35:04 +08:00
|
|
|
F: package/murata-cyw-fw/
|
2020-03-20 23:25:16 +08:00
|
|
|
F: package/netdata/
|
2020-04-30 21:11:03 +08:00
|
|
|
F: package/python-ansicolors/
|
2020-04-30 21:11:29 +08:00
|
|
|
F: package/python-packaging/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/rs485conf/
|
|
|
|
F: package/turbolua/
|
2020-03-20 23:25:17 +08:00
|
|
|
F: support/testing/tests/package/test_netdata.py
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2017-11-05 04:36:44 +08:00
|
|
|
N: Marcus Folkesson <marcus.folkesson@gmail.com>
|
2017-11-13 05:06:09 +08:00
|
|
|
F: package/libostree/
|
2018-01-17 17:50:14 +08:00
|
|
|
F: package/libselinux/
|
|
|
|
F: package/libsemanage/
|
|
|
|
F: package/libsepol/
|
|
|
|
F: package/selinux-python/
|
2017-12-03 00:58:44 +08:00
|
|
|
F: utils/config
|
2017-11-05 04:36:44 +08:00
|
|
|
F: utils/diffconfig
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Marek Belisko <marek.belisko@open-nandra.com>
|
2020-04-22 03:30:41 +08:00
|
|
|
F: board/friendlyarm/nanopi-neo4/
|
2020-04-15 03:03:29 +08:00
|
|
|
F: configs/nanopi_neo4_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/libatasmart/
|
|
|
|
F: package/polkit/
|
|
|
|
F: package/sg3_utils/
|
|
|
|
F: package/udisks/
|
|
|
|
|
2017-11-28 06:56:45 +08:00
|
|
|
N: Mario Lang <mlang@blind.guru>
|
|
|
|
F: package/brltty/
|
2017-12-18 18:18:09 +08:00
|
|
|
F: package/lynx/
|
2017-11-28 06:56:45 +08:00
|
|
|
|
2017-06-01 22:33:49 +08:00
|
|
|
N: Mario Rugiero <mrugiero@gmail.com>
|
|
|
|
F: package/ratpoison/
|
|
|
|
|
2019-11-08 03:38:04 +08:00
|
|
|
N: Mark Corbin <mark@dibsco.co.uk>
|
2018-09-12 18:22:54 +08:00
|
|
|
F: arch/arch.mk.riscv
|
|
|
|
F: arch/Config.in.riscv
|
2018-10-22 03:12:02 +08:00
|
|
|
F: board/qemu/riscv32-virt/
|
2018-09-12 18:22:56 +08:00
|
|
|
F: board/qemu/riscv64-virt/
|
2018-10-22 03:12:02 +08:00
|
|
|
F: configs/qemu_riscv32_virt_defconfig
|
2018-09-12 18:22:56 +08:00
|
|
|
F: configs/qemu_riscv64_virt_defconfig
|
2018-09-12 18:22:54 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Martin Bark <martin@barkynet.com>
|
2018-03-24 22:10:17 +08:00
|
|
|
F: board/raspberrypi/
|
|
|
|
F: configs/raspberrypi3_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/ca-certificates/
|
2017-06-05 03:53:56 +08:00
|
|
|
F: package/connman/
|
2017-03-05 07:48:28 +08:00
|
|
|
F: package/nodejs/
|
2018-03-24 22:10:17 +08:00
|
|
|
F: package/rpi-bt-firmware/
|
|
|
|
F: package/rpi-firmware/
|
|
|
|
F: package/rpi-wifi-firmware/
|
2016-12-03 22:36:25 +08:00
|
|
|
F: package/tzdata/
|
|
|
|
F: package/zic/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Martin Hicks <mort@bork.org>
|
|
|
|
F: package/cryptsetup/
|
|
|
|
|
2017-04-29 21:46:24 +08:00
|
|
|
N: Martin Kepplinger <martink@posteo.de>
|
|
|
|
F: package/tslib/
|
|
|
|
F: package/x11r7/xdriver_xf86-input-tslib/
|
|
|
|
F: package/x11vnc/
|
|
|
|
|
2019-08-11 20:07:36 +08:00
|
|
|
N: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
|
|
F: board/arm/foundation-v8/
|
|
|
|
F: configs/arm_foundationv8_defconfig
|
|
|
|
|
2019-09-20 00:53:59 +08:00
|
|
|
N: Mathieu Audat <mathieuaudat@gmail.com>
|
2016-09-21 18:19:23 +08:00
|
|
|
F: board/technologic/ts4900/
|
|
|
|
F: configs/ts4900_defconfig
|
|
|
|
F: package/ts4900-fpga/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Matt Weber <matthew.weber@rockwellcollins.com>
|
2018-03-09 10:36:38 +08:00
|
|
|
F: board/freescale/p*
|
2018-03-09 11:10:06 +08:00
|
|
|
F: board/freescale/t*
|
2018-04-02 04:01:13 +08:00
|
|
|
F: board/qemu/ppc64-e5500/
|
2018-03-09 10:36:38 +08:00
|
|
|
F: configs/freescale_p*
|
2018-03-09 11:10:06 +08:00
|
|
|
F: configs/freescale_t*
|
2018-04-02 04:01:13 +08:00
|
|
|
F: configs/qemu_ppc64_e5500_defconfig
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/argp-standalone/
|
|
|
|
F: package/aufs/
|
|
|
|
F: package/aufs-util/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/bc/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/bridge-utils/
|
2017-05-09 00:52:30 +08:00
|
|
|
F: package/checkpolicy/
|
2018-08-14 09:17:56 +08:00
|
|
|
F: package/checksec/
|
2017-05-09 00:52:30 +08:00
|
|
|
F: package/cgroupfs-mount/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/crda/
|
2018-11-02 02:58:15 +08:00
|
|
|
F: package/cunit/
|
2019-04-16 04:12:03 +08:00
|
|
|
F: package/dacapo/
|
2020-06-01 20:30:36 +08:00
|
|
|
F: package/davici/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/dnsmasq/
|
|
|
|
F: package/dosfstools/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/eigen/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/ethtool/
|
|
|
|
F: package/flashbench/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/fmc/
|
|
|
|
F: package/fmlib/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/git/
|
|
|
|
F: package/gnutls/
|
|
|
|
F: package/hostapd/
|
|
|
|
F: package/i2c-tools/
|
|
|
|
F: package/ifplugd/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/igmpproxy/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/iperf/
|
|
|
|
F: package/iperf3/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/iputils/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/iw/
|
2019-10-23 02:17:31 +08:00
|
|
|
F: package/jitterentropy-library/
|
2017-12-03 21:41:18 +08:00
|
|
|
F: package/kvm-unit-tests/
|
2017-12-07 12:19:56 +08:00
|
|
|
F: package/kvmtool/
|
2017-05-02 07:11:40 +08:00
|
|
|
F: package/libcsv/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/libcurl/
|
2018-12-19 02:51:45 +08:00
|
|
|
F: package/libeastl/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/libfcgi/
|
|
|
|
F: package/libopenssl/
|
2017-05-09 00:52:30 +08:00
|
|
|
F: package/libselinux/
|
|
|
|
F: package/libsemanage/
|
|
|
|
F: package/libsepol/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/libssh2/
|
2017-05-09 00:52:30 +08:00
|
|
|
F: package/libqmi/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/lighttpd/
|
|
|
|
F: package/logrotate/
|
|
|
|
F: package/makedevs/
|
|
|
|
F: package/memtester/
|
|
|
|
F: package/mii-diag/
|
|
|
|
F: package/mrouted/
|
|
|
|
F: package/mtd/
|
|
|
|
F: package/mtools/
|
2017-05-09 00:52:30 +08:00
|
|
|
F: package/nginx-upload/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/omniorb/
|
2018-08-15 01:33:48 +08:00
|
|
|
F: package/openresolv/
|
2017-07-07 19:44:57 +08:00
|
|
|
F: package/paxtest/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/picocom/
|
2017-05-09 00:52:30 +08:00
|
|
|
F: package/policycoreutils/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/proftpd/
|
|
|
|
F: package/protobuf-c/
|
|
|
|
F: package/protobuf/
|
2019-11-13 05:03:00 +08:00
|
|
|
F: package/python-bunch/
|
2019-06-01 01:16:49 +08:00
|
|
|
F: package/python-colorama/
|
2020-06-01 20:30:36 +08:00
|
|
|
F: package/python-filelock/
|
2018-01-23 22:25:16 +08:00
|
|
|
F: package/python-flask-cors/
|
2019-06-01 01:16:50 +08:00
|
|
|
F: package/python-iptables/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-ipy/
|
|
|
|
F: package/python-posix-ipc/
|
2019-06-22 04:19:55 +08:00
|
|
|
F: package/python-pycairo/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-pypcap/
|
|
|
|
F: package/python-pyrex/
|
2020-06-01 20:30:36 +08:00
|
|
|
F: package/python-pysftp/
|
2019-06-01 01:16:52 +08:00
|
|
|
F: package/python-tinyrpc/
|
2019-06-01 01:16:53 +08:00
|
|
|
F: package/python-txdbus/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/raptor/
|
2019-01-16 20:39:52 +08:00
|
|
|
F: package/rcw/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/rng-tools/
|
|
|
|
F: package/rsyslog/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/setools/
|
|
|
|
F: package/smcroute/
|
|
|
|
F: package/tclap/
|
2018-08-14 22:33:11 +08:00
|
|
|
F: package/tini/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/uboot-tools/
|
|
|
|
F: package/unionfs/
|
2017-05-09 00:52:30 +08:00
|
|
|
F: package/valijson/
|
2017-11-07 09:08:54 +08:00
|
|
|
F: package/wpa_supplicant/
|
2017-11-08 05:47:43 +08:00
|
|
|
F: package/wireless_tools/
|
2017-12-07 12:25:48 +08:00
|
|
|
F: package/xen/
|
2019-03-16 04:52:33 +08:00
|
|
|
F: support/testing/tests/package/br2-external/openjdk/
|
|
|
|
F: support/testing/tests/package/test_openjdk.py
|
2019-11-26 14:57:46 +08:00
|
|
|
F: support/testing/tests/package/test_opkg/
|
|
|
|
F: support/testing/tests/package/test_opkg.py
|
2016-09-13 04:54:53 +08: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-crossbar/
|
|
|
|
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/
|
|
|
|
|
|
|
|
N: Max Filippov <jcmvbkbc@gmail.com>
|
|
|
|
F: arch/Config.in.xtensa
|
|
|
|
|
|
|
|
N: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
|
|
|
|
F: package/babeld/
|
|
|
|
F: package/dante/
|
|
|
|
F: package/faifa/
|
|
|
|
F: package/initscripts/
|
|
|
|
F: package/intel-microcode/
|
|
|
|
F: package/iucode-tool/
|
|
|
|
F: package/jasper/
|
|
|
|
F: package/kodi/
|
|
|
|
F: package/libass/
|
|
|
|
F: package/libbluray/
|
|
|
|
F: package/libcdio/
|
|
|
|
F: package/libcofi/
|
|
|
|
F: package/libenca/
|
|
|
|
F: package/libmodplug/
|
|
|
|
F: package/libnfs/
|
|
|
|
F: package/libplist/
|
|
|
|
F: package/libshairplay/
|
|
|
|
F: package/linux-zigbee/
|
|
|
|
F: package/netcat-openbsd/
|
|
|
|
F: package/open-plc-utils/
|
|
|
|
F: package/rpi-firmware/
|
|
|
|
F: package/rpi-userland/
|
|
|
|
F: package/rtmpdump/
|
|
|
|
F: package/skeleton/
|
|
|
|
F: package/systemd/
|
|
|
|
F: package/systemd-bootchart/
|
|
|
|
F: package/tinyalsa/
|
|
|
|
F: package/tinyxml/
|
|
|
|
|
2018-02-13 21:26:34 +08:00
|
|
|
N: Maxime Ripard <maxime.ripard@bootlin.com>
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/kmsxx/
|
|
|
|
|
2018-03-16 05:07:49 +08:00
|
|
|
N: Michael Durrant <mdurrant@arcturusnetworks.com>
|
|
|
|
F: board/arcturus/
|
|
|
|
F: configs/arcturus_ucp1020_defconfig
|
|
|
|
F: configs/arcturus_ucls1012a_defconfig
|
|
|
|
|
2020-02-27 18:30:55 +08:00
|
|
|
N: Michael Fischer <mf@go-sys.de>
|
|
|
|
F: package/gnuplot/
|
|
|
|
F: package/sdl2/
|
|
|
|
|
2020-08-17 05:44:16 +08:00
|
|
|
N: Michael Nosthoff <buildroot@heine.tech>
|
|
|
|
F: package/re2/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Michael Rommel <rommel@layer-7.net>
|
|
|
|
F: package/knock/
|
|
|
|
F: package/python-crc16/
|
|
|
|
F: package/python-pyzmq/
|
|
|
|
|
|
|
|
N: Michael Trimarchi <michael@amarulasolutions.com>
|
|
|
|
F: package/python-spidev/
|
|
|
|
|
2019-11-27 17:40:55 +08:00
|
|
|
N: Michael Vetter <jubalh@iodoru.org>
|
|
|
|
F: package/jasper/
|
2019-12-02 19:22:44 +08:00
|
|
|
F: package/libstrophe/
|
2019-11-27 17:40:55 +08:00
|
|
|
|
2019-10-11 20:40:41 +08:00
|
|
|
N: Michael Walle <michael@walle.cc>
|
|
|
|
F: package/libavl/
|
|
|
|
|
2017-08-03 02:03:02 +08:00
|
|
|
N: Michał Łyszczek <michal.lyszczek@bofc.pl>
|
|
|
|
F: board/altera/socrates_cyclone5/
|
2019-02-07 00:20:34 +08:00
|
|
|
F: board/pine64/rock64
|
|
|
|
F: configs/rock64_defconfig
|
2017-08-03 02:03:02 +08:00
|
|
|
F: configs/socrates_cyclone5_defconfig
|
2019-08-04 20:14:18 +08:00
|
|
|
F: package/netifrc/
|
2019-05-13 03:55:38 +08:00
|
|
|
F: package/openrc/
|
2019-05-13 03:55:39 +08:00
|
|
|
F: package/skeleton-init-openrc/
|
2017-08-03 02:03:02 +08:00
|
|
|
|
2019-03-06 06:37:06 +08:00
|
|
|
N: Michel Stempin <michel.stempin@wanadoo.fr>
|
|
|
|
F: board/licheepi/
|
|
|
|
F: configs/licheepi_zero_defconfig
|
|
|
|
|
2018-07-10 03:53:33 +08:00
|
|
|
N: Mike Harmony <mike.harmony@snapav.com>
|
|
|
|
F: board/sinovoip/m2-plus/
|
|
|
|
F: configs/bananapi_m2_plus_defconfig
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Mikhail Boiko <mikhailboiko85@gmail.com>
|
|
|
|
F: package/libfribidi/
|
|
|
|
|
2018-06-04 15:16:26 +08:00
|
|
|
N: Min Xu <xuminready@gmail.com>
|
|
|
|
F: package/shadowsocks-libev/
|
|
|
|
|
2020-02-11 21:46:52 +08:00
|
|
|
N: Mircea Gliga <gliga.mircea@gmail.com>
|
|
|
|
F: package/mbuffer/
|
|
|
|
|
2018-08-22 18:54:49 +08:00
|
|
|
N: Mirza Krak <mirza.krak@northern.tech>
|
|
|
|
F: package/mender/
|
2019-05-31 20:39:42 +08:00
|
|
|
F: package/mender-artifact/
|
2018-08-22 18:54:49 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Murat Demirten <mdemirten@yh.com.tr>
|
|
|
|
F: package/jpeg-turbo/
|
|
|
|
F: package/libgeotiff/
|
|
|
|
|
2020-07-07 15:53:37 +08:00
|
|
|
N: Mylène Josserand <mylene.josserand@collabora.com>
|
2017-11-27 17:01:19 +08:00
|
|
|
F: package/rtl8723bu/
|
|
|
|
|
2016-09-13 04:54:53 +08: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-10 06:12:40 +08:00
|
|
|
F: package/pkg-qmake.mk
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2019-05-01 22:12:34 +08:00
|
|
|
N: Nicola Di Lieto <nicola.dilieto@gmail.com>
|
|
|
|
F: package/uacme/
|
|
|
|
|
2019-08-11 20:07:34 +08:00
|
|
|
N: Nicholas Sielicki <sielicki@yandex.com>
|
|
|
|
F: board/intel/galileo/
|
|
|
|
F: configs/galileo_defconfig
|
|
|
|
|
2018-02-14 19:13:51 +08:00
|
|
|
N: Nicolas Cavallari <nicolas.cavallari@green-communications.fr>
|
|
|
|
F: package/libgit2/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Nicolas Serafini <nicolas.serafini@sensefly.com>
|
|
|
|
F: package/exiv2/
|
|
|
|
F: package/nvidia-tegra23/nvidia-tegra23-binaries/
|
|
|
|
F: package/nvidia-tegra23/nvidia-tegra23-codecs/
|
2019-10-24 18:27:22 +08:00
|
|
|
F: package/ofono/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2018-09-08 08:24:52 +08:00
|
|
|
N: Nikolay Dimitrov <nikolay.dimitrov@retrohub.org>
|
|
|
|
F: board/embest/riotboard/
|
|
|
|
F: configs/riotboard_defconfig
|
|
|
|
|
2016-09-13 04:54:53 +08: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-03 01:39:25 +08:00
|
|
|
N: Norbert Lange <nolange79@gmail.com>
|
|
|
|
F: package/tcf-agent/
|
|
|
|
|
2019-04-16 15:25:42 +08:00
|
|
|
N: Nylon Chen <nylon7@andestech.com>
|
|
|
|
F: arch/Config.in.nds32
|
2019-04-16 15:25:43 +08:00
|
|
|
F: board/andes
|
|
|
|
F: configs/andes_ae3xx_defconfig
|
2019-04-16 15:25:44 +08:00
|
|
|
F: toolchain/toolchain-external/toolchain-external-andes-nds32/
|
2019-04-16 15:25:42 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Olaf Rempel <razzor@kopf-tisch.de>
|
|
|
|
F: package/ctorrent/
|
|
|
|
|
2018-03-16 05:07:49 +08:00
|
|
|
N: Oleksandr Zhadan <oleks@arcturusnetworks.com>
|
|
|
|
F: board/arcturus/
|
|
|
|
F: configs/arcturus_ucp1020_defconfig
|
|
|
|
F: configs/arcturus_ucls1012a_defconfig
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Oli Vogt <oli.vogt.pub01@gmail.com>
|
|
|
|
F: package/python-django/
|
|
|
|
F: package/python-flup/
|
|
|
|
|
2016-10-12 16:06:32 +08:00
|
|
|
N: Olivier Matz <olivier.matz@6wind.com>
|
|
|
|
F: package/python-pyelftools/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Olivier Schonken <olivier.schonken@gmail.com>
|
2017-11-01 21:03:46 +08:00
|
|
|
F: package/cups/
|
2017-10-23 21:26:11 +08:00
|
|
|
F: package/cups-filters/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/ijs/
|
|
|
|
F: package/poppler/
|
|
|
|
F: package/qpdf/
|
|
|
|
F: package/openjpeg/
|
|
|
|
|
|
|
|
N: Olivier Singla <olivier.singla@gmail.com>
|
|
|
|
F: package/shellinabox/
|
|
|
|
|
2020-07-02 11:53:27 +08:00
|
|
|
N: Owen Walpole <owen@walpole.dev>
|
|
|
|
F: package/parprouted/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Parnell Springmeyer <parnell@digitalmentat.com>
|
|
|
|
F: package/scrypt/
|
|
|
|
|
2019-11-21 16:12:23 +08: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-04 03:57:05 +08:00
|
|
|
F: package/linux-tools/S10hyperv
|
|
|
|
F: package/linux-tools/hyperv*.service
|
|
|
|
F: package/linux-tools/linux-tool-hv.mk.in
|
2019-11-21 16:12:23 +08:00
|
|
|
|
2016-09-13 04:54:53 +08: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 21:39:52 +08:00
|
|
|
N: Patrick Havelange <patrick.havelange@essensium.com>
|
|
|
|
F: support/testing/tests/package/test_lxc.py
|
|
|
|
F: support/testing/tests/package/test_lxc/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Paul Cercueil <paul@crapouillou.net>
|
2017-12-13 15:07:43 +08:00
|
|
|
F: package/libiio/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/lightning/
|
2019-11-13 19:21:36 +08:00
|
|
|
F: package/umtprd/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Pedro Aguilar <paguilar@paguilar.org>
|
|
|
|
F: package/libunistring/
|
|
|
|
|
|
|
|
N: Peter Korsgaard <peter@korsgaard.com>
|
2019-09-23 22:46:29 +08:00
|
|
|
F: board/beagleboneai/
|
2018-03-31 15:22:51 +08:00
|
|
|
F: board/minnowboard/
|
2019-09-14 13:56:20 +08:00
|
|
|
F: board/librecomputer/lafrite/
|
2018-03-31 15:22:51 +08:00
|
|
|
F: board/nexbox/a95x/
|
|
|
|
F: board/openblocks/a6/
|
2016-09-21 18:19:23 +08:00
|
|
|
F: board/orangepi/
|
2018-03-31 15:22:51 +08:00
|
|
|
F: board/pandaboard/
|
|
|
|
F: board/roseapplepi/
|
2019-01-11 18:01:11 +08:00
|
|
|
F: boot/shim/
|
2019-09-23 22:46:29 +08:00
|
|
|
F: configs/beagleboneai_defconfig
|
2019-09-14 13:56:20 +08:00
|
|
|
F: configs/lafrite_defconfig
|
2018-03-31 15:22:51 +08:00
|
|
|
F: configs/minnowboard_max-graphical_defconfig
|
|
|
|
F: configs/minnowboard_max_defconfig
|
|
|
|
F: configs/nexbox_a95x_defconfig
|
|
|
|
F: configs/openblocks_a6_defconfig
|
2016-12-14 04:52:36 +08:00
|
|
|
F: configs/orangepi_pc_defconfig
|
2019-05-03 22:25:21 +08:00
|
|
|
F: configs/orangepi_r1_defconfig
|
2018-03-31 15:22:51 +08:00
|
|
|
F: configs/pandaboard_defconfig
|
|
|
|
F: configs/roseapplepi_defconfig
|
|
|
|
F: configs/sheevaplug_defconfig
|
2019-04-02 21:21:42 +08:00
|
|
|
F: package/bats-core/
|
2018-03-10 03:17:01 +08:00
|
|
|
F: package/docker-compose/
|
2017-10-01 04:07:43 +08:00
|
|
|
F: package/dump1090/
|
2019-05-22 04:40:14 +08:00
|
|
|
F: package/fatcat/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/flickcurl/
|
2017-09-13 14:21:51 +08:00
|
|
|
F: package/fscryptctl/
|
2019-05-14 17:04:45 +08:00
|
|
|
F: package/ifmetric/
|
2017-03-21 00:00:06 +08:00
|
|
|
F: package/jo/
|
2017-10-03 23:29:57 +08:00
|
|
|
F: package/jose/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/libfastjson/
|
2017-10-13 03:34:29 +08:00
|
|
|
F: package/luksmeta/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/lzop/
|
2017-02-27 04:44:27 +08:00
|
|
|
F: package/memtool/
|
2016-09-21 18:19:23 +08:00
|
|
|
F: package/mosquitto/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-alsaaudio/
|
2018-03-10 03:16:54 +08:00
|
|
|
F: package/python-backports-ssl-match-hostname/
|
2018-03-10 03:16:56 +08:00
|
|
|
F: package/python-cached-property/
|
2018-03-10 03:16:55 +08:00
|
|
|
F: package/python-docker/
|
2018-03-10 03:16:58 +08:00
|
|
|
F: package/python-dockerpty/
|
2018-03-10 03:16:52 +08:00
|
|
|
F: package/python-docker-pycreds/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-enum/
|
|
|
|
F: package/python-enum34/
|
2018-03-10 03:16:59 +08:00
|
|
|
F: package/python-functools32/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-ipaddr/
|
|
|
|
F: package/python-pam/
|
|
|
|
F: package/python-psutil/
|
2018-05-23 19:32:37 +08:00
|
|
|
F: package/python-request-id/
|
2018-08-07 17:38:39 +08:00
|
|
|
F: package/python-semver/
|
2018-03-10 03:16:57 +08:00
|
|
|
F: package/python-texttable/
|
2018-06-15 20:54:55 +08:00
|
|
|
F: package/python-validators/
|
2018-05-23 19:32:36 +08:00
|
|
|
F: package/python-webob/
|
2018-03-10 03:16:53 +08:00
|
|
|
F: package/python-websocket-client/
|
2018-09-26 15:52:05 +08:00
|
|
|
F: package/sedutil/
|
2019-04-08 19:56:47 +08:00
|
|
|
F: package/tpm2-totp/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/triggerhappy/
|
2020-01-09 17:16:19 +08:00
|
|
|
F: package/wireguard-linux-compat/
|
2020-01-09 17:16:18 +08:00
|
|
|
F: package/wireguard-tools/
|
2019-10-26 22:05:25 +08:00
|
|
|
F: support/testing/tests/package/test_docker_compose.py
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Peter Seiderer <ps.report@gmx.net>
|
2016-09-21 18:19:23 +08:00
|
|
|
F: board/raspberrypi/
|
2019-08-11 20:07:30 +08:00
|
|
|
F: configs/raspberrypi*_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/assimp/
|
|
|
|
F: package/bcm2835/
|
2017-02-10 01:48:29 +08:00
|
|
|
F: package/ddrescue/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/dejavu/
|
|
|
|
F: package/dillo/
|
|
|
|
F: package/edid-decode/
|
2018-11-06 06:04:25 +08:00
|
|
|
F: package/ell/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/ghostscript-fonts/
|
2017-10-28 01:16:22 +08:00
|
|
|
F: package/gstreamer1/gst1-interpipe/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/gstreamer1/gst1-validate/
|
2018-04-02 01:44:02 +08:00
|
|
|
F: package/gstreamer1/gstreamer1-editing-services/
|
2018-11-10 07:17:25 +08:00
|
|
|
F: package/iwd/
|
2016-09-21 18:19:23 +08:00
|
|
|
F: package/libevdev/
|
2020-07-21 04:48:24 +08:00
|
|
|
F: package/libuev/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/log4cplus/
|
|
|
|
F: package/postgresql/
|
2020-06-14 03:20:31 +08:00
|
|
|
F: package/python-colorzero/
|
2020-06-14 03:20:33 +08:00
|
|
|
F: package/python-gpiozero/
|
2017-02-11 04:28:43 +08:00
|
|
|
F: package/qt5/
|
2018-02-04 06:07:33 +08:00
|
|
|
F: package/quotatool/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/racehound/
|
2020-07-21 04:48:23 +08:00
|
|
|
F: package/redir/
|
2020-07-21 04:48:25 +08:00
|
|
|
F: package/uredir/
|
2020-08-01 06:13:47 +08:00
|
|
|
F: package/wayland-utils/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Peter Thompson <peter.macleod.thompson@gmail.com>
|
|
|
|
F: package/sdl2_gfx/
|
|
|
|
F: package/sdl2_image/
|
|
|
|
F: package/sdl2_ttf/
|
|
|
|
|
2017-06-08 02:44:29 +08:00
|
|
|
N: Petr Kulhavy <brain@jikos.cz>
|
|
|
|
F: package/linuxptp/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Petr Vorel <petr.vorel@gmail.com>
|
2019-10-29 08:34:36 +08:00
|
|
|
F: package/ima-evm-utils/
|
2017-11-15 19:57:50 +08:00
|
|
|
F: package/iproute2/
|
|
|
|
F: package/iputils/
|
2020-01-17 13:45:02 +08:00
|
|
|
F: package/libtirpc/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/linux-backports/
|
2017-01-18 19:24:19 +08:00
|
|
|
F: package/ltp-testsuite/
|
2020-01-17 13:45:02 +08:00
|
|
|
F: package/nfs-utils/
|
2018-05-09 17:07:33 +08:00
|
|
|
F: support/kconfig/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Phil Eichinger <phil.eichinger@gmail.com>
|
|
|
|
F: package/libqrencode/
|
|
|
|
F: package/psplash/
|
|
|
|
F: package/sispmctl/
|
|
|
|
F: package/zsh/
|
|
|
|
|
2018-11-24 02:14:25 +08:00
|
|
|
N: Philipp Richter <richterphilipp.pops@gmail.com>
|
|
|
|
F: package/libtorrent-rasterbar/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Philippe Proulx <eeppeliteloop@gmail.com>
|
2016-11-03 07:23:35 +08:00
|
|
|
F: package/lttng-babeltrace/
|
|
|
|
F: package/lttng-libust/
|
|
|
|
F: package/lttng-modules/
|
|
|
|
F: package/lttng-tools/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-ipython/
|
2016-11-03 07:23:35 +08:00
|
|
|
F: package/liburcu/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2020-01-03 23:16:57 +08:00
|
|
|
N: Philippe Reynes <philippe.reynes@softathome.com>
|
|
|
|
F: package/ibm-sw-tpm2/
|
|
|
|
|
2018-02-16 00:50:37 +08:00
|
|
|
N: Pierre Crokaert <pct@crookies.net>
|
|
|
|
F: board/hardkernel/odroidxu4/
|
|
|
|
F: configs/odroidxu4_defconfig
|
|
|
|
|
2018-07-05 15:35:23 +08:00
|
|
|
N: Pierre Ducroquet <pinaraf@pinaraf.info>
|
|
|
|
F: package/kf5/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Pierre Floury <pierre.floury@gmail.com>
|
|
|
|
F: package/trace-cmd/
|
|
|
|
|
2019-05-06 03:52:27 +08:00
|
|
|
N: Pierre-Jean Texier <pjtexier@koncepto.io>
|
2019-09-15 21:02:04 +08:00
|
|
|
F: package/fping/
|
2019-08-13 00:09:30 +08:00
|
|
|
F: package/genimage/
|
2019-09-11 03:07:11 +08:00
|
|
|
F: package/haveged/
|
2019-11-28 00:36:05 +08:00
|
|
|
F: package/ipset/
|
2019-08-13 00:09:30 +08:00
|
|
|
F: package/libarchive/
|
2019-08-03 04:42:04 +08:00
|
|
|
F: package/libevent/
|
2019-05-06 03:52:27 +08:00
|
|
|
F: package/libubootenv/
|
2019-08-13 00:09:30 +08:00
|
|
|
F: package/libxml2/
|
2019-10-14 00:11:52 +08:00
|
|
|
F: package/mongoose/
|
2019-09-17 05:13:41 +08:00
|
|
|
F: package/mxml/
|
2020-01-18 20:16:53 +08:00
|
|
|
F: package/numactl/
|
2019-09-18 01:51:31 +08:00
|
|
|
F: package/python-modbus-tk/
|
2019-06-21 02:38:13 +08:00
|
|
|
F: package/python-periphery/
|
2019-11-13 05:22:29 +08:00
|
|
|
F: package/raspi-gpio/
|
2019-10-20 21:53:43 +08:00
|
|
|
F: package/sbc/
|
2019-07-12 04:43:26 +08:00
|
|
|
F: package/stunnel/
|
2019-09-05 01:10:55 +08:00
|
|
|
F: package/tree/
|
2019-05-06 03:52:27 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Pieter De Gendt <pieter.degendt@gmail.com>
|
|
|
|
F: package/libvips/
|
|
|
|
|
|
|
|
N: Pieterjan Camerlynck <pieterjan.camerlynck@gmail.com>
|
|
|
|
F: package/libdvbpsi/
|
|
|
|
F: package/mraa/
|
2017-03-29 18:14:05 +08:00
|
|
|
F: package/synergy/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2019-08-11 20:07:29 +08:00
|
|
|
N: Rafal Susz <rafal.susz@gmail.com>
|
|
|
|
F: board/avnet/s6lx9_microboard/
|
|
|
|
F: configs/s6lx9_microboard_defconfig
|
|
|
|
|
2017-04-08 03:20:02 +08:00
|
|
|
N: Rahul Bedarkar <rahulbedarkar89@gmail.com>
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/cxxtest/
|
|
|
|
F: package/gflags/
|
|
|
|
F: package/glog/
|
|
|
|
F: package/gssdp/
|
|
|
|
F: package/gupnp/
|
|
|
|
F: package/gupnp-av/
|
2017-05-04 02:01:24 +08:00
|
|
|
F: package/let-me-create/
|
2017-04-21 17:22:04 +08:00
|
|
|
F: package/nanomsg/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2016-10-17 19:02:25 +08:00
|
|
|
N: Rahul Jain <rahul.jain@imgtec.com>
|
|
|
|
F: package/uhttpd/
|
|
|
|
F: package/ustream-ssl/
|
|
|
|
|
2019-09-09 18:09:45 +08:00
|
|
|
N: Refik Tuzakli <tuzakli.refik@gmail.com>
|
2020-02-04 03:31:55 +08:00
|
|
|
F: package/freescale-imx/
|
2019-03-22 19:10:44 +08:00
|
|
|
F: package/paho-mqtt-cpp/
|
|
|
|
|
2020-07-06 17:37:43 +08:00
|
|
|
N: Ramon Fried <rfried.dev@gmail.com>
|
|
|
|
F: package/bitwise/
|
|
|
|
|
2019-09-13 19:24:13 +08:00
|
|
|
N: Raphaël Mélotte <raphael.melotte@essensium.com>
|
|
|
|
F: package/jbig2dec/
|
|
|
|
|
2018-07-10 03:53:33 +08:00
|
|
|
N: Rémi Rérolle <remi.rerolle@gmail.com>
|
|
|
|
F: package/libfreeimage/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Renaud Aubin <root@renaud.io>
|
|
|
|
F: package/libhttpparser/
|
|
|
|
|
2018-05-24 00:55:04 +08:00
|
|
|
N: Ricardo Martincoski <ricardo.martincoski@datacom.com.br>
|
2017-07-23 12:20:16 +08:00
|
|
|
F: package/atop/
|
2019-12-31 11:12:55 +08:00
|
|
|
F: package/thermald/
|
2017-07-23 12:20:16 +08:00
|
|
|
|
2017-02-20 06:17:17 +08:00
|
|
|
N: Ricardo Martincoski <ricardo.martincoski@gmail.com>
|
2019-09-16 10:09:08 +08:00
|
|
|
F: support/testing/infra/
|
|
|
|
F: support/testing/run-tests
|
|
|
|
F: support/testing/tests/core/test_file_capabilities.py
|
|
|
|
F: support/testing/tests/download/
|
|
|
|
F: support/testing/tests/package/*_python*.py
|
|
|
|
F: support/testing/tests/package/test_atop.py
|
|
|
|
F: support/testing/tests/package/test_syslog_ng.py
|
2019-10-11 11:08:39 +08:00
|
|
|
F: support/testing/tests/package/test_tmux.py
|
2019-09-16 10:09:08 +08:00
|
|
|
F: support/testing/tests/utils/test_check_package.py
|
2017-07-02 00:40:39 +08:00
|
|
|
F: utils/check-package
|
|
|
|
F: utils/checkpackagelib/
|
2017-02-20 06:17:17 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Richard Braun <rbraun@sceen.net>
|
2016-11-03 15:59:27 +08:00
|
|
|
F: package/curlftpfs/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/tzdata/
|
|
|
|
|
2017-07-29 02:04:59 +08:00
|
|
|
N: RJ Ascani <rj.ascani@gmail.com>
|
|
|
|
F: package/azmq/
|
|
|
|
|
2018-11-29 14:21:40 +08:00
|
|
|
N: Robert Rose <robertroyrose@gmail.com>
|
|
|
|
F: package/grpc/
|
|
|
|
|
2016-09-13 04:54:53 +08: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-14 05:54:54 +08:00
|
|
|
F: board/qemu/
|
|
|
|
F: configs/qemu_*
|
2020-01-05 19:31:59 +08:00
|
|
|
F: package/alure/
|
2016-12-05 00:30:26 +08:00
|
|
|
F: package/aubio/
|
2019-08-12 04:55:11 +08:00
|
|
|
F: package/binutils/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/bullet/
|
2019-10-05 17:48:56 +08:00
|
|
|
F: package/clang/
|
|
|
|
F: package/clinfo/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/efl/
|
2019-04-23 01:10:47 +08:00
|
|
|
F: package/enet/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/enlightenment/
|
2018-03-20 05:19:02 +08:00
|
|
|
F: package/flare-engine/
|
2018-03-20 05:19:03 +08:00
|
|
|
F: package/flare-game/
|
2019-08-12 04:55:11 +08:00
|
|
|
F: package/gcc/
|
|
|
|
F: package/glibc/
|
2017-06-13 04:53:58 +08:00
|
|
|
F: package/irrlicht/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/liblinear/
|
2017-03-05 23:09:56 +08:00
|
|
|
F: package/lensfun/
|
2019-10-05 17:48:56 +08:00
|
|
|
F: package/libclc/
|
2017-12-27 05:10:06 +08:00
|
|
|
F: package/libgta/
|
2017-06-13 04:53:59 +08:00
|
|
|
F: package/libspatialindex/
|
2016-12-17 23:13:38 +08:00
|
|
|
F: package/linux-syscall-support/
|
2019-10-05 17:48:56 +08:00
|
|
|
F: package/llvm/
|
2017-02-27 00:48:55 +08:00
|
|
|
F: package/lugaru/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/mcelog/
|
2017-12-22 19:37:22 +08:00
|
|
|
F: package/mesa3d/
|
2017-07-13 20:40:43 +08:00
|
|
|
F: package/minetest/
|
2017-07-13 20:40:52 +08:00
|
|
|
F: package/minetest-game/
|
2019-05-29 23:16:55 +08:00
|
|
|
F: package/ogre/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/openpowerlink/
|
2017-03-26 05:58:58 +08:00
|
|
|
F: package/physfs/
|
2019-08-01 17:21:19 +08:00
|
|
|
F: package/piglit/
|
2017-11-30 04:04:52 +08:00
|
|
|
F: package/solarus/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/stress-ng/
|
2017-03-26 05:58:59 +08:00
|
|
|
F: package/supertux/
|
2017-11-30 06:29:30 +08:00
|
|
|
F: package/supertuxkart/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/terminology/
|
2018-04-20 16:29:01 +08:00
|
|
|
F: package/tk/
|
2017-01-09 06:20:10 +08:00
|
|
|
F: package/upower/
|
2018-09-22 18:56:25 +08:00
|
|
|
F: package/waffle/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/xenomai/
|
2019-05-29 23:16:53 +08:00
|
|
|
F: package/zziplib/
|
2020-02-14 05:47:38 +08:00
|
|
|
F: support/testing/tests/package/test_glxinfo.py
|
2020-02-14 06:29:13 +08:00
|
|
|
F: toolchain/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2018-07-10 03:53:33 +08:00
|
|
|
N: Roman Gorbenkov <roman.gorbenkov@ens2m.org>
|
|
|
|
F: package/davfs2/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Ryan Barnett <ryan.barnett@rockwellcollins.com>
|
|
|
|
F: package/atftp/
|
|
|
|
F: package/miraclecast/
|
|
|
|
F: package/python-pysnmp/
|
|
|
|
F: package/python-pysnmp-mibs/
|
|
|
|
F: package/python-tornado/
|
2020-07-20 22:32:45 +08:00
|
|
|
F: package/resiprocate/
|
2018-11-15 05:43:25 +08:00
|
|
|
F: package/websocketpp/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2016-10-17 00:04:22 +08:00
|
|
|
N: Ryan Coe <bluemrp9@gmail.com>
|
2016-10-18 04:14:31 +08:00
|
|
|
F: package/inadyn/
|
2016-10-17 00:04:22 +08:00
|
|
|
F: package/libite/
|
2016-12-17 06:26:53 +08:00
|
|
|
F: package/mariadb/
|
2016-10-17 00:04:22 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Ryan Wilkins <ryan@deadfrog.net>
|
|
|
|
F: package/biosdevname/
|
|
|
|
|
2019-09-08 16:03:16 +08:00
|
|
|
N: Sam Lancia <sam@gpsm.co.uk>
|
|
|
|
F: package/lrzip/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Samuel Martin <s.martin49@gmail.com>
|
|
|
|
F: package/armadillo/
|
|
|
|
F: package/canfestival/
|
|
|
|
F: package/clapack/
|
|
|
|
F: package/cwiid/
|
|
|
|
F: package/flite/
|
|
|
|
F: package/nginx/
|
2016-09-22 03:53:29 +08:00
|
|
|
F: package/opencv/
|
|
|
|
F: package/opencv3/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/openobex/
|
2016-09-22 03:53:29 +08:00
|
|
|
F: package/pkg-cmake.mk
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-numpy/
|
|
|
|
F: package/scrub/
|
|
|
|
F: package/urg/
|
|
|
|
F: package/ussp-push/
|
2016-10-02 00:33:13 +08:00
|
|
|
F: support/misc/toolchainfile.cmake.in
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2019-10-03 08:31:46 +08:00
|
|
|
N: Sam Voss <sam.voss@gmail.com>
|
|
|
|
F: package/ripgrep/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Santosh Multhalli <santosh.multhalli@rockwellcollins.com>
|
|
|
|
F: package/valijson/
|
|
|
|
|
|
|
|
N: Scott Fan <fancp2007@gmail.com>
|
|
|
|
F: package/libssh/
|
|
|
|
F: package/x11r7/xdriver_xf86-video-fbturbo/
|
|
|
|
|
2018-07-10 03:53:33 +08:00
|
|
|
N: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
|
|
|
|
F: package/mmc-utils/
|
|
|
|
F: package/python-flask-jsonrpc/
|
|
|
|
F: package/python-flask-login/
|
|
|
|
F: package/qt5/qt5charts/
|
|
|
|
|
2017-04-06 23:41:17 +08:00
|
|
|
N: Semyon Kolganov <semenak94@mail.ru>
|
|
|
|
F: package/fmt/
|
2017-04-10 22:59:15 +08:00
|
|
|
F: package/libbson/
|
2017-04-26 02:10:58 +08:00
|
|
|
F: package/lua-resty-http/
|
2017-04-14 04:32:01 +08:00
|
|
|
F: package/mpir/
|
2017-04-06 23:41:17 +08:00
|
|
|
|
2017-06-19 02:41:59 +08:00
|
|
|
N: Sergey Matyukevich <geomatsi@gmail.com>
|
2017-12-04 05:48:10 +08:00
|
|
|
F: boot/arm-trusted-firmware/
|
2017-12-04 05:48:09 +08:00
|
|
|
F: boot/binaries-marvell/
|
2017-12-04 05:48:08 +08:00
|
|
|
F: boot/mv-ddr-marvell/
|
2017-12-04 05:25:12 +08:00
|
|
|
F: board/linksprite/pcduino
|
2017-11-06 18:16:51 +08:00
|
|
|
F: board/orangepi/orangepi-zero
|
2017-11-06 18:16:52 +08:00
|
|
|
F: board/orangepi/orangepi-one
|
2017-11-09 03:43:32 +08:00
|
|
|
F: board/orangepi/orangepi-pc-plus/
|
2017-12-09 20:17:20 +08:00
|
|
|
F: board/solidrun/macchiatobin
|
2017-12-04 05:25:12 +08:00
|
|
|
F: configs/linksprite_pcduino_defconfig
|
2017-11-06 18:16:52 +08:00
|
|
|
F: configs/orangepi_one_defconfig
|
2017-11-09 03:43:32 +08:00
|
|
|
F: configs/orangepi_pc_plus_defconfig
|
2017-11-06 18:16:51 +08:00
|
|
|
F: configs/orangepi_zero_defconfig
|
2020-04-15 21:41:36 +08:00
|
|
|
F: configs/solidrun_macchiatobin_defconfig
|
2017-12-04 04:32:18 +08:00
|
|
|
F: package/armbian-firmware/
|
2019-09-29 01:36:32 +08:00
|
|
|
F: package/hostapd/
|
2017-11-09 03:43:33 +08:00
|
|
|
F: package/rtl8189fs/
|
2019-09-29 01:36:32 +08:00
|
|
|
F: package/wpa_supplicant/
|
2017-12-04 04:32:18 +08:00
|
|
|
F: package/xr819-xradio/
|
2017-06-19 02:41:59 +08:00
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Sergio Prado <sergio.prado@e-labworks.com>
|
2019-08-11 20:07:27 +08:00
|
|
|
F: board/toradex/apalis-imx6/
|
|
|
|
F: configs/toradex_apalis_imx6_defconfig
|
2018-01-15 17:08:51 +08:00
|
|
|
F: package/aoetools/
|
2020-07-04 08:44:36 +08:00
|
|
|
F: package/azure-iot-sdk-c/
|
2017-12-31 19:55:04 +08:00
|
|
|
F: package/curlpp/
|
2017-12-25 05:18:05 +08:00
|
|
|
F: package/daq/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/libgdiplus/
|
2017-12-12 06:17:41 +08:00
|
|
|
F: package/pimd/
|
2018-04-01 23:16:36 +08:00
|
|
|
F: package/snort/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/stella/
|
2019-12-23 06:12:03 +08:00
|
|
|
F: package/tio/
|
2017-12-16 21:01:49 +08:00
|
|
|
F: package/traceroute/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/tunctl/
|
|
|
|
F: package/ubus/
|
2017-12-24 00:32:15 +08:00
|
|
|
F: package/wolfssl/
|
2016-09-13 04:54:53 +08: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/python-nfc/
|
|
|
|
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/
|
|
|
|
|
|
|
|
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/
|
|
|
|
|
2020-03-30 02:00:16 +08:00
|
|
|
N: Stefan Ott <stefan@ott.net>
|
|
|
|
F: package/unbound/
|
|
|
|
|
2017-02-09 21:45:55 +08:00
|
|
|
N: Stefan Sørensen <stefan.sorensen@spectralink.com>
|
2017-05-05 20:35:26 +08:00
|
|
|
F: package/cracklib/
|
2017-05-05 20:35:27 +08:00
|
|
|
F: package/libpwquality/
|
2017-02-09 21:45:55 +08:00
|
|
|
F: package/libscrypt/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Stephan Hoffmann <sho@relinux.de>
|
|
|
|
F: package/cache-calibrator/
|
|
|
|
F: package/gtest/
|
2020-05-18 17:36:02 +08:00
|
|
|
F: package/libhttpserver/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/mtdev/
|
|
|
|
|
2020-05-27 13:07:48 +08:00
|
|
|
N: Stephane Viau <stephane.viau@oss.nxp.com>
|
|
|
|
F: board/freescale/imx8mnevk/
|
|
|
|
F: configs/freescale_imx8mnevk_defconfig
|
|
|
|
|
2016-09-13 04:54:53 +08: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/
|
|
|
|
F: package/tovid/
|
2018-01-23 05:31:38 +08:00
|
|
|
F: package/udftools/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/xorriso/
|
|
|
|
|
|
|
|
N: Steven Noonan <steven@uplinklabs.net>
|
|
|
|
F: package/hwloc/
|
|
|
|
F: package/powertop/
|
|
|
|
|
2020-03-28 13:04:29 +08:00
|
|
|
N: Suniel Mahesh <sunil@amarulasolutions.com>
|
2020-03-28 13:04:31 +08:00
|
|
|
F: board/firefly/
|
2020-07-05 04:16:45 +08:00
|
|
|
F: board/radxa/rockpi-4
|
2020-07-17 19:50:34 +08:00
|
|
|
F: board/radxa/rockpi-n8
|
2020-07-05 04:16:44 +08:00
|
|
|
F: board/radxa/rockpi-n10
|
2020-03-28 13:04:31 +08:00
|
|
|
F: configs/roc_pc_rk3399_defconfig
|
2020-07-05 04:16:45 +08:00
|
|
|
F: configs/rock_pi_4_defconfig
|
2020-07-17 19:50:34 +08:00
|
|
|
F: configs/rock_pi_n8_defconfig
|
2020-07-05 04:16:44 +08:00
|
|
|
F: configs/rock_pi_n10_defconfig
|
2020-03-28 13:04:29 +08:00
|
|
|
F: package/arm-gnu-a-toolchain/
|
|
|
|
|
2018-04-30 18:21:17 +08:00
|
|
|
N: Sven Haardiek <sven.haardiek@iotec-gmbh.de>
|
2017-09-08 16:36:33 +08:00
|
|
|
F: package/lcdproc/
|
2018-05-02 15:26:38 +08:00
|
|
|
F: package/python-influxdb/
|
2017-09-08 16:36:33 +08:00
|
|
|
|
2019-04-14 04:40:57 +08:00
|
|
|
N: Sven Oliver Moll <svolli@svolli.de>
|
|
|
|
F: package/most/
|
|
|
|
|
2016-09-21 18:19:23 +08:00
|
|
|
N: Theo Debrouwere <t.debrouwere@televic.com>
|
2019-08-11 20:07:37 +08:00
|
|
|
F: board/beagleboardx15/
|
|
|
|
F: configs/beagleboardx15_defconfig
|
2016-09-21 18:19:23 +08:00
|
|
|
F: package/pugixml/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Thierry Bultel <tbultel@free.fr>
|
|
|
|
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 17:17:40 +08:00
|
|
|
F: package/openlayers/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Thomas Davis <sunsetbrew@sunsetbrew.com>
|
|
|
|
F: package/civetweb/
|
|
|
|
|
2017-02-01 00:03:43 +08:00
|
|
|
N: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
|
|
|
|
F: docs/manual/
|
2019-12-23 23:10:59 +08:00
|
|
|
F: package/cereal/
|
2020-02-10 19:26:30 +08:00
|
|
|
F: package/chartjs/
|
2019-12-20 21:44:36 +08:00
|
|
|
F: package/libtelnet/
|
2017-02-06 23:19:03 +08:00
|
|
|
F: package/opkg-utils/
|
2018-07-13 05:00:45 +08:00
|
|
|
F: package/perl-convert-asn1/
|
2018-07-13 05:00:46 +08:00
|
|
|
F: package/perl-crypt-blowfish/
|
2018-07-13 05:00:47 +08:00
|
|
|
F: package/perl-crypt-cbc/
|
2019-12-19 04:18:42 +08:00
|
|
|
F: package/perl-crypt-openssl-aes/
|
2020-02-10 19:26:25 +08:00
|
|
|
F: package/perl-i18n/
|
2020-02-10 19:26:24 +08:00
|
|
|
F: package/perl-locale-maketext-lexicon/
|
2020-02-10 19:26:32 +08:00
|
|
|
F: package/perl-lwp-protocol-https/
|
2019-12-19 04:18:44 +08:00
|
|
|
F: package/perl-math-prime-util/
|
2018-07-13 05:00:49 +08:00
|
|
|
F: package/perl-mime-base64-urlsafe/
|
2018-07-13 05:00:50 +08:00
|
|
|
F: package/perl-mojolicious-plugin-authentication/
|
2020-02-10 19:26:26 +08:00
|
|
|
F: package/perl-mojolicious-plugin-authorization/
|
2020-02-10 19:26:27 +08:00
|
|
|
F: package/perl-mojolicious-plugin-cspheader/
|
2020-02-10 19:26:28 +08:00
|
|
|
F: package/perl-mojolicious-plugin-i18n/
|
2020-02-10 19:26:29 +08:00
|
|
|
F: package/perl-mojolicious-plugin-securityheader/
|
2020-02-10 19:26:31 +08:00
|
|
|
F: package/perl-mozilla-ca/
|
2018-07-13 05:00:52 +08:00
|
|
|
F: package/perl-net-snmp/
|
2018-07-13 05:00:53 +08:00
|
|
|
F: package/perl-net-ssh2/
|
2018-07-13 05:00:54 +08:00
|
|
|
F: package/perl-net-telnet/
|
2020-02-10 19:26:33 +08:00
|
|
|
F: package/perl-path-class/
|
2018-07-04 15:07:36 +08:00
|
|
|
F: package/pigz/
|
2019-01-09 04:38:54 +08:00
|
|
|
F: package/xenomai/
|
2017-02-01 00:03:43 +08:00
|
|
|
F: support/scripts/size-stats
|
2020-02-10 19:26:32 +08:00
|
|
|
F: support/testing/tests/package/test_perl_lwp_protocol_https.py
|
2017-07-02 00:40:39 +08:00
|
|
|
F: utils/size-stats-compare
|
2017-02-01 00:03:43 +08:00
|
|
|
F: toolchain/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2019-04-22 16:11:25 +08:00
|
|
|
N: Thomas Huth <huth@tuxfamily.org>
|
|
|
|
F: package/ascii-invaders/
|
|
|
|
|
2018-02-13 21:26:34 +08:00
|
|
|
N: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
|
2016-09-13 04:54:53 +08:00
|
|
|
F: arch/Config.in.arm
|
2019-10-27 20:53:39 +08:00
|
|
|
F: board/stmicroelectronics/stm32mp157c-dk2/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: boot/boot-wrapper-aarch64/
|
|
|
|
F: boot/grub2/
|
|
|
|
F: boot/gummiboot/
|
2019-10-27 20:53:39 +08:00
|
|
|
F: configs/stm32mp157c_dk2_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/android-tools/
|
|
|
|
F: package/b43-firmware/
|
|
|
|
F: package/b43-fwcutter/
|
|
|
|
F: package/c-periphery/
|
|
|
|
F: package/cdrkit/
|
|
|
|
F: package/cifs-utils/
|
|
|
|
F: package/cloop/
|
|
|
|
F: package/cmake/
|
|
|
|
F: package/cramfs/
|
|
|
|
F: package/dmidecode/
|
|
|
|
F: package/flashrom/
|
2016-10-15 21:53:36 +08:00
|
|
|
F: package/gcc/
|
2016-09-13 04:54:53 +08: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/
|
|
|
|
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 17:06:25 +08:00
|
|
|
F: package/musl-fts/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/ne10/
|
|
|
|
F: package/pkg-python.mk
|
|
|
|
F: package/pkg-autotools.mk
|
|
|
|
F: package/pkg-generic.mk
|
|
|
|
F: package/python/
|
|
|
|
F: package/python3/
|
|
|
|
F: package/python-mad/
|
|
|
|
F: package/python-serial/
|
|
|
|
F: package/qextserialport/
|
|
|
|
F: package/rpcbind/
|
|
|
|
F: package/rt-tests/
|
2019-01-15 17:32:29 +08:00
|
|
|
F: package/rtc-tools/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/sam-ba/
|
|
|
|
F: package/scons/
|
|
|
|
F: package/squashfs/
|
|
|
|
F: package/wayland/
|
|
|
|
F: package/weston/
|
2020-03-24 22:23:56 +08:00
|
|
|
F: support/testing/tests/boot/test_syslinux.py
|
2016-09-13 04:54:53 +08:00
|
|
|
F: toolchain/
|
|
|
|
|
2018-03-08 16:28:37 +08:00
|
|
|
N: Timo Ketola <timo.ketola@exertus.fi>
|
|
|
|
F: package/fbgrab/
|
|
|
|
|
2019-05-09 15:43:11 +08:00
|
|
|
N: Titouan Christophe <titouan.christophe@railnova.eu>
|
2019-12-24 01:23:56 +08:00
|
|
|
F: package/avro-c/
|
2019-08-03 17:38:58 +08:00
|
|
|
F: package/mosquitto/
|
2019-12-24 01:23:57 +08:00
|
|
|
F: package/python-avro/
|
2019-05-09 15:43:11 +08:00
|
|
|
F: package/redis/
|
2020-02-03 22:26:28 +08:00
|
|
|
F: package/waf/
|
2020-02-05 22:11:49 +08:00
|
|
|
F: support/testing/tests/package/test_crudini.py
|
2020-06-02 18:40:09 +08:00
|
|
|
F: support/testing/tests/package/test_redis.py
|
2019-05-09 15:43:11 +08:00
|
|
|
|
package/libp11: new package
Library for using PKCS#11, which includes an engine for OpenSSL that
lets it use PKCS#11 modules. Which is really what this package is
about, not that libp11 library itself, which has no users outside the
of OpenSSL engine.
If p11-kit is enabled, configure the engine to use that as the default
PKCS#11 module. That module is a sort of multiplexer that allows
multiple modules to be used at once, so it makes sense to use it even
if there are other modules present, e.g. softhsm2, nssckbi,
pkcs11-proxy, ykcs11, etc.
A host package is created too, with a host configuration option.
Since this a dynamically loaded module, there is no build time reason
to select it from a host package. It could be used by host openssl,
to allow host rauc to sign a software update bundle using a key from a
HSM with a PKCS#11 interface.
Signed-off-by: Trent Piepho <tpiepho@impinj.com>
Tested-by: Frank Hunleth <fhunleth@troodon-software.com>
[Thomas:
- add entry in DEVELOPERS file
- add missing !BR2_STATIC_LIBS dependency
- fix license information, as noticed by Frank Hunleth
- add missing dependency on host-pkgconf, needed by the configure
script to detect openssl
- explicitly pass --with-enginesdir as the value returned by
pkg-config is incorrectly prefixed by the sysroot]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018-12-08 02:13:30 +08:00
|
|
|
N: Trent Piepho <tpiepho@impinj.com>
|
|
|
|
F: package/libp11/
|
|
|
|
|
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 13:57:04 +08:00
|
|
|
N: Tudor Holton <buildroot@tudorholton.com>
|
|
|
|
F: package/openjdk/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Tzu-Jung Lee <roylee17@gmail.com>
|
|
|
|
F: package/dropwatch/
|
|
|
|
F: package/tstools/
|
|
|
|
|
2018-12-25 01:28:47 +08:00
|
|
|
N: Vadim Kochan <vadim4j@gmail.com>
|
|
|
|
F: package/brcm-patchram-plus/
|
2020-02-25 23:53:22 +08:00
|
|
|
F: package/frr/
|
2019-03-28 07:08:31 +08:00
|
|
|
F: package/gettext-tiny/
|
2019-08-20 07:44:13 +08:00
|
|
|
F: package/tinyssh/
|
2018-12-25 01:28:47 +08:00
|
|
|
|
2018-07-17 17:31:09 +08:00
|
|
|
N: Valentin Korenblit <valentinkorenblit@gmail.com>
|
2018-04-12 00:14:49 +08:00
|
|
|
F: package/clang/
|
2018-10-21 06:14:37 +08:00
|
|
|
F: package/clinfo/
|
2018-10-20 22:34:49 +08:00
|
|
|
F: package/libclc/
|
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-05 00:31:18 +08:00
|
|
|
F: package/llvm/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Vanya Sergeev <vsergeev@gmail.com>
|
|
|
|
F: package/lua-periphery/
|
|
|
|
|
2019-08-13 15:33:20 +08:00
|
|
|
N: Victor Huesca <victor.huesca@bootlin.com>
|
|
|
|
F: support/testing/tests/core/test_root_password.py
|
|
|
|
|
2018-05-29 16:00:12 +08:00
|
|
|
N: Vincent Prince <vincent.prince.fr@gmail.com>
|
|
|
|
F: package/nss-myhostname/
|
2019-02-04 21:10:23 +08:00
|
|
|
F: package/utp_com/
|
2018-05-29 16:00:12 +08:00
|
|
|
|
2017-07-04 04:09:23 +08:00
|
|
|
N: Vincent Stehlé <vincent.stehle@laposte.net>
|
2020-05-08 00:45:19 +08:00
|
|
|
F: board/bananapi/bananapi-m2-zero/
|
|
|
|
F: configs/bananapi_m2_zero_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/i7z/
|
|
|
|
F: package/msr-tools/
|
2017-07-04 04:09:23 +08:00
|
|
|
F: package/pixz/
|
2016-09-13 04:54:53 +08:00
|
|
|
|
|
|
|
N: Vinicius Tinti <viniciustinti@gmail.com>
|
|
|
|
F: package/python-thrift/
|
|
|
|
|
2019-09-20 00:53:31 +08:00
|
|
|
N: Vivien Didelot <vivien.didelot@gmail.com>
|
2018-03-06 01:15:05 +08:00
|
|
|
F: board/technologic/ts5500/
|
|
|
|
F: configs/ts5500_defconfig
|
|
|
|
|
2016-09-13 04:54:53 +08: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>
|
2016-10-09 00:18:26 +08:00
|
|
|
F: package/uclibc/
|
2016-12-05 04:50:40 +08:00
|
|
|
F: package/uclibc-ng-test/
|
2016-09-13 04:54:53 +08: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/
|
|
|
|
|
|
|
|
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/
|
|
|
|
|
2020-05-19 16:26:30 +08:00
|
|
|
N: Yair Ben Avraham <yairba@protonmail.com>
|
|
|
|
F: package/gloox/
|
|
|
|
|
2016-09-13 04:54:53 +08:00
|
|
|
N: Yann E. MORIN <yann.morin.1998@free.fr>
|
2019-08-11 20:07:33 +08:00
|
|
|
F: board/friendlyarm/nanopi-neo/
|
|
|
|
F: configs/nanopi_neo_defconfig
|
2017-07-11 06:14:51 +08:00
|
|
|
F: fs/squashfs/
|
2017-11-27 21:30:49 +08:00
|
|
|
F: package/asterisk/
|
2020-03-24 02:03:30 +08:00
|
|
|
F: package/cegui/
|
2017-11-27 21:30:49 +08:00
|
|
|
F: package/dahdi-linux/
|
|
|
|
F: package/dahdi-tools/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/dtc/
|
|
|
|
F: package/dtv-scan-tables/
|
|
|
|
F: package/dvb-apps/
|
2017-02-18 22:33:04 +08:00
|
|
|
F: package/freerdp/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/keyutils/
|
|
|
|
F: package/libbsd/
|
|
|
|
F: package/libedit/
|
2017-01-28 03:33:46 +08: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-12 00:34:00 +08:00
|
|
|
F: package/libiberty/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/libinput/
|
|
|
|
F: package/libiscsi/
|
2017-11-27 21:30:49 +08:00
|
|
|
F: package/libpri/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/libseccomp/
|
2017-11-27 21:30:49 +08:00
|
|
|
F: package/libss7/
|
2018-01-14 06:24:29 +08:00
|
|
|
F: package/linux-firmware/
|
2016-10-15 21:55:41 +08:00
|
|
|
F: package/linux-tools/
|
2017-12-24 00:15:39 +08:00
|
|
|
F: package/matchbox*
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/mesa3d-headers/
|
2017-03-12 17:58:15 +08:00
|
|
|
F: package/nbd/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/nut/
|
2016-09-21 18:19:23 +08:00
|
|
|
F: package/nvidia-driver/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/omxplayer/
|
|
|
|
F: package/python-pyparsing/
|
|
|
|
F: package/pkg-download.mk
|
2016-10-31 00:02:15 +08:00
|
|
|
F: package/pkg-waf.mk
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/slirp/
|
|
|
|
F: package/snappy/
|
|
|
|
F: package/spice/
|
|
|
|
F: package/spice-protocol/
|
2016-10-15 21:55:41 +08:00
|
|
|
F: package/systemd/
|
|
|
|
F: package/systemd-bootchart/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/tmux/
|
|
|
|
F: package/tvheadend/
|
|
|
|
F: package/usbredir/
|
|
|
|
F: package/vde2/
|
|
|
|
F: package/w_scan/
|
2016-10-15 21:55:41 +08:00
|
|
|
F: package/wayland/
|
|
|
|
F: package/weston/
|
2018-01-03 04:04:11 +08:00
|
|
|
F: package/zisofs-tools/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: support/download/
|
|
|
|
|
|
|
|
N: Yegor Yefremov <yegorslists@googlemail.com>
|
2019-09-27 16:59:03 +08:00
|
|
|
F: configs/beaglebone_defconfig
|
|
|
|
F: configs/beaglebone_qt5_defconfig
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/acl/
|
|
|
|
F: package/attr/
|
|
|
|
F: package/boost/
|
|
|
|
F: package/bootstrap/
|
|
|
|
F: package/cannelloni/
|
2016-12-18 20:00:26 +08:00
|
|
|
F: package/can-utils/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/circus/
|
2019-09-09 16:54:36 +08:00
|
|
|
F: package/dhcpcd/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/feh/
|
|
|
|
F: package/giblib/
|
|
|
|
F: package/imlib2/
|
|
|
|
F: package/jquery-datetimepicker/
|
|
|
|
F: package/jquery-sidebar/
|
|
|
|
F: package/kmod/
|
2020-02-06 19:12:09 +08:00
|
|
|
F: package/libftdi1/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/libical/
|
|
|
|
F: package/libmbim/
|
|
|
|
F: package/libndp/
|
|
|
|
F: package/libnftnl/
|
|
|
|
F: package/libsoc/
|
|
|
|
F: package/libsocketcan/
|
|
|
|
F: package/libubox/
|
|
|
|
F: package/libuci/
|
|
|
|
F: package/linux-firmware/
|
2019-11-05 19:56:07 +08:00
|
|
|
F: package/linux-serial-test/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/modem-manager/
|
2019-09-09 16:54:36 +08:00
|
|
|
F: package/nftables/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/nuttcp/
|
|
|
|
F: package/parted/
|
2017-04-13 17:33:20 +08:00
|
|
|
F: package/phytool/
|
2017-12-04 19:16:08 +08:00
|
|
|
F: package/poco/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python*
|
2016-11-07 14:51:33 +08:00
|
|
|
F: package/ser2net/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/socketcand/
|
2020-02-06 19:12:09 +08:00
|
|
|
F: package/swig/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/qt5/qt5serialbus/
|
|
|
|
F: package/sdparm/
|
|
|
|
F: package/ti-utils/
|
|
|
|
F: package/x11r7/xapp_xconsole/
|
|
|
|
F: package/x11r7/xapp_xinput-calibrator/
|
|
|
|
F: package/zlog/
|
2020-02-10 17:11:49 +08:00
|
|
|
F: support/testing/tests/package/test_libftdi1.py
|
2020-01-15 16:09:26 +08:00
|
|
|
F: support/testing/tests/package/test_python_can.py
|
2017-07-02 00:40:39 +08:00
|
|
|
F: utils/scanpypi
|
2016-09-13 04:54:53 +08:00
|
|
|
|
2018-06-03 05:11:13 +08:00
|
|
|
N: Zoltan Gyarmati <zgyarmati@zgyarmati.de>
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/crudini/
|
|
|
|
F: package/grantlee/
|
2019-08-27 18:46:23 +08:00
|
|
|
F: package/libusb/
|
|
|
|
F: package/libusb-compat/
|
2017-12-17 07:52:59 +08:00
|
|
|
F: package/proj/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/python-configobj/
|
|
|
|
F: package/python-iniparse/
|
|
|
|
F: package/qjson/
|
|
|
|
F: package/quazip/
|
2016-07-31 20:45:50 +08:00
|
|
|
F: package/shapelib/
|
2016-09-13 04:54:53 +08:00
|
|
|
F: package/tinc/
|