| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This commit modifies the dnscrypt-proxy plugin's `dnscrypt-proxy.init`
script to allow specifying a custom dnscrypt resolver. Prior to this
commit users of the dnscrypt-proxy plugin are only able to choose from
a dnscrypt resolver that is present in the packaged `ResolversList` CSV
file.
To specify a custom resolver three new configuration parameters are
required[0]: `ProviderName`, `ProviderKey` and `ResolverAddress`.
The `dnscrypt-proxy.init` script now maps `providername`, `providerkey`,
and `resolveraddress` values (if present) from a `dnscrypt-proxy.config`
file into the generated DNSCrypt configuration file.
`PKG_RELEASE` is increased from 1 to 2 to reflect the new functionality.
[0]: https://github.com/jedisct1/dnscrypt-proxy/blob/9eee47477031ad0ffef94160d7370d4dec6f2c3a/dnscrypt-proxy.conf#L28:L32
Signed-off-by: Daniel McCarney <daniel@binaryparadox.net>
|
|\
| |
| | |
moreutils: Add package
|
| |
| |
| |
| | |
Signed-off-by: Nikil Mehta <nikil.mehta@gmail.com>
|
|\ \
| | |
| | | |
cryptodev-linux: fix aria 2 spam message
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
cryptodev log by default unecessary debug message
With some app (like aria2) the syslog get spammed with lots of this message
cryptodev: aria2c[3231] (adjust_sg_array:106): reallocating from 32 to 512 pages
With this we disable logging of debug message as they are just for info purpose and they are not error at all.
Signed-off-by: Ansuel Smith ansuelsmth@gmail.com
|
|\ \
| | |
| | | |
mail: add greyfix
|
| | |
| | |
| | |
| | | |
Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
|
|\ \ \
| | | |
| | | | |
simple-adblock: initial version
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
simple-adblock: version 1.5 introduces background processing of downloaded list while the next list is being downloaded
Signed-off-by: Stan Grishin <stangri@melmac.net>
|
|\ \ \ \
| | | | |
| | | | | |
unbound: fix hotplug iface and ntp restarts
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Unbound is configured to restart on hotplug/iface but this can result
in numerous restarts at boot. Unbound also has a restart for NTP.
This was observed to generate trouble and even with procd robustness
too many crashes might occur (rare). Unbound would not be running.
Give more care to /var/lib/unbound/root.key during restarts. Use procd
for iface restarts. Check pidof() to wait one more second for Unbound.
Signed-off-by: Eric Luehrsen <ericluehrsen@hotmail.com>
|
|\ \ \ \
| | | | |
| | | | | |
net/mwan3: fix hotplug on ACTION ifdown
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
On dynamic interface proto (dhcp/pppoe) the hotplug will not execude (exit 9)
because the gateway is already released. The check will now only be made
on a ifup ACTION event.
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
net/mwan3: add mwan3.user hotplug script
|
| |/ / /
| | | |
| | | |
| | | | |
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
|
|\ \ \ \
| |/ / /
|/| | | |
dfu-util: Add package
|
|/ / /
| | |
| | |
| | | |
Signed-off-by: Bruno Randolf <br1@einfach.org>
|
| | |
| | |
| | |
| | |
| | |
| | | |
- bump to stable 1.7.3 and pending patches from upstream
Signed-off-by: heil <heil@terminal-consulting.de>
|
|\ \ \
| | | |
| | | | |
python, python3: ship packages with byte-codes and derive python source packages
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Same as for python.
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Well, they're not yet compiled, but in the next commit
they should be.
People have been complaining [citation needed] to me
via email or via Github that Python's performance is crap
because it packages sources directly and they're not compiled.
And Python has to compile the sources on each run, and
on-the-fly.
Allowing compilation caching is also a no-no, because
I'll get complaints that the flash storage fills up
whenever a Python app runs.
So, to give the user a choice, the new de-facto packaging
for Python packages will be:
* ship compiled + [ preferably ] optimized files
* package sources separately
The problem is that this doubles the number of packages
in LEDE/OpenWrt, but build-times should not suffer a big
hit, since the compilation is done once, and the
install phase should not be too intensive.
Oh, and people don't need ship source packages if
they don't want to.
To do that, a packager needs to just call
`$(eval $(call BuildPackage,python-<package>-src))`
The `python-` prefix is important.
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We'll control in the install phase what we ship [byte-codes or source files]
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Well, this slipped by for some time.
This should make the Python core packages even more lighter.
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Both want to install libpython.so.
python-dev should install libpython.a
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
install rules
So that we can process Python sources installed
by those rules, if we need to.
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Same as for python.
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Cleanup.
And preparation for adding a bit more functionality.
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
|
|\ \ \ \
| | | | |
| | | | | |
mwan3: enhancement add ping size and flush conntrack table
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
miniupnpc: update to 2.0.20161216
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Install listdevices as well
Signed-off-by: Mo Chen <uncorrupt@gmail.com>
Signed-off-by: Matthew McClintock <msm-oss@mcclintock.net>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
horst: Fix build for LEDE
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Fortified headers don't seem to like _GNU_SOURCE in this case,
but we can remove that define since it's not needed. Add a patch
for LEDE until a new horst version is released.
Signed-off-by: Bruno Randolf <br1@einfach.org>
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
canutils: rework recipe
|
| | |_|_|/
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Don't group any utilities but just list them all as they are.
Fixes:
https://github.com/openwrt/packages/issues/3695
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
net/mwan3-luci: removed application
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Moved over to the LuCI repository.
Signed-off-by: Dan Luedtke <mail@danrl.com>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
net/cshark: remove luci-app-cshark
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Moved over to the LuCI repository.
Signed-off-by: Dan Luedtke <mail@danrl.com>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
ddns-scripts: update dnsexit.com update URL+response
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
remove answer checking for dnsexit as their API allows for too many return codes to handle them all.
Signed-off-by: Xavier Douville <zorxd@users.noreply.github.com>
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Signed-off-by: Xavier Douville <zorxd@users.noreply.github.com>
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
http://downloads.dnsexit.com/ipUpdateDev.doc
Signed-off-by: Xavier Douville <zorxd@users.noreply.github.com>
|
|\ \ \ \ \ \ \
| |_|_|_|/ / /
|/| | | | | | |
utils/gpsd: fix init script
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Add missing character in init script to match config file
Signed-off-by: Paul Wassi <p.wassi@gmx.at>
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
|