| Commit message (Collapse) | Author | Age |
| |
|
|\
| |
| | |
wsdd2: update to git (2019-12-15), bind to 'lan' only
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* update to git (2019-12-15)
* bind to 'lan' interface only
* make cifsd compatible (avoid testparm dependency)
* only start if needed
* add meta data (vendor, model, sku)
* update smb.conf procd location
* lower restart delay
* remove outdated patch
Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
|
| |
| |
| |
| | |
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
|
|/
|
|
| |
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
|
|\
| |
| | |
protobuf: fix libdir handling for host build
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
On some host machines (example: Gentoo amd64 no-multilib) by default
cmake will install libraries to lib64. But in OpenWrt the correct libdir
is lib (for instance the RPATH is set to lib). So you may end up with
libraries in lib64 while RPATH points to lib:
sk@darth ~/tmp/openwrt $ ldd staging_dir/hostpkg/bin/protoc
linux-vdso.so.1 (0x00007ffc741ea000)
libprotoc.so.3.8.0.0 => not found
libprotobuf.so.3.8.0.0 => not found
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f0a8f7ea000)
libstdc++.so.6 => /usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/libstdc++.so.6 (0x00007f0a8f572000)
libm.so.6 => /lib64/libm.so.6 (0x00007f0a8f427000)
libgcc_s.so.1 => /usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/libgcc_s.so.1 (0x00007f0a8f40d000)
libc.so.6 => /lib64/libc.so.6 (0x00007f0a8f23c000)
/lib64/ld-linux-x86-64.so.2 (0x00007f0a8f827000)
sk@darth ~/tmp/openwrt $
Fix this by specifying the libdir during host builds.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
|
|\ \
| |/
|/| |
libfmt: bump to version 6.1.2
|
|/
|
|
| |
Signed-off-by: Othmar Truniger <github@truniger.ch>
|
|\
| |
| | |
dnsdist: fix missing quote in menu
|
| |
| |
| |
| |
| | |
Fixes missing double quote in menu
Signed off by: James Taylor <james@jtaylor.id.au>
|
|\ \
| | |
| | | |
ariang: update to 1.1.4
|
| | |
| | |
| | |
| | |
| | |
| | | |
Update ariang to 1.1.4
Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
|
| | |
| | |
| | |
| | |
| | |
| | | |
Partial backport of upstream patch.``
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|\ \ \
| |/ /
|/| | |
bfdd: Fix compilation with uClibc-ng
|
| | |
| | |
| | |
| | | |
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|\ \ \
| | | |
| | | | |
nextdns: update to version 1.3.1
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
- IPv6 support
- Fix HTTP/2 negociation
- Improve endpoint fallback
- Add support for unencrypted DNS
- Many other fixes and features
Signed-off-by: Olivier Poitrey <rs@nextdns.io>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Implement a new "cgi-exec" applet which allows to invoke remote commands
and stream their stdandard output back to the client via HTTP. This is
needed in cases where large amounts of data or binary encoded contents
such as tar archives need to be transferred, which are unsuitable to be
transported via ubus directly.
The exec call is guarded by the same ACL semantics as rpcd's file plugin,
means in order to be able to execute a command remotely, the ubus session
identified by the given session ID must have read access to the "exec"
function of the "cgi-io" scope and an explicit "exec" permission rule for
the invoked command in the "file" scope.
In order to initiate a transfer, a POST request in x-www-form-urlencoded
format must be sent to the applet, with one field "sessionid" holding
the login session and another field "command" specifiying the commandline
to invoke.
Further optional fields are "filename" which - if present - will cause
the download applet to set a Content-Dispostition header and "mimetype"
which allows to let the applet respond with a specific type instead of
the default "application/octet-stream".
Below is an example for the required ACL rules to grant exec access to
both the "date" and "iptables" commands. The "date" rule specifies the
base name of the executable and thus allows invocation with arbitrary
parameters while the latter "iptables" rule merely allows one specific
set of arguments which must appear exactly in the given order.
ubus call session grant '{
"ubus_rpc_session": "...",
"scope": "cgi-io",
"objects": [
[ "exec", "read" ]
]
}'
ubus call session grant '{
"ubus_rpc_session": "...",
"scope": "file",
"objects": [
[ "/bin/date", "exec" ],
[ "/usr/sbin/iptables -n -v -L", "exec" ]
]
}'
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Fixes
CVE-2019-1348, CVE-2019-1349, CVE-2019-1350, CVE-2019-1351,
CVE-2019-1352, CVE-2019-1353, CVE-2019-1354, CVE-2019-1387, and
CVE-2019-19604
And fix deprecated PKG_CPE_ID
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
|
| | |
| | |
| | |
| | |
| | |
| | | |
Needed for libcxx compatibility. It probably generates bigger code.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
| | |
| | |
| | |
| | |
| | |
| | | |
Needed for libcxx compatibility.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|\ \ \
| |_|/
|/| | |
h2o: update wslay link patch to upstream
|
|/ /
| |
| |
| |
| |
| | |
Update wslay link patch with upstream fix from h2o/h2o#2196
Signed-off-by: James Taylor <james@jtaylor.id.au>
|
|\ \
| | |
| | | |
modemmanager: release 1.12.2
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This new release also installs additional 'shared utils' loadable
libraries in /usr/lib/ModemManager, so make sure we include them in
the packaging.
Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
|
|\ \ \
| | | |
| | | | |
node-serialport-bindings: update to 8.0.4
|
| | |/
| |/|
| | |
| | |
| | |
| | | |
support node v12
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
|
|\ \ \
| | | |
| | | | |
node-serialport: update to 8.0.5
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
support node v12
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
|
|\ \ \
| | | |
| | | | |
shairport-sync: Update to 3.3.5
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Rebased patch.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|\ \ \ \
| | | | |
| | | | | |
net/safe-search Update Google host list.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Periodic update of the list of Google domains using
https://www.google.com/supported_domains
as a reference.
Signed-off-by: Gregory L. Dietsche <gregory.dietsche@cuw.edu>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
libqmi: update to version 1.24.2
|
| | |_|/ /
| |/| | |
| | | | |
| | | | | |
Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
dnsdist: add missing dependency on libcap
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
When present on the build system dnsdist will try to make use of libcap. This
change adds an explicit dependency to ensure it's present at build time, to
prevent build failures when another package brings the dependency in.
Signed-off-by: James Taylor <james@jtaylor.id.au>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
mtr: update to 0.93
|
| | |_|_|/
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Update mtr to 0.93
Add size optimization options
ath79 ipk size: 31.9k -> 31.4k
Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
node-hid: update to 1.1.0
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | | |
Up to Node v12, v13
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
|
|\ \ \ \
| | | | |
| | | | | |
coova-chilli: Update to 1.5
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Remove upstreamed patches.
Added patch to fix compilation.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
libidn2: Update to 2.3.0
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Fixed license information.
Several Makefile cleanups for consistency between packages.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
libical: Update to 3.0.6
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Replace InstallDev with CMAKE_INSTALL.
Add PKG_BUILD_PARALLEL for faster compilation.
Fixed license info.
Refreshed patch.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
p11-kit: Fix uClibc-ng compile failure
|