aboutsummaryrefslogtreecommitdiff
path: root/utils
Commit message (Collapse)AuthorAge
...
* | | unzip: patch CVE-2015-7696, CVE-2015-7697 and integer underflowÁlvaro Fernández Rojas2015-11-01
| | | | | | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | collectd: add $(INSTALL_DIR) $(1)/etc/collectd/conf.dOliver Middleton2015-10-28
|/ / | | | | | | | | | | | | /etc/collectd/conf.d is referenced in the default config so should be installed to prevent the following in syslog every boot: Fri Oct 9 02:09:38 2015 user.emerg : configfile: stat (/etc/collectd/conf.d) failed: No such file or directory Signed-off-by: Oliver Middleton <olliemail27@gmail.com>
* | sane-backends: select all backends when CONFIG_ALLLuiz Angelo Daros de Luca2015-10-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sane-xxx backend packages are hidden packages with custom config and CONFIG_ALL does not select them alone. Now sane-backends depends on +ALL:sane-backends-all. No existing ipk is affected as the changed package/sane-backends does not exist as an ipk. 030-musl.patch was updated to be submitted upstream. However, the added preprocessor #if are always true for OpenWRT and will not change the resulting code. Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
* | Merge pull request #1875 from psidhu/masterSteven Barth2015-10-26
|\ \ | | | | | | gpsd: initial add to packages
| * | gpsd: initial add to packagesPushpal Sidhu2015-10-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | This package is currently in oldpackages. Add here to keep support for gpsd. From oldpackages, this was bumped from 3.10 -> 3.15 and includes an upstream patch to allow building with musl. Signed-off-by: Pushpal Sidhu <psidhu@gateworks.com>
* | | unrar: update to v5.3.6Álvaro Fernández Rojas2015-10-24
| | | | | | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | unrar: add libunrar supportÁlvaro Fernández Rojas2015-10-24
| | | | | | | | | | | | | | | | | | | | | Closes https://github.com/openwrt/packages/pull/1882 Signed-off-by: Nikolay Podoprigora volzhanin@gmail.com Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | swig: make it compile even if pcre libs are not availableJohn Crispin2015-10-20
|/ / | | | | | | Signed-off-by: John Crispin <blogic@openwrt.org>
* | swig: add PKG_LICENSE_FILEJohn Crispin2015-10-19
| | | | | | | | Signed-off-by: John Crispin <blogic@openwrt.org>
* | yunbridge: add linux side python codeJohn Crispin2015-10-19
| | | | | | | | | | | | | | | | | | to make the bridge work we need to run an askfirst instance on the ttyS. additionally add the lua scripts needed to make REST work. this is really ugly code but it works. i already cleaned up to the original code, but there are still issues such as a new luci session being created for each request. Signed-off-by: John Crispin <blogic@openwrt.org>
* | swig: add host buildJohn Crispin2015-10-19
| | | | | | | | | | | | this is a binding generator needed to build node plugins Signed-off-by: John Crispin <blogic@openwrt.org>
* | Merge pull request #1853 from szogi/masterSteven Barth2015-10-19
|\ \ | | | | | | open2300: re-add to the master, maintainer change, build check format fix
| * | open2300: added license informationsGabor SZOLLOSI2015-10-12
| | | | | | | | | Signed-off-by: Gabor SZOLLOSI <dev@localnet.hu>
| * | open2300: build check format fixGabor SZOLLOSI2015-10-11
| | | | | | | | | Signed-off-by: Gabor SZOLLOSI <dev@localnet.hu>
| * | open2300: format security offGabor SZOLLOSI2015-10-11
| | |
| * | open2300: re-add to the master, maintainer changeGabor SZOLLOSI2015-10-11
| | | | | | | | | | | | Signed-off-by: Gabor SZOLLOSI <dev@localnet.hu>
* | | gammu: bump to new upstream v1.36.6aTanW2015-10-19
| | | | | | | | | | | | | | | | | | | | | Signed-Off-By: Vitaly Protsko <villy@sft.ru> --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
* | | less: update to 481Julen Landa Alustiza2015-10-16
| | | | | | | | | | | | Signed-off-by: Julen Landa Alustiza <julen@zokormazo.info>
* | | Merge pull request #1857 from padre-lacroix/bandwidthdSteven Barth2015-10-15
|\ \ \ | | | | | | | | Addition of bandwidthd from the oldpackages
| * | | Addition of bandwidthd from the oldpackagesJean-Michel Lacroix2015-10-14
| | | | | | | | | | | | | | | | Signed-off-by: Jean-Michel Lacroix lacroix@lepine-lacroix.info
* | | | Merge pull request #1766 from hnyman/fix-collectd-dnsSteven Barth2015-10-13
|\ \ \ \ | | | | | | | | | | collectd: Delay first data read cycle by 1s
| * | | | collectd: Delay first data read cycle by 1sHannu Nyman2015-10-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some collectd plugins launch third-party plugins that have variation in initialisation time (like libpcap). Recently (since kernel bump to 4.1) the DNS plugin has been causing collectd to crash semi-randomly at startup on MIPS based WNDR3700. Debugging led to realisation that the DNS plugin seems to require at least 0.1s time to start, before the first data reading attempt starts. By default, the first data read cycle starts immediately, while apaprently some of the plugins may still be asyncronously initialising. To make things safe, this patch adds 1 second delay before the first data read cycle. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | | | Merge pull request #1799 from luizluca/saneSteven Barth2015-10-13
|\ \ \ \ \ | | | | | | | | | | | | sane-backends: import from oldpackages (v2)
| * | | | | sane-backends: import from oldpackages and updateLuiz Angelo Daros de Luca2015-10-11
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes since oldpackages: - updated to 1.0.25 * most of openwrt patches are upstreamed now - cups dependency was completely removed - small musl patch - small uclibc patch - removed link to extra libraries in libsane (used only for preload backends) - sane-libs and sane-backends merged and exploded into individual packages for each backend: * libsane for sane library (which backends should dep on) * sane-daemon for saned daemon * sane-xxx for sane backend for xxx ** each backend has its own custom dep libraries * sane-backends-all (with no files) that deps on all backends * sane-qcam is only available for x86/x86_64 ** other archs does not implement inb/outb (at least in musl) Now it is possible to use SANE with much less FS space (KB instead of MB). Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
* | | | | Merge pull request #1806 from ryzhovau/smstools3-compile-flagsSteven Barth2015-10-12
|\ \ \ \ \ | |/ / / / |/| | | | smstools3: fix CFLAGS and LFLAGS
| * | | | smstools3: fix CFLAGS and LFLAGSAlexander Ryzhov2015-09-25
| | |/ / | |/| | | | | | | | | | Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
* | | | unrar: update to v5.3.5Álvaro Fernández Rojas2015-10-08
| | | | | | | | | | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | | flashrom: make flashrom-full the default variant, remove empty dependenciesÁlvaro Fernández Rojas2015-10-08
| | | | | | | | | | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | | dump1090: update to latest versionÁlvaro Fernández Rojas2015-10-08
| | | | | | | | | | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | | add dfu-programmerStefan Hellermann2015-10-07
| |/ / |/| | | | | | | | | | | | | | | | | | | | dfu-programmer is a Device Firmware Update based USB programmer for Atmel chips with a USB bootloader. It's comparable to avrdude, but optimized for Atmel chips with integrated USB DFU Bootloader. Signed-off-by: Stefan Hellermann <stefan@the2masters.de>
* | | lvm2: update to version 2.02.132Daniel Golle2015-10-05
| | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | flashrom: switch to build variants instead of config optionsÁlvaro Fernández Rojas2015-10-04
| | | | | | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | zsh: bump to 5.1.1Vadim A. Misbakh-Soloviov2015-10-03
| | | | | | | | | | | | Signed-off-by: Vadim A. Misbakh-Soloviov <git@mva.name>
* | | dbus: bump to 1.10.0Steven Barth2015-10-03
| | | | | | | | | | | | Signed-off-by: Steven Barth <steven@midlink.org>
* | | Merge pull request #1834 from Wedmer/masterSteven Barth2015-10-03
|\ \ \ | | | | | | | | [utils/zoneinfo] Updated to the latest release.
| * | | [utils/zoneinfo] Updated to the latest release.Vladimir Ulrich2015-10-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The 2015g release of the tz code and data is available. It reflects the following changes, which were either circulated on the tz mailing list or are relatively minor technical or administrative changes: Changes affecting future time stamps Turkey's 2015 fall-back transition is scheduled for Nov. 8, not Oct. 25. (Thanks to Fatih.) Norfolk moves from +1130 to +1100 on 2015-10-04 at 02:00 local time. (Thanks to Alexander Krivenyshev.) Fiji's 2016 fall-back transition is scheduled for January 17, not 24. (Thanks to Ken Rylander.) Fort Nelson, British Columbia will not fall back on 2015-11-01. It has effectively been on MST (-0700) since it advanced its clocks on 2015-03-08. New zone America/Fort_Nelson. (Thanks to Matt Johnson.) Changes affecting past time stamps Norfolk observed DST from 1974-10-27 02:00 to 1975-03-02 02:00. Changes affecting code localtime no longer mishandles America/Anchorage after 2037. (Thanks to Bradley White for reporting the bug.) On hosts with signed 32-bit time_t, localtime no longer mishandles Pacific/Fiji after 2038-01-16 14:00 UTC. The localtime module allows the variables 'timezone', 'daylight', and 'altzone' to be in common storage shared with other modules, and declares them in case the system <time.h> does not. (Problems reported by Kees Dekker.) On platforms with tm_zone, strftime.c now assumes it is not NULL. This simplifies the code and is consistent with zdump.c. (Problem reported by Christos Zoulas.) Changes affecting documentation The tzfile man page now documents that transition times denote the starts (not the ends) of the corresponding time periods. (Ambiguity reported by Bill Seymour.) Signed-off-by: Vladimir Ulrich <admin@evl.su>
* | | | spi-tools: add new packageJohn Crispin2015-10-02
| | | | | | | | | | | | | | | | | | | | | | | | this package adds 2 tools that can be used to control spidev devices from userland Signed-off-by: John Crispin <blogic@openwrt.org>
* | | | collectd: backport parallel build fix from upstreamHannu Nyman2015-10-02
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Backport a fix for parallel build from upstream, where it has been commited to both trunk and 5.5 branch. https://github.com/collectd/collectd/issues/1146 https://github.com/collectd/collectd/commit/780e6a76021a240e95007a04b723d827120afa95 Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | collectd: disable perl bindings from dev hostTim Harvey2015-10-01
| | | | | | | | | | | | | | | | | | | | | if a user's env has PERL_MM_OPT defined collect will fail to build. Adding --with-perl-bindings="" will override this env var. Signed-off-by: Tim Harvey <tharvey@gateworks.com>
* | | Merge pull request #1796 from kdarbyshirebryant/collectdnetlinkJo-Philipp Wich2015-10-01
|\ \ \ | | | | | | | | collectd: netlink module re-enabled
| * | | collectd: netlink module remove ip package dependencyKevin Darbyshire-Bryant2015-09-21
| | | | | | | | | | | | | | | | Signed-off-by: Kevin Darbyshire-Bryant <kevin@darbyshire-bryant.me.uk>
| * | | collectd: netlink module re-enabledKevin Darbyshire-Bryant2015-09-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Collectd netlink module re-enabled and libnl library dependency satisfied with mini libmnl. $(eval $(call BuildPlugin,netlink,netlink input,netlink,+PACKAGE_collectd-mod-netlink:ip +PACKAGE_collectd-mod-netlink:libmnl)) Signed-off-by: Kevin Darbyshire-Bryant <kevin@darbyshire-bryant.me.uk>
* | | | dump1090: remove librtldr dependency for view1090 and clean up MakefileÁlvaro Fernández Rojas2015-09-30
| | | | | | | | | | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | | Merge pull request #1797 from mhei/fix-open-plc-utilsFlorian Fainelli2015-09-30
|\ \ \ \ | | | | | | | | | | open-plc-utils: upgrade to latest git revision and fix compilation
| * | | | open-plc-utils: upgrade to latest git revision and fix compilationMichael Heimpold2015-09-21
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Buildbots are reporting the following error: ../mme/ARPCPrint.c: In function 'ARPCPrint': ../mme/ARPCPrint.c:123:2: error: incompatible type for argument 3 of 'vfprintf' vfprintf (fp, (char *)(&data->LIST [LE16TOH (data->STROFFSET)]), (void *)(&data->LIST [LE16TOH (data->ARGOFFSET)])); ^ In file included from /store/buildbot/slave/mxs/build/staging_dir/toolchain-arm_arm926ej-s_gcc-4.8-linaro_musl-1.1.11_eabi/include/fortify/stdio.h:20:0, from ../mme/ARPCPrint.c:68: /store/buildbot/slave/mxs/build/staging_dir/toolchain-arm_arm926ej-s_gcc-4.8-linaro_musl-1.1.11_eabi/include/stdio.h:108:5: note: expected '__isoc_va_list' but argument is of type 'void *' Fix this by definition __UCLIBC__ to enable a workaround for this issue. While at, switch to HTTPS URL for cloning the git repo. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | | | dump1090: switch to mutability repo, make view1090 a separate packageÁlvaro Fernández Rojas2015-09-29
| | | | | | | | | | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | | pciutils: update to v3.4.0Álvaro Fernández Rojas2015-09-28
| | | | | | | | | | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | | | lxc: bump version to 1.1.3Marko Ratkaj2015-09-27
| |/ / |/| | | | | | | | Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
* | | canutils: add new package (fixes #1785)Anton Glukhov2015-09-21
|/ / | | | | | | | | | | | | Signed-off-by: Anton Glukhov <anton.a.glukhov@gmail.com> [Minor fixes] Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* | mbtools: fix build with libintl-fullDaniel Golle2015-09-19
| | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>