Commit Graph

1493 Commits

Author SHA1 Message Date
Stijn Tintel 9e265cfa1b domoticz: enable GPIO support
When cross-compiling Domoticz on a system without GPIO, the WITH_GPIO
flag is not set by cmake, and GPIO support is disabled as a result.
Enabling GPIO support by adding the flag to TARGET_CXXFLAGS.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2017-09-21 01:31:45 +03:00
Stijn Tintel 476dae33c7 domitcz: fix dzVents scripts
Domoticz 3.8153 introduced support for dzVents. Unfortunately this was
broken by the 902_add-scripts-path, which attempts to make Domoticz more
FHS-compliant instead of throwing everything under /opt/domoticz.

The problem is that dzVents scripts added via the webinterface will be
generated on the filesystem. With the 902_add-scripts-path patch,
Domoticz tried to write this to "scriptsdir/dzVents/generated_scripts".
As the scriptsdir contains scripts that come with upstream, and are not
meant to be changed, this defaults to /usr/share/domoticz/scripts, which
is not writeable, so Domoticz is unable to write the script to the
filesystem. What is worse is that this silently fails.

Fix this by moving the generated_scripts dir to
"userdatadir/generated_scripts". The userdatadir defaults to
/var/lib/domoticz, which is writeable.

Additionally, since this patch does more than just adding the scripts
path, rename it to something more appropriate.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2017-09-20 01:00:41 +03:00
Philip Prindeville ceb65a62bc pciutils: fetch pci.ids file deterministically
Instead of using update-pciids from a postinst script, just download
the pci.ids file from its repo the same way that usbutils grabs usb.ids.

Remove the compression since we're going onto a squashfs filesystem
(most likely) anyway.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2017-09-19 14:06:35 -06:00
Hannu Nyman a3438efc4a nano: update to 2.8.7
Update nano editor to 2.8.7

Apply post-release fix from upstream to enable compilation
with --enable-tiny

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-09-15 20:19:02 +03:00
Iván Atienza 885ddf9b68
bash: version bump to 4.4.12
Signed-off-by: Iván Atienza <gentoo.power@gmail.com>
2017-09-15 16:11:57 +02:00
Hannu Nyman 63a45e6de3 collectd: uptime plugin: apply fix from upstream
Uptime plugin fails to adjust for system time changes after boot.
As Openwrt/LEDE routers usually do not have a RTC, the system time
gets adjusted with NTP possibly after collectd has already started.
But collectd continues to use the initial time set by 'sysfixtime',
which can lead to incorrect uptime calculations.

Apply a proposed fix from upstream that uses /proc/uptime
Reference to https://github.com/collectd/collectd/pull/2034

Fixes #4819

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-09-15 00:18:34 +03:00
Adrian Panella 7313348033 zip: add host compile
make it available as a tool for building other packages

Signed-off-by: Adrian Panella <ianchi74@outlook.com>
2017-09-13 22:27:32 -05:00
Hannu Nyman d9a8e7541c Merge pull request #4787 from cwluxul/unsquashfs-fix-segfault-arm
squashfs-tools: fix segfault
2017-09-12 17:21:48 +03:00
Colby Whitney 5917d336fa squashfs-tools: fix segfault
Unsquashfs was segfaulting.  When examining in gdb the stack was corrupt.
I found that converting the variable length arrays to malloc caused the
stack corruption to not happen and the segfault went away.  This is due to
the musl pthread stack size being 80k by default.  So the chance of a stack
overflow is high.

Signed-off-by: Colby Whitney <colby.whitney@luxul.com>
2017-09-11 08:55:55 -06:00
Philip Prindeville addf2ff6c2 acpica-unix: update to 20170831
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2017-09-05 19:56:52 -06:00
Etienne Champetier 4006865ae8 treewide: run "make check FIXUP=1"
fix Makefile chmod (644)
replace MD5SUM with HASH
add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git

(PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now)

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
2017-08-29 21:41:14 -07:00
Paul Spooren 593d5dcf8e rpcd-mod-attendedsysupgrade: uci update_packages
add uci option to set "update_packages". this options will lead the
luci-app-attendedsysupgrade to tell the update server to check for
package updates as well (not only release upgrades)

Signed-off-by: Paul Spooren <paul@spooren.de>
2017-08-15 13:54:35 +02:00
Paul Spooren bc0a03071e rpcd-mod-attendedsysupgrade: simplify uci options
use named uci options

Signed-off-by: Paul Spooren <paul@spooren.de>
2017-08-14 19:09:58 +02:00
Etienne Champetier 37c9b31d7f Revert "btrfs-progs: update to 4.12"
This reverts commit 8592566b76.

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
2017-08-12 17:41:37 -07:00
champtar 724b3bdef3 Merge pull request #4514 from alive4ever/mksh-R55
mksh: bump to R55 and use PKG_HASH
2017-08-12 17:03:06 -07:00
Daniel Albers 8592566b76 btrfs-progs: update to 4.12
update to 4.12
remove PKG_MD5SUM

Signed-off-by: Daniel Albers <Daniel.Albers@public-files.de>
2017-08-12 09:25:22 +02:00
Paul Spooren d1d6c63f64 rpcd-mod-attendedsysupgrade: add keep_settings opt
as mentioned [here][1] some firmwares require to reset all settings.
this commit add a param "keep_settings" which changes the sysupgrade
parameter "-c" to "-n" to flush all configs

[1]: https://github.com/aparcar/gsoc17-attended-sysupgrade/issues/34

Signed-off-by: Paul Spooren <paul@spooren.de>
2017-08-12 00:52:56 +02:00
Stijn Tintel 0c52d40710 domoticz: remove additional files from package
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2017-08-07 20:19:18 +02:00
champtar f192dafdb5 Merge pull request #4674 from diizzyy/patch-80
utils/gptfdisk: Remove from tree
2017-08-06 22:29:34 -07:00
Daniel Engberg c0b8ace3e3 utils/gptfdisk: Remove from tree
linux-utils (fdisk) provides the functionality I need and I have no interest
in maintaining this package as it more or less overlaps the functionality
of the previously mentioned alternative.

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2017-08-07 05:59:08 +02:00
Philip Prindeville f4748658b6 Merge pull request #4658 from pprindeville/acpica-tools-update
acpica-unix: update to 20170728
2017-08-01 22:17:24 -06:00
Philip Prindeville 63996b19c6 acpica-unix: update to 20170728
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2017-07-31 14:21:23 -06:00
Stijn Tintel da7a73b89b domoticz: bump to 3.8153
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2017-07-31 16:47:55 +02:00
champtar c1faf78ed4 Merge pull request #4648 from jp-bennett/master
nano: Update to 2.8.6
2017-07-30 07:59:29 -07:00
Jonathan Bennett 4d5c8594f9 Nano: Update to 2.8.6
Signed-off-by: Jonathan Bennett <JBennett@incomsystems.biz>
2017-07-29 22:44:12 -05:00
Harald Geyer 0de567bf26 lcdproc: Update to 0.5.9
Drop the makefile code to compile versions directly from git.

Signed-off-by: Harald Geyer <harald@ccbib.org>
2017-07-29 20:29:39 +00:00
Paul Spooren c98e9f3b18 rpcd-mod-attendedsysupgrade: add missing .rpcd
due to renaming .rpcd was forgotten in the Makefile

Signed-off-by: Paul Spooren <paul@spooren.de>
2017-07-27 19:20:33 +02:00
Paul Spooren f9a6c81c11 rpcd-mod-attendedsysupgrade: add package
add ubus call to perform a sysupgrade and acl file for the attended
sysupgrade use case as well uci defaults.
Package is a part of the GSoC 17 project implementing easy
sysupgrade functionality.

Signed-off-by: Paul Spooren <paul@spooren.de>
2017-07-25 19:29:21 +02:00
Paul Spooren 0d2e674aa1 rpcd-mod-packagelist: add package
Provides a way to acquire the list of installed packages without the
need to have opkg available. It is being used for the GSoC 17 project
implementing easy sysupgrade functionality.

Signed-off-by: Paul Spooren <paul@spooren.de>
2017-07-25 17:54:24 +02:00
Alif M. Ahmad 369ff9d1c9 mksh: bump to R55 and use PKG_HASH
Upgrade the package to R55. Patches refreshed.

Added `-DMKSHRC_PATH=\"/etc/mkshrc\"` to `CPPFLAGS` to set the default
startup file during both login and nonlogin sessions, so that there is
no need to source `/etc/mkshrc` file manually.

In addition to the package upgrade, use PKG_HASH instead of
PKG_MD5SUM.

Reviewed-by: Thorsten Glaser <tg@mirbsd.org>
Signed-off-by: Alif M. Ahmad <alive4ever@live.com>
2017-07-20 22:07:20 +07:00
Etienne Champetier a392854df7 screen: update to 4.6.1, refresh patches
Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
2017-07-14 19:05:12 -07:00
Etienne Champetier 7891c3449f screen: add 256 colors support.
On ar71xx the package grow by less than 1k
150377 screen_4.6.0-1_mips_24kc.ipk
151356 screen_4.6.0-2_mips_24kc.ipk

Original commit by @nobk

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
2017-07-14 18:56:33 -07:00
Jo-Philipp Wich 576393b162 Merge pull request #4511 from wertarbyte/package_triggerhappy
triggerhappy: update to upstream version 0.5.0
2017-07-11 16:54:56 +02:00
Etienne Champetier 52402b9736 screen: update to 4.6.0
Signed-off-by: Etienne Champetier <echampetier@anevia.com>
2017-07-08 19:24:37 -07:00
Stefan Tomanek f09789b830 triggerhappy: update to upstream version 0.5.0
Signed-off-by: Stefan Tomanek <stefan.tomanek@wertarbyte.de>
2017-07-07 23:30:14 +02:00
Daniel Golle e90a9a6fc6 gawk: add GNU awk package
Coexists peacefully with busybox' awk.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-07-05 16:19:05 +02:00
Florian Fainelli 38eb3ad83a jq: Set -std=c99 CLFAGS
Fixes build errors/warnings:

locfile.c: In function 'locfile_init':
locfile.c:21:3: error: 'for' loop initial declarations are only allowed
in C99 mode
   for (int i=0; i<length; i++) {

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-07-02 20:51:17 -07:00
Hannu Nyman ac609195b3 Merge pull request #4533 from pprindeville/acpica-version-bump
acpica-unix: version bump and add parallel build
2017-07-02 21:55:54 +03:00
Philip Prindeville aa56086be1 acpica-unix: version bump and add parallel build
Also fix source URL.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2017-07-02 12:40:16 -06:00
Stijn Tintel ebc92cb98b domoticz: removed hardcoded userdata path
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2017-06-29 13:18:39 +02:00
Hannu Nyman dc015e5bb1 Merge pull request #4515 from pprindeville/rng-tools-fix-newlines
rng-tools: add upstreamed patch to fix newlines in syslog messages
2017-06-27 10:25:15 +03:00
Philip Prindeville 067e34985d rng-tools: add upstreamed patch to fix newlines in syslog messages
Don't embed newlines in syslog strings.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2017-06-27 00:55:24 -06:00
Philip Prindeville 1915b79ed8 acpica: initial commit
Add the UNIX-based ACPI utilities.  For now, only "acpidump" seems to
be useful on the target system.  The others would only be of interest
on the host system, and only then if one were developing BIOS.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2017-06-24 08:49:40 +08:00
Daniel Golle 93a16dabc4 Merge pull request #4430 from diizzyy/patch-58
utils/pcsc-tools: Add to repo
2017-06-23 17:02:07 +02:00
Daniel Engberg f2c5ffed1e utils/pcsc-tools: Add to repo
Add pcsc-tools to repo

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2017-06-20 09:44:18 +02:00
Daniel Golle 2510044bd6 eudev: remove package
It's pretty useless as udev cannot run in coexistence with procd.
It was added mostly to get packages compiled which depend on libudev,
knowing that the udev related functionality will be broken.
eudev has now been replaced by libudev-fbsd which does the job much
better and may serve as a drop-in replacement with even some working
features.
In future we may want our own libudev-procd library which can also be
a mostly-stub implementation but may query things from procd using
ubus in some situations...

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-06-19 20:49:40 +02:00
Daniel Golle 3d50afdf3c uvcdynctrl: get rid of udev
The udev rule installed was ineffective as udev cannot run in
coexistence with procd. If needed, it should be reimplemented as
rule under /etc/hotplug.d/

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-06-19 20:49:40 +02:00
Hannu Nyman 6a5e477c72 Merge pull request #4496 from aTanW/master
gammu: bump to a new upstream v1.38.4
2017-06-19 17:17:52 +03:00
Shuanglei Tao 708df9e778 ttyd: update to 1.3.3
Signed-off-by: Shuanglei Tao <tsl0922@gmail.com>
2017-06-19 21:42:41 +08:00
aTanW c6bdecf4db gammu: bump to a new upstream v1.38.4
Signed-off-by: Vitaly Protsko <villy@sft.ru>
---
 Makefile |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
2017-06-19 12:04:41 +03:00
Yousong Zhou 094cf18b3e coreutils: stdbuf: fix missing libstdbuf.so
Fixes #1674

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2017-06-19 12:03:23 +08:00
Daniel Golle c920902d14 mbtools: use https to clone and add PKG_MIRROR_HASH
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-06-19 01:33:32 +02:00
Daniel Golle fa1a510595 pcsc-lite: update to version 1.8.22
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-06-19 01:33:32 +02:00
Florian Fainelli 6950ee9669 openzwave: Avoid picking host libraries
cpp/examples/MinOZW/Makefile contains this rule:

LIBS =  $(wildcard $(LIBDIR)/*.so $(LIBDIR)/*.dylib $(top_builddir)/*.so
$(top_builddir)/*.dylib $(top_builddir)/cpp/build/*.so
$(top_builddir)/cpp/build/*.dylib )
LIBSDIR = $(abspath $(dir $(firstword $(LIBS))))

with LIBDIR not being defined anywhere we end up picking up host
libraries.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-06-18 14:23:40 -07:00
Daniel Golle 105cf35455 btrfs-progs: no longer maintained by me
Remove myself as maintainer.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-06-18 13:07:02 +02:00
Hannu Nyman b23a5435a6 Merge pull request #4429 from sdwalker/cleanup
packages: cleanup Makefile variables
2017-06-17 09:25:22 +03:00
Florian Fainelli fcd25932bf btrfs-progs: Fix build with external toolchains
TARGET_CPPFLAGS were not propagated correctly leading to these kinds of
build failure:

btrfstune.c:26:23: fatal error: uuid/uuid.h: No such file or directory
 #include <uuid/uuid.h>
                       ^
compilation terminated.
btrfs-find-root.c:24:18: fatal error: zlib.h: No such file or directory
 #include <zlib.h>
                  ^
compilation terminated.
mkfs/common.c:18:23: fatal error: uuid/uuid.h: No such file or directory
 #include <uuid/uuid.h>

Fix that by passing TARGET_CPPFLAGS via EXTRA_CFLAGS

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-06-16 20:47:03 -07:00
Florian Fainelli 319c3dc5ad stoken: Explicitly link with zlib
Fixes build issues with external toolchains:
/home/florian/dev/toolchains/stbgcc-4.8-1.5/bin/../lib/gcc/mipsel-linux-gnu/4.8.5/../../../../mipsel-linux-gnu/bin/ld:
warning: libz.so.1, needed by
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so,
not found (try using -rpath or -rpath-link)
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so:
undefined reference to `gzopen64'
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so:
undefined reference to `gzdirect'
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so:
undefined reference to `gzclose'
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so:
undefined reference to `gzwrite'
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so:
undefined reference to `gzdopen'
/home/florian/dev/openwrt/trunk/staging_dir/target-mipsel-unknown-linux-gnu_glibc/usr/lib/libxml2.so:
undefined reference to `gzread'
collect2: error: ld returned 1 exit status

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-06-16 20:47:03 -07:00
Jo-Philipp Wich 527753f0ce Merge pull request #4462 from ryzhovau/lcdproc_ldflags
lcdproc: respect LDFLAGS
2017-06-15 01:44:58 +02:00
Hannu Nyman afeb8d0caa collectd: update to 5.7.2
* update collectd to 5.7.2
* drop backported upstream patch that is now in release
* refresh patches

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-06-10 22:12:52 +03:00
Hannu Nyman 3b08b8a738 Merge pull request #4441 from Ansuel/bump-cryptodev
cryptodev-linux: bump to last commit
2017-06-08 21:48:49 +03:00
Alexander Ryzhov a3fd238aec lcdproc: respect LDFLAGS
Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
2017-06-08 10:57:46 +03:00
Hannu Nyman ca157e0325 Merge pull request #4446 from aTanW/master
gammu: bunp to a new v1.38.3
2017-06-06 18:48:19 +03:00
aTanW 6bb8c6bf0c gammu: bunp to a new v1.38.3
Signed-off-by: Vitaly Protsko <villy@sft.ru>
---
 Makefile |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
2017-06-06 17:50:20 +03:00
Hannu Nyman 1302413512 Merge pull request #4436 from hauke/attr
attr: add PKG_MIRROR_HASH
2017-06-06 09:56:35 +03:00
Hannu Nyman 4b0476b482 Merge pull request #4286 from hnyman/nano281
nano: update to 2.8.4
2017-06-06 09:51:53 +03:00
Florian Fainelli 482499b60b smartmontools: Fix build with CONFIG_USE_LIBSTDCXX
The Makefile would still force the use of and linking against uClibc++
even though libstdc++ may have been chosen, which would result in the
package depending on libstdcpp ($(CXX_DEPENDS) but we would still be
missing an libuClibc++ library depdency.

Fix this by looking at CONFIG_USE_UCLIBCXX to adjust the configure
script variables.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-06-05 18:16:41 -07:00
Florian Fainelli 3ffd13fbd2 pciutils: Fix build with external toolchains
Passing GNU_TARGET_NAME implies that we have a 4-group triplet (e.g:
arm-openwrt-unknown-linux), and this works fine with pciutils'
lib/configure operating system detection. If we have an external
toolchain (e.g: mipsel-linux-gnu), the configure script is all confused
and ends-up picking up i386-ports, which is not valid on the target
architecture.

Finally, we are not passing TARGET_CPPFLAGS as we should, so let's do
that correctly.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-06-05 17:18:51 -07:00
Florian Fainelli 43269ecf01 klish: Fix build errors with external toolchains
We would first not be able to properly detect libxml2 because it's not
automatically found, fix that by explicitly linking against it (and zlib
a dependency). Then if we don't don't define X_OPEN_SOURCE=500, we would
run into the following build error:

clish/shell/shell_execute.c: In function 'clish_shell_exec_action':
clish/shell/shell_execute.c:309:18: error: 'sigignore' undeclared (first
use in this function)
  sa.sa_handler = sigignore; /* Empty signal handler */
                  ^
clish/shell/shell_execute.c:309:18: note: each undeclared identifier is
reported only once for each function it appears in

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-06-05 17:18:51 -07:00
Florian Fainelli 5374d8635d squashfs-tools: Pass down TARGET_CFLAGS, CPPFLAGS and LDFLAGs
This fixes build errors with external toolchains that don't
automatically search for headers in STAGING_DIR:

mipsel-linux-gnu-gcc   -I. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
-D_GNU_SOURCE -DCOMP_DEFAULT=\"gzip\" -Wall -DGZIP_SUPPORT   -c -o
gzip_wrapper.o gzip_wrapper.c
gzip_wrapper.c:27:18: fatal error: zlib.h: No such file or directory
 #include <zlib.h>
                  ^
compilation terminated.
make[3]: *** [gzip_wrapper.o] Error 1

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-06-05 17:18:51 -07:00
Ansuel Smith 658c62a759
cryptodev-linux: bump to last commit
Fix:
This patch fixes a kernel crash observed with cipher-gcm test.

Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
2017-06-05 21:20:12 +02:00
Daniel Golle 794e917b1a cryptsetup: update to version 1.7.5
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-06-05 18:22:04 +02:00
Daniel Golle 8a33af3490 lvm2: update to version 2.02.168
Add HTTP mirror URL as well.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-06-05 18:22:04 +02:00
Daniel Golle 93ae6db928 Merge pull request #4385 from D-Albers/btrfs-progs-4.11
btrfs-progs: update to 4.11
2017-06-05 17:32:58 +02:00
Daniel Golle a84489134e Merge pull request #4417 from diizzyy/patch-51
utils/pcsc-lite: Update to 1.8.21
2017-06-05 17:05:50 +02:00
Daniel Golle af54e301a5 Merge pull request #4418 from diizzyy/patch-52
utils/ccid: Update to 1.4.27
2017-06-05 17:04:56 +02:00
Hauke Mehrtens 4d559d1d28 attr: add PKG_MIRROR_HASH
Use the LEDE mirror in case the git repository if unavailable like it
currently is.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
2017-06-05 16:24:15 +02:00
Luiz Angelo Daros de Luca a8a7a2329c Merge pull request #4412 from luizluca/sane-backends-1.0.27
sane-backends: bump to 1.0.27
2017-06-04 23:31:19 -03:00
Stephen Walker b63a809213 packages: cleanup Makefile variables
Standard assignment is immediate expansion without any extraneous spacing, RFC822 compliant email addresses and consistent section assignments

Signed-off-by: Stephen Walker <stephendwalker+github@gmail.com>
2017-06-03 16:38:06 -04:00
Daniel Engberg dacc820fe4 utils/tmux: Update to 2.5
Update tmux to 2.5
Drop patch
Update homepage URL
Use toolchain functionality for configuring and compiling

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2017-06-02 02:58:40 +02:00
Daniel Engberg 10b2b3e8d5 utils/f2fs-tools: Remove from tree
Already in LEDE tree so this is redundant.

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2017-06-01 22:30:30 +02:00
Daniel Engberg f6a0e1a09e utils/ccid: Update to 1.4.27
Update ccid to 1.4.27
Replace obsolete tarball hash variable with PKG_HASH

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2017-05-31 17:18:07 +02:00
Daniel Engberg 8a0bd8fcd9 utils/pcsc-lite: Update to 1.8.21
Update pcsc-lite to 1.8.21
Replace obsolete tarball hash variable with PKG_HASH

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2017-05-31 17:16:14 +02:00
Luiz Angelo Daros de Luca 275bc8edcf sane-backends: bump to 1.0.27
Fixes CVE-2017-6318

Patches where refreshed and the following removed:
- 020-fix_pieusb.patch: fixed upstream
- 030-musl.patch: accepted upstream

PS: there was no sane-backends 1.0.26

Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
2017-05-31 00:18:23 -03:00
Daniel Albers 2a4d52964f btrfs-progs: update to 4.11
Signed-off-by: Daniel Albers <Daniel.Albers@public-files.de>
2017-05-25 14:42:31 +02:00
Hannu Nyman c6242809a0 nano: update to 2.8.4
* update nano to 2.8.4
* remove deprecated glibtest configure argument
* fix whitespace in configure arguments

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-05-24 10:03:36 +03:00
Hannu Nyman cba38f04e5 Merge pull request #4320 from TouchStar/gpsd-fix-darwinbuild
utils/gpsd: Set manbuild=no for build (disable building help/html docs)
2017-05-24 09:23:19 +03:00
Marko Ratkaj 6868aabccf jq: import improvements from debian
Mitigate stack exhaustion when printing a very deeply nested term.
Fix heap buffer overflow in tokenadd()

Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2017-05-17 15:01:51 +02:00
Marko Ratkaj 50716550be jq: fix MIPS compile flags
There is a gcc related bug that causes the following issue on MIPS:
Assertion failed: jv_get_kind(a) == JV_KIND_STRING (jv.c: jvp_string_ptr: 435)

This patch will disable SRA optimizations on MIPS platform and prevent
the above issue.

Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2017-05-17 15:01:51 +02:00
Luka Perkov 0ecc08784c Merge pull request #4240 from sartura/jq_add_package
jq: add package
2017-05-12 10:56:38 +02:00
Christian Simon d27d9e566a prometheus-node-exporter-lua: adds node metrics exporter
Signed-off-by: Christian Simon <simon@swine.de>
2017-05-08 14:27:43 +01:00
David Thornley 21ee053468 utils/gpsd: Set manbuild=no for build (disable building help/html documentation)
This removes unnecessary dependancy on xmlto which can be problematic on macOS build environment.

Signed-off-by: David Thornley <david.thornley@touchstargroup.com>
2017-05-02 10:38:31 +10:00
Ted Hess 092b4d0ae8 ntfs-3g: Update to 2017.3.23 version, provide single utilites package, refresh patches
Changes to NTFS-3G:

    Delegated processing of special reparse points to external plugins
    Allowed kernel cacheing by lowntfs-3g when not using Posix ACLs
    Enabled fallback to read-only mount when the volume is hibernated
    Made a full check for whether an extended attribute is allowed
    Moved secaudit and usermap to ntfsprogs (now ntfssecaudit and ntfsusermap)
    Enabled encoding broken UTF-16 into broken UTF-8
    Autoconfigured selecting <sys/sysmacros.h> vs <sys/mkdev>
    Allowed using the full library API on systems without extended attributes support
    Fixed DISABLE_PLUGINS as the condition for not using plugins
    Corrected validation of multi sector transfer protected records
    Denied creating/removing files from $Extend
    Returned the size of locale encoded target as the size of symlinks

    http://www.tuxera.com/community/release-history/

    Signed-off-by: BangLang Huang <banglang.huang@foxmail.com>

    Make ntfs-3g-utils into a single package due to upstream package changes.

    Signed-off-by: Ted Hess <thess@kitschensync.net>
2017-04-30 12:24:29 -04:00
Hannu Nyman b3ed64c441 collectd: build cpufreq also for armvirt target
Enable collectd-mod-cpufreq also for armvirt to make it
available for ipq806x devices in LEDE buildbot snapshots.

LEDE phase2 buildbot for arm_cortex-a15_neon-vfpv4 that is
the package arch for ipq806x, uses armvirt SDK instead of
ipq806x SDK.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-04-28 19:07:27 +03:00
Hannu Nyman a1a96fc9fa irqbalance: add PKG_MIRROR_HASH
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-04-27 23:52:14 +03:00
Hannu Nyman 8c9b2a24cb cmdpad, pcsc-lite, slide-switch, stoken: shorten title
Longest package titles are not shown in the menuconfig,
which decreases manuconfig usability.

Shorten some of the longest titles.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-04-27 20:04:51 +03:00
Hannu Nyman 11a755b323 ccrypt: shorten title, use PKG_HASH
* Shorten the package title to improve menuconfig usability
* Use PKG_HASH

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-04-27 19:51:21 +03:00
Ansuel Smith d1772503f9
cryptodev-linux: bump to 4.9
Cosmetic update just to remove git date

Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
2017-04-24 23:49:51 +02:00
Hannu Nyman b7ae80dc69 collectd: upstream fix for vulnerability in network plugin
Import an upstream fix for a DDoS vulnerability in the
network plugin: CVE-2017-7401

Refresh patches.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-04-20 18:52:08 +03:00
Matthew McClintock a6357ba2f5 hfsprogs: fix when not linking aginst glibc
Only link with libbsd when we are using GLIBC

Signed-off-by: Matthew McClintock <msm-oss@mcclintock.net>
2017-04-18 12:37:00 -05:00
Hannu Nyman f377a4a9b4 Merge pull request #4262 from tsl0922/ttyd-1.3.2
ttyd: update to 1.3.2
2017-04-17 20:33:09 +03:00
Shuanglei Tao 227debdff8 ttyd: update to 1.3.2
Signed-off-by: Shuanglei Tao <tsl0922@gmail.com>
2017-04-16 09:49:00 +08:00
Philip Prindeville e568219980 lcdproc: simplify dropping --disable-nls fron CONFIGURE_ARGS
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2017-04-14 14:39:48 -06:00
Daniel Golle 0dbb306e47 Merge pull request #4177 from pprindeville/shadow-add-applets
shadow: add chpasswd, et al to list of applets
2017-04-14 14:53:29 +02:00
Philip Prindeville 86985f49bb lcdproc: alternative package to drive LCD displays
As lcd4linux is all kinds of BROKEN lately, and of unknown status.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Reviewed-by: Harald Geyer <harald@ccbib.org>
2017-04-13 20:04:53 -06:00
Philip Prindeville 33db14be2b shadow: add chpasswd, et al to list of applets
If you have a firstboot script which seeds a passwd based on
run-time information (like MAC addresses, hostname, etc) then
you need to be able to pass in a cleartext string via chpasswd.

Other applets are similarly potentially useful in other corner
cases.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2017-04-13 18:01:48 -06:00
Florian Fainelli 31f77baa3a ap51-flash: Define IPPORT_TFTP where it is used
Defining IPPORT_TFTP on the pre-processor command line leads to the
following error for glibc-based toolchains:

mipsel-linux-gnu-gcc -Os -pipe -mno-branch-likely -mips32r2 -mtune=24kc
-fno-caller-saves -mips16 -minterlink-mips16
-I/local/users/fainelli/openwrt/trunk/staging_dir/target-mipsel-linux-gnu_glibc/usr/include
-I/local/users/fainelli/openwrt/trunk/staging_dir/target-mipsel-linux-gnu_glibc/include
-I/opt/toolchains/stbgcc-4.8-1.5/usr/include
-I/opt/toolchains/stbgcc-4.8-1.5/include  -Wall -Werror -W -g3
-std=gnu99 -Os -fno-strict-aliasing -DLINUX
-DREVISION_VERSION=\"2016-10-16\" -DFLASH_FROM_FILE -DNO_LIBPCAP
-D_GNU_SOURCE -UIPPORT_TFTP -DIPPORT_TFTP=69 -MD -c flash.c -o flash.o
<command-line>:0:13: error: expected identifier before numeric constant

Instead, move this where this gets used, in proto.c

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-04-12 18:03:54 -07:00
Marko Ratkaj a576b3aad8 jq: add package
jq is a lightweight and flexible command-line JSON processor.

Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2017-04-07 18:40:10 +02:00
Florian Fainelli 94478ebff8 hfsprogs: Fix build failures with external toolchains
Several problems were found with building against an external toolchain:

* TARGET_CPPFLAGS was missing which would prevent finding the headers
* TARGET_LDFLAGS also was not passed correctly
* when building against glibc, since we use strlcpy() we need to link
  against libbsd

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-04-02 20:00:33 -07:00
Florian Fainelli 6ecc58abce unrar: Properly pass LDFLAGS
External toolchains don't automatically have STAGING_DIR in their
default search path, so make sure we pass TARGET_LDFLAGS down. Since the
unrar makefile does not allow overriding, we also need to preserve the
original LDFLAGS which include lpthread.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-04-02 11:32:19 -07:00
Florian Fainelli 16750dd412 mpack: Fix conflicting malloc definition
Use stdlib.h for malloc(), getenv() and realloc(). Fixes the following
build failure:

unixos.c:42:14: error: conflicting types for 'malloc'
 extern char *malloc();
              ^
Makefile:168: recipe for target 'unixos.o' failed
make[3]: *** [unixos.o] Error 1

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-04-01 18:04:47 -07:00
Hannu Nyman b505c3e671 Merge pull request #4222 from nikil/moreutils
moreutils: Fix build failure due to install stripping
2017-04-02 03:34:39 +03:00
Nikil Mehta f1ec183605 moreutils: Fix build failure due to install stripping
Signed-off-by: Nikil Mehta nikil.mehta@gmail.com
2017-04-01 13:05:59 -07:00
Michael Heimpold 77dd883e3e mmc-utils: rely on common variables
Instead of assigning various variables ourself, rely on the common logic
provided by "packaging framework". This brings this package in sync with
other ones which also use git repos as source, dates and commit ids as
version etc. This results also in using xz for tarballs. While at,
populate the PKG_MIRROR_HASH.

Thanks @diizzyy for suggesting these improvements.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2017-03-29 22:52:54 +02:00
Michael Heimpold f8be06e956 mmc-utils: upgrade to latest revision
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2017-03-27 21:44:48 +02:00
Vladimir Ulrich 770959760d [utils/zoneinfo] Updated to the latest release
Signed-off-by: Vladimir Ulrich <admin@evl.su>
2017-03-24 01:02:37 +03:00
Hannu Nyman 7a7887f7ee Merge pull request #4176 from yegorich/canutils
canutils: bump version to cb33a55720716cbe01e6025a2bda74a1b7e492d3
2017-03-23 21:54:58 +02:00
Yegor Yefremov a4194df8b7 canutils: bump version to cb33a55720716cbe01e6025a2bda74a1b7e492d3
Rework package recipe:

- use PKG_SOURCE_DATE
- use xz compression
- add hash
- get rid of PKG_SOURCE_SUBDIR/PKG_BUILD_DIR

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
2017-03-22 13:00:02 +01:00
Álvaro Fernández Rojas 33096be8f3 Merge pull request #4147 from diizzyy/patch-35
utils/dosfstools: Update to 4.1
2017-03-21 08:16:48 +01:00
Stijn Tintel 71ca24ccb9 Merge pull request #3566 from nikil/moreutils
moreutils: Add package
2017-03-19 15:09:18 +01:00
Ansuel Smith 0d611a5884
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
2017-03-19 12:06:28 +01:00
Nikil Mehta c4a7b1466a moreutils: Add package
Signed-off-by: Nikil Mehta <nikil.mehta@gmail.com>
2017-03-18 23:56:56 -07:00
Bruno Randolf 9f2af0d829 dfu-util: Add package
Signed-off-by: Bruno Randolf <br1@einfach.org>
2017-03-17 16:52:32 +00:00
Hannu Nyman d7b68f4850 Merge pull request #4132 from yegorich/canutils
canutils: rework recipe
2017-03-15 18:38:08 +02:00
Hannu Nyman eed9884b74 Merge pull request #4104 from p-wassi/gpsd_typo
utils/gpsd: fix init script
2017-03-14 19:26:05 +02:00
Daniel Engberg 4ce01ab24c utils/dosfstools: Update to 4.1
Update to 4.1
Remove 0001-mkfs-Default-to-64-32-heads-sectors-for-targets-smal.patch
as it's included in upstream repo.
Refresh patch

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2017-03-14 08:26:57 +01:00
Yegor Yefremov 18b67b92b9 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>
2017-03-13 08:59:34 +01:00
Shuanglei Tao ae9281a441 ttyd: update to 1.3.1
Signed-off-by: Shuanglei Tao <tsl0922@gmail.com>
2017-03-11 10:25:13 +08:00
Hannu Nyman 55d06be722 Merge pull request #4125 from dvlemplgk/open-plc-utils
open-plc-utils: fix menuconfig entries
2017-03-10 10:25:26 +02:00
Hannu Nyman e68843c29d Merge pull request #4115 from dibdot/mc
mc (midnight commander): release 4.8.19
2017-03-08 23:06:09 +02:00
Stijn Tintel f82287cf5c treewide: use name in define and eval lines
For consistency, use full name instead of $(PKG_NAME) in define and eval
lines for all packages.

I've seen reviews that asked to do this before, and I am asking the same
during reviews now. To avoid this in the future, fix this treewide so
when people use existing packages as example, we will not have to
request this change anymore.

This makes all packages consistent with both LEDE and OpenWrt base
repositories.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2017-03-08 21:15:20 +01:00
Günther Kelleter eb22de1fe2 open-plc-utils: fix menuconfig entries
Fix TITLE and description to contain the actual tool name.

Signed-off-by: Günther Kelleter <guenther.kelleter@devolo.de>
2017-03-08 17:21:15 +01:00
Dirk Brenken f0bbe0e48b mc (midnight commander): release 4.8.19
* release notes: https://midnight-commander.org/wiki/NEWS-4.8.19
* refreshed subshell patch
* switched to PKG_HASH

Signed-off-by: Dirk Brenken <dev@brenken.org>
2017-03-06 18:40:16 +01:00
Etienne CHAMPETIER 1165a397ba screen: update to 4.5.1, use PKG_HASH
Signed-off-by: Etienne CHAMPETIER <champetier.etienne@gmail.com>
2017-03-04 09:32:28 -08:00
p-wassi 4a752d7f6f utils/gpsd: fix init script
Add missing character in init script to match config file

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
2017-03-04 12:06:22 +01:00
Stijn Tintel 042933714a domoticz: new package
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2017-03-03 01:56:21 +01:00
Stijn Tintel 14f01cb946 openzwave: new package
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2017-03-03 01:56:21 +01:00
Vladimir Ulrich ad27edd5e3 [utils/zoneinfo] Updated to the latest release
Signed-off-by: Vladimir Ulrich <admin@evl.su>
2017-03-02 18:32:23 +03:00
Hannu Nyman f213e6dd2d collectd: disable plugin for the depracated madwifi driver
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-03-01 09:54:23 +02:00
Hannu Nyman 38f2ed0c45 Merge pull request #4063 from mlichvar/collectd-newplugins
collectd: package chrony and match plugins
2017-02-28 10:32:41 +02:00
Hannu Nyman ac954daeef Merge pull request #4069 from alive4ever/mksh-54
utils/mksh: update to r54
2017-02-26 20:02:05 +02:00
Daniel Albers 249ae1f164 nano: Update to version 2.7.5
Description: fixes a crash with zero-length regex matches and further updates


Signed-off-by: Daniel Albers <Daniel.Albers@public-files.de>
2017-02-25 17:34:12 +01:00
Alif M. Ahmad 30d6c47bc7 utils/mksh: update to r54
Update to current latest upstream: r54.
Also add a new download mirror to fetch the source.

Signed-off-by: Alif M. Ahmad <alive4ever@live.com>
2017-02-24 23:01:09 +07:00
Miroslav Lichvar e4bf8b7c32 collectd: package chrony and match plugins
Signed-off-by: Miroslav Lichvar <mlichvar0@gmail.com>
2017-02-23 10:53:14 +01:00
Nikos Mavrogiannopoulos b31369134a Merge pull request #4037 from Ansuel/bump-cryptodev
Cryptodev-linux: bump to last commit
2017-02-22 21:49:33 +01:00
Hannu Nyman 3b821bb5e7 Merge pull request #3945 from InBetweenNames/update-vim
vim: Update Vim to 8.0.069
2017-02-21 20:43:38 +02:00
Ansuel Smith 49f3520e4e
Cryptodev-linux: bump to last commit
Fixing of varius error

Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
2017-02-20 18:26:23 +01:00
danrl e63da7d972 utils/luci-app-lxc: removed application
Moved over to the LuCI repository.

Signed-off-by: Dan Luedtke <mail@danrl.com>
2017-02-17 11:06:06 +01:00
Shuanglei Tao 59fe221d73 ttyd: update to 1.3.0
Signed-off-by: Shuanglei Tao <tsl0922@gmail.com>
2017-02-14 20:23:40 +08:00
Florian Fainelli c7197cc35c Merge pull request #3896 from usr-sse2/patch-1
hfsprogs: Fix building on macOS
2017-02-13 09:38:49 -08:00
Hannu Nyman f46b665521 Merge pull request #3891 from tmn505/pcmciautils
pcmciautils: import from oldpackages
2017-02-10 18:11:13 +02:00
Hannu Nyman f924adb018 Merge pull request #3908 from paulfertser/openocd-0.10.0
openocd: bump version to 0.10.0
2017-02-10 18:08:40 +02:00
Hannu Nyman c42ecd05a1 irqbalance: avoid external glib2
Revert an upstream commit to enable compiling without external glib2.

Edit the 'disable UI compilation' patch to match the original
upstream commit more closely.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-02-08 11:12:39 +02:00
Hannu Nyman c5913bd12d irqbalance: add package
The purpose of irqbalance is to distribute hardware interrupts across
processors/cores on a multiprocessor/-core system in order to increase
performance.

This initial implementation of the package uses external glib2,
which is a large dependency.
Only the cmd-line tool is compiled and installed.

Run-tested with ipq806x / R7800.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-02-08 00:26:58 +02:00
Hannu Nyman ca4706eedc collectd: disable libyajl detection
Disable also detection for libyajl that buildbot picked up.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-02-06 19:20:15 +02:00
Hannu Nyman d1441d0424 collectd: avoid libcap dependency
Buildbot revealed that Collectd 5.7.1 uses libcap to evaluate system
capabilities and display advice on some plugins (dns, iptables, exec,
ping, ceph, turbostat).

Disable the check in configure.ac in order to avoid a dependency
for libcap. (It is not that big, only 6 kB .ipk, but still avoid that.)

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-02-06 16:40:43 +02:00
Hannu Nyman 616520a76e collectd: remove encryption feature from network plugin
Remove the encryption functionality from the network plugin.
It is a non-core functionality and causes a need for additional
dependency on the main program when enabled in 5.7.1.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-02-06 11:32:38 +02:00
Hannu Nyman a3b019fce5 collectd: fix 5.7.1 compilation with encrypted network
The encrypted network feature seems to have changed between 5.5.3 and 5.7.1.
Adjust Makefile to enable compilation with that feature.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-02-06 11:32:38 +02:00
Hannu Nyman 2fc5a82b48 collectd: update to 5.7.1
Update collectd to version 5.7.1

* replace 003-remove-werror.patch with configure option
* remove 200-fix-git-describe-error.patch that is now unnecessary
* reformat other patches due to whitespace changes
* add new plugins to the list as disabled

* correct download & homepage links
* add myself as the second maintainer

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-02-06 11:32:38 +02:00
Hannu Nyman ea028cc944 Merge pull request #3960 from hbl0307106015/add-tree
packages: add tree new package
2017-02-05 15:47:06 +02:00
Banglang Huang b6ff884d45 tree: add new package
Tree is a recursive directory listing command that produces a depth indented listing of files,
which is colorized ala dircolors if the LS_COLORS environment variable is set and output is to tty.

Tree has been ported and reported to work under the following operating systems:
Linux, FreeBSD, OS X, Solaris, HP/UX, Cygwin, HP Nonstop and OS/2.

root@lede:/# tree -L 1
.
├── bin
├── dev
├── etc
├── lib
├── mnt
├── overlay
├── proc
├── rom
├── root
├── sbin
├── sys
├── tmp
├── usr
├── var -> /tmp
└── www

15 directories, 0 files

http://mama.indstate.edu/users/ice/tree/

Signed-off-by: BangLang Huang <banglang.huang@foxmail.com>
2017-02-05 21:36:50 +08:00
Hannu Nyman 7b807a3d5b Merge pull request #3823 from cshore-firmware/pull-request-nut
A number of fixes and enhancements to NUT
2017-02-04 11:08:13 +02:00
Philip Prindeville 901ef617c7 rng-tools: start rngd early enough to actually be useful
lighttpd starts at priority 50, but promptly calls getrandom() on
initialization (li_rand_reseed() and li_rand_device_bytes() from
server_init()). If /dev/urandom (which getrandom() uses by default)
doesn't have sufficient entropy, this will block.

Since Openwrt runs the startup scripts serially, this can block
initialization indefinitely.  I've seen 15-20 minutes typically.

Seeding the pool early on can quickly built sufficient entropy to
complete booting without blocking.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2017-02-02 22:52:50 -07:00
Shane Peelar a5218a505c vim: Add "fuller" package
The fuller package is built with --with-features=big and contains
the files that would normally live in /usr/share/vim/, including
syntax highlighting and colours.  This package supports truecolor
support in terminals.

Signed-off-by: Shane Peelar <lookatyouhacker@gmail.com>
2017-02-02 14:38:51 -05:00
Shane Peelar 33b52a63e9 vim: Update Vim to 8.0.069
Vim stable is at version 8 now

Signed-off-by: Shane Peelar <lookatyouhacker@gmail.com>
2017-02-02 09:35:59 -05:00
Michael Belyaev 0872354367 hfsprogs: fix building on macOS
Signed-off-by: Michael Belyaev <usrsse2@icloud.com>
2017-01-31 19:29:58 +03:00
aTanW 7a5f97e7e8 joe: bump to new upstream v4.4
Signed-off-by: Vitaly Protsko <villy@sft.ru>
---
 Makefile |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
2017-01-31 10:29:28 +03:00
aTanW 56e15d34e6 gammu: bump to new upstream 1.38.1
Signed-off-by: Vitaly Protsko <villy@sft.ru>
---
 Makefile |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
2017-01-28 09:58:43 +03:00
Paul Fertser 1d58e2797d openocd: bump version to 0.10.0
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2017-01-24 17:05:05 +03:00
Álvaro Fernández Rojas b1f3d7e7b2 unzip: patch CVE-2014-9913 and CVE-2016-9844 vulnerabilities
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2017-01-23 17:53:03 +01:00
Pushpal Sidhu 56870f42ec utils/gpsd: refresh 0002-ncurses6_detection to 3.16
Signed-off-by: Pushpal Sidhu <psidhu.devel@gmail.com>
2017-01-22 23:07:33 -08:00
Hannu Nyman 9efeb29155 Merge pull request #3888 from RussellSenior/fix-gpsd-ncurses-detection
gpsd: add ncurses6 support
2017-01-23 08:45:39 +02:00
Hannu Nyman d37694d7a5 Merge pull request #3630 from p-wassi/gpsd
utils/gpsd: update, procd, cosmetic, dependencies
2017-01-23 08:45:15 +02:00
Hannu Nyman bb5aefd116 Merge pull request #3574 from nikil/progress
progress: Add package
2017-01-22 08:53:51 +02:00
Tomasz Maciej Nowak d901cea1d5 pcmciautils: import from oldpackages
-import from oldpackages
 -add PKG_LICENSE, PKG_LICENSE_FILES, PKG_MAINTAINER
 -add two build fix patches

Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
2017-01-21 16:37:41 +01:00
p-wassi 89036708b5 utils/gpsd: move package to 'Utilities'
Move package 'gpsd' and 'gpsd-clients' to menuconfig's 'Utilities'

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
2017-01-21 10:07:22 +01:00
p-wassi be6f00b269 utils/gpsd: fix dependencies
Remove unneccessary dependencies in gpsd/gpsd-clients/libgps.

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
2017-01-21 10:07:22 +01:00
p-wassi 933d93c68a utils/gpsd: switch to procd
Rewrite init script for procd support

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
2017-01-21 10:07:16 +01:00
Russell Senior 418d5390b9 gpsd: add ncurses6 support
Signed-off-by: Russell Senior <russell@personaltelco.net>
2017-01-20 10:16:32 -08:00
Toke Høiland-Jørgensen 75dfd85619 flent-tools: Bump version 2017-01-19 11:08:17 +01:00
Jo-Philipp Wich d548d6bf1f coreutils: add libcap dependency to selected applets
If libcap happens to be present in the environment, coreutils will pick it up
and link some applets against it.

Since the idea of coreutils is to provide a full featured alternative to the
busybox applets, do not inhibit the optional dependency but explicitely
require libcap instead.

Fixes the following error spotted on the buildbots:

    Package coreutils-dir is missing dependencies for the following libraries:
    libcap.so.2

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2017-01-18 12:10:44 +01:00
Ted Hess 94a8fef222 Merge pull request #3833 from riptidewave93/patch-1
util/beep: Add beep package
2017-01-17 12:21:42 -05:00
Chris Blake 99605fb630 Update Makefile 2017-01-16 03:10:38 -06:00
Jonathan Bennett f167378f3d nano: Update to version 2.7.4
Signed-off-by: Jonathan Bennett <JBennett@incomsystems.biz>
2017-01-15 14:45:38 -06:00
Michael Heimpold cf56d18f80 open-plc-utils: update to commit 18b7e2a9a17f043fe8ac8b457680aafb1c249c55
This contains a fix for big endian systems.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2017-01-15 19:03:04 +01:00
Chris Blake 2568b67875 util/beep: Add beep package
This adds the beep utility, which allows users to control a pc speaker device.

Maintainer: me / @riptidewave93
Compile tested: x86/64, LEDE Reboot SNAPSHOT r2709-b7677f0 
Run tested: x86/64, LEDE Reboot SNAPSHOT r2709-b7677f0. Verify program works.
Signed-off-by: Chris Blake <chrisrblake93@gmail.com>
2017-01-13 11:32:30 -06:00
Daniel Dickinson ae9d95d9ec utils/gnupg: Bump version; use both PKG_HASH (sha256) and PKG_MD5SUM (md5sum)
Bump the version of gnupg and use new PKG_HASH for
sha256sum and PKG_MD5SUM for md5sum (for backwards
compatibility).

Signed-off-by: Daniel Dickinson <lede@cshore.thecshore.com>
2017-01-12 15:04:19 +08:00
Daniel Dickinson cac89a3c60 utils/gnupg: Add myself as maintainer
@Nico seems MIA; @hnyman asked if I'd be interested
in taking over.  I'm willing so adding myself.

Signed-off-by: Daniel Dickinson <lede@cshore.thecshore.com>
2017-01-12 15:04:19 +08:00
Daniel Dickinson 933e84cc7f utils/gnupg: Add build of gpgv
gpgv is a stripped down gnupg useful for only verifying signatures.
Having this package can save space when all you need is signature
verification.

Signed-off-by: Daniel Dickinson <lede@cshore.thecshore.com>
2017-01-12 15:04:19 +08:00
Daniel Dickinson a23c4e85c5 net/nut: Build optional separate packages and ucify
With a LuCI app (of which I have one written) ucification makes
sense (and is in fact needed), so ucify the initscripts.

Also, rather than making selection of things to include an image
a matter of selecting compile-time config options, make optional
things into seperate packages that are built in default builds,
and leave selection of what to include or not up to the user
(e.g. using ImageBuilder, or adding packages via opkg).

Signed-off-by: Daniel Dickinson <lede@cshore.thecshore.com>
2017-01-11 18:53:58 -05:00
Michael Heimpold a0d4b804b1 open-plc-utils: update to commit 6a07d621583cb86ddf2fddcacb41cc4cf28bf33a
This fixes an alignment issue on some platforms, which renders
some tools, e.g. plcID, unusable.

While at, switch to xz compression for the tarball, drop an already
mainlined patch and remove a meanswhile absolete compiler switch.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2017-01-11 22:25:59 +01:00
Matthias Schiffer 3823ef9bc4 Merge pull request #3813 from NeoRaider/hostpkg
Use STAGING_DIR_HOSTPKG where appropriate
2017-01-11 21:54:09 +01:00
Daniel Golle 410ce3d4f5 ccid: update to version 1.4.26
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-01-11 02:09:20 +01:00
Daniel Golle 8d44169aa1 pcsc-lite: update to version 1.8.20
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-01-11 02:09:20 +01:00
Hannu Nyman 758184a3ee Merge pull request #3738 from diizzyy/patch-5
utils/xz: Update to 5.2.3 and update URLs
2017-01-10 21:06:31 +02:00
Daniel Engberg 8f1de0f400 utils/xz: Update to 5.2.3 and update URLs
Update to 5.2.3 and sync URLs with LEDE

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2017-01-10 20:02:26 +01:00
Matthias Schiffer 4a984a8d60
treewide: replace $(STAGING_DIR)/host and $(HOST_BUILD_PREFIX) with $(STAGING_DIR_HOSTPKG)
As both LEDE and OpenWrt have STAGING_DIR_HOSTPKG now, we can start to rely
on it. See 73b7f55424 for more information on
STAGING_DIR_HOSTPKG.

STAGING_DIR_HOSTPKG won't actually be changed before the first LEDE release
(it is equivalent to $(STAGING_DIR)/host), so this simple search/replace
cleanup is safe to apply. Doing this cleanup now will be useful for the
Gluon project (an OpenWrt/LEDE based firmware framework) for experimenting
with modifying STAGING_DIR_HOSTPKG before doing this in the LEDE upstream.

Also fixes a typo in the dbus Makefile ("STAGIND_DIR").

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2017-01-10 18:25:54 +01:00
Jo-Philipp Wich cb1e8c2dd5 Merge pull request #3625 from p-wassi/grep_226
utils/grep: update to 2.26
2017-01-06 17:03:28 +01:00
Daniel Engberg 63571b38d9 utils/haveged: Add SF as primary download site
Add Sourceforge as primary download site and main site as secondary.
Drop fedoraproject.org repo

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2017-01-06 00:43:10 +01:00
Hannu Nyman 3195925ccb haveged: change hash to SHA256
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-01-05 23:55:52 +02:00
Hannu Nyman 8b8b93ad6c ccrypt: change hash to SHA256
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-01-05 23:22:51 +02:00
Daniel Engberg 7daf631911 utils/tmux: Update to 2.3
Update tmux to 2.3

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2017-01-04 00:56:13 +01:00
Jean-Michel Lacroix 5c9665a070 bandwidthd: update to 2.0.1-34, sqlite support and SMTP tracking
Addition of sqlite storage
Tracking of SMTP traffic instead of P2P traffic
Based on NethServer bandwidthd implementation

Signed-off-by: Jean-Michel lacroix <lacroix@lepine-lacroix.info>
2017-01-01 12:44:56 -05:00
Hannu Nyman af52f49858 Merge pull request #3689 from hnyman/c553
collectd: update to 5.5.3
2016-12-28 23:51:45 +02:00
Álvaro Fernández Rojas ea2115ae01 dump1090: update to latest version
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2016-12-27 19:53:00 +01:00
Daniel Dickinson d811a84077 utils/tar: Fix tar build dependency and CVE-2016-6321
Should be PKG_BUILD_DEPENDS not BUILD_DEPENDS

Signed-off-by: Daniel Dickinson <lede@daniel.thecshore.com>
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2016-12-27 19:52:56 +01:00
Álvaro Fernández Rojas 6efdda825b Merge pull request #3535 from p-wassi/utils_zip_LFS
utils/zip: fix LARGE_FILE_SUPPORT in configure script
2016-12-27 18:21:49 +01:00
Hannu Nyman ea44014936 collectd: update to 5.5.3
Update collectd to 5.5.3

Release notes at https://github.com/collectd/collectd/releases/tag/collectd-5.5.3

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2016-12-22 17:25:05 +02:00
Hannu Nyman f849713743 nano: update to 2.7.2
Update nano to version 2.7.2

Compile and run tested on ipq806x.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2016-12-22 12:38:17 +02:00
Jo-Philipp Wich 98e3fbff59 Merge pull request #3605 from bittorf/mysqld-allow_spaces_in_config
mysql-server: initscript: allow spaces in 'mysql-config' datadir
2016-12-20 16:20:26 +01:00
Hauke Mehrtens 5f54e6c61e io: add io-tool
This add the io tool from the old package feed.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
2016-12-17 15:20:05 +01:00
Dominik Menke 8d441a568c ecdsautils/libecdsautil: add 0.3.2.20160630
These changes are a direct copy of [1]. The original commit
messages were:

> commit 0a6411b56b9edeba1809ffe45c03dbb7261bf45c
> Author: Matthias Schiffer <mschiffer@universe-factory.net>
> Date:   Sun May 8 11:39:22 2016 +0200
>
> ecdsautils: update to current git, add libecdsautil
>
> The addition of libecdsautil required us to switch from statically
> linked libuecc to a shared library (as we also want shared
> libecdsautil).

> commit 05bc59f3196b1dc05afe845e1df0073e40f0757d
> Author: Nils Schneider <nils@nilsschneider.net>
> Date:   Mon Jul 21 14:51:42 2014 +0200
>
> ecdsautils: update to v0.3.2

> commit db7d9410b3e21f5770f28a3c537ba6a681c24e62
> Author: Nils Schneider <nils@nilsschneider.net>
> Date:   Thu Jul 10 16:28:10 2014 +0200
>
> ecdsautils: download using git instead of http

> commit 3a1b6541b43d4801608c391d64582af41e7a155a
> Author: Nils Schneider <nils.schneider@gmail.com>
> Date:   Wed Feb 6 13:30:26 2013 +0100
>
> Add ecdsautils v0.2

[1]: 0a6411b56b/utils/ecdsautils/Makefile

Signed-off-by: Dominik Menke <dom@digineo.de>
2016-12-14 10:48:32 +01:00
Yousong Zhou 7b812e8fdd qemu: build sub-packages only for selected targets
While at it, move these pacakges to submenu Utilities -> Virtualization

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2016-12-13 21:15:33 -06:00
Yousong Zhou 3aa9ece43c qemu: virtio-console-helper as a separate package
While at it, update copyright header.

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2016-12-11 21:32:22 -06:00
Yousong Zhou c778ff5714 qemu: packaging target {x86_64,arm}-softmmu and friends
At the moment, only build these softmmu emulators for x86_64 and sunxi
target.  The decision was made for the following reasons

 - It seems that interests of virtualization with qemu are mostly from
   x86, and ARM recently.
 - x86, sunxi boards/boxes capable of running qemu with accel=kvm are more
   widely available
 - Not all host, target combinations of qemu works, or even compiles
 - Extra maintenance work and server resources

Test results are as the following

 - Nested vmx works: lede-qemu-x86_64-kvm on lede-qemu-x86_64-kvm
 - KVM on Cubieboard2 works
 - tcg with malta works: lede-qemu-malta-tcg on lede-qemu-malta-tcg.
   But it's too slow to be useful thus not included in this version
 - mips64 host does not compile

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2016-12-11 21:32:22 -06:00
Yousong Zhou 83f0cfb71a qemu: bump to version 2.6.2
- use CXX_DEPENDS instead of explictly requiring libstdcpp
 - use PKG_INSTALL_DIR for packaging qemu-ga
 - explicitly --disable-docs

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2016-12-11 21:32:22 -06:00
p-wassi 6aaca067d2 utils/gpsd: remove hotplug script
Remove a hotplug script, which starts/stops gpsd with
attaching/detaching a PL2302 USB-UART device.

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
2016-12-07 22:00:50 +01:00
p-wassi 5099e731b3 utils/gpsd: (cosmetic) update config
Make the default config look like usual,
i.e.: indentation using tabs, single quotes, booleans 0/1

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
2016-12-07 21:58:05 +01:00
p-wassi b06eac5382 utils/gpsd: Update to 3.16
Update gpsd to upstream release 3.16
The local patch is already included upstream, therefore
removed here.

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
2016-12-07 21:52:58 +01:00
Nikil Mehta 98791614b8 progress: Add package
Signed-off-by: Nikil Mehta nikil.mehta@gmail.com
2016-12-05 23:25:36 -08:00
p-wassi 024aec7a7e utils/grep: update to 2.26
Update grep to upstream release 2.26

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
2016-12-05 20:55:52 +01:00
p-wassi 1fc42dbf58 utils/avrdude: update to 6.3
Update avrdude to upstream release 6.3

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
2016-12-05 08:15:44 +01:00
Bastian Bittorf 20c881a072 mysql-server: initscript: allow spaces in 'mysql-config' datadir
also convert script to OpenWrt-style and use
logger instead of echo out to STDERR.

Signed-off-by: Bastian Bittorf <bb@npl.de>
2016-12-01 20:48:08 +01:00
Nuno Goncalves cc5a56540a tcsh: bump to version 6.20
Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
2016-11-28 09:41:28 +01:00
Shuanglei Tao f1d2b004a5 ttyd: update to 1.2.1
Signed-off-by: Shuanglei Tao <tsl0922@gmail.com>
2016-11-27 21:06:48 +08:00
Luka Perkov e585e46822 Merge pull request #3526 from sartura/f2fs-tools-no-selinux
f2fs-tools: import patch that disables selinux
2016-11-24 22:06:12 +01:00
Vladimir Ulrich f9fa5c078b [utils/zoneinfo] Updated to the latest release
Signed-off-by: Vladimir Ulrich <admin@evl.su>
2016-11-24 16:22:37 +03:00
Luiz Angelo Daros de Luca abebd4e756 Merge pull request #3548 from luizluca/attr_githttp
attr: use git over HTTP
2016-11-23 20:17:23 -02:00
Fam Zheng 9637d4d02e oath-toolkit: Add 'oath-toolkit' package
Upstream: http://www.nongnu.org/oath-toolkit/index.html

Signed-off-by: Fam Zheng <fam@euphon.net>

---

v2: Address comments of yousong and hnyman.
2016-11-23 07:45:06 -06:00
Luiz Angelo Daros de Luca 777b64cb65 attr: use git over HTTP
Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
2016-11-22 16:07:40 -02:00
Denis Osvald a6c1dba795 f2fs-tools: replace noselinux patch with upstream version
Signed-off-by: Denis Osvald <denis.osvald@sartura.hr>
2016-11-22 18:10:43 +01:00
p-wassi 85e4442361 utils/nano: update to 2.7.1
Update nano to upstream release 2.7.1

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
2016-11-22 09:18:09 +01:00
p-wassi 39af758c7e utils/zip: fix LARGE_FILE_SUPPORT in configure script
Package zip is currently broken with a runtime error.
When zip is run, it immediately exits with
"zip warning : Not supported (uzoff_t not same size as zoff_t)"

The issue boils down to the package's configure script which tries to
determine LARGE_FILE_SUPPORT on *host* side. The conftest.c is
compiled and ran on the building host to see whether LFS is given or not.
This will fail when cross-compiling. The patch here is created by Romain Naour,
taken from http://lists.busybox.net/pipermail/buildroot/2015-January/117909.html
Reworked and tested by me. Now LFS is detected and the built binaries work
on the target.

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
2016-11-20 22:05:42 +01:00
Denis Osvald 6789e872d9 f2fs-tools: import patch that disables selinux
Signed-off-by: Denis Osvald <denis.osvald@sartura.hr>
2016-11-18 15:41:14 +01:00
Shuanglei Tao 10503bad44 ttyd: update to 1.2.0
Signed-off-by: Shuanglei Tao <tsl0922@gmail.com>
2016-11-13 18:56:05 +08:00
Nuno Goncalves 325c2ebbf8 tcsh: bump to version 6.19.01
Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
2016-11-12 22:25:32 +01:00
Hannu Nyman 91200bf982 Merge pull request #3503 from the2masters/rng-tools
rng-tools: Fixup Makefile and initscript
2016-11-11 10:42:17 +02:00
Hannu Nyman 450101bea2 collectd: enable cpufreq plugin also for ipq806x
Enable cpufreq plugin also for ipq806x,
as IPQ8065 supports CPU frequency scaling.

Run-tested with Netgear R7800.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2016-11-10 16:04:02 +02:00
Stefan Hellermann dc445cc242 rng-tools: Fixup Makefile and initscript
- typo in path of uci-defaults scripts
- fix init script when there is no rngd config
- convert init script to procd

Signed-off-by: Stefan Hellermann <stefan@the2masters.de>
2016-11-10 10:33:22 +01:00
Florian Fainelli a554a1dd30 Merge pull request #3494 from ffainelli/plc-utils-3481
open-plc-utils: Force creation of open-plc-utils metapackage
2016-11-08 10:51:42 -08:00
Luka Perkov fa76db66ef Merge pull request #3373 from bobafetthotmail/patch-6
f2fs-tools: update to latest and split up tools
2016-11-06 23:59:40 +01:00
Florian Fainelli dc368cbcd0 open-plc-utils: Force creation of open-plc-utils metapackage
Without it, all other plugin packages are not installable.

Fixes #3481

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2016-11-06 13:44:36 -08:00
Richard Kunze c7408560a1 hdparm: bump version to 9.50
Signed-off-by: Richard Kunze <richard.kunze@web.de>
2016-11-05 18:08:40 +01:00
Vladimir Ulrich 2e88ec6cca [utils/zoneinfo] Updated to the latest release
Signed-off-by: Vladimir Ulrich <admin@evl.su>
2016-11-03 18:18:12 +03:00
Hannu Nyman d9a25e1c16 Merge pull request #3450 from bobafetthotmail/patch-4
avrdude: move to "Microcontroller programming" submenu
2016-11-03 00:03:41 +02:00
Hannu Nyman d3e60c52bb Merge pull request #3451 from bobafetthotmail/patch-7
dfu-programmer: move to "Microcontroller programming" submenu
2016-11-03 00:03:34 +02:00
Alberto Bursi 6013b58f41 stm32flash: move to "Microcontroller programming" submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-11-02 21:30:30 +01:00
Alberto Bursi f72d672abf dfu-programmer: move to "Microcontroller programming" submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-11-02 21:26:53 +01:00
Alberto Bursi 4c1028564e avrdude: move to "Microcontroller programming" submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-11-02 21:23:26 +01:00
Daniel Golle 1b118db0ad Merge pull request #3073 from paulo-raca/i2c-tools-py3
i2c-tools: Added python3-smbus package
2016-11-02 14:02:19 +01:00
Paulo Costa 581ec01afa i2c-tools: Added python3-smbus package
This only replicates the existing python-smbus package into Python 3

Signed-off-by: Paulo Costa <me@paulo.costa.nom.br>
2016-11-02 10:46:42 -02:00
Alberto Bursi 535200b110 zoneinfo: capitalize submenu name (zoneinfo -> Zoneinfo)
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-11-02 11:55:13 +01:00
Hannu Nyman 8067dd75c3 Merge pull request #3443 from bobafetthotmail/patch-7
llvm2: capitalized submenu name (disc -> Disc)
2016-11-02 12:07:50 +02:00
Hannu Nyman 46ce67cf2b Merge pull request #3442 from bobafetthotmail/patch-5
hdparm: capitalized submenu name (disc -> Disc)
2016-11-02 12:07:43 +02:00
Hannu Nyman 562744380d Merge pull request #3441 from bobafetthotmail/patch-3
hd-idle: capitalized submenu name (disc -> Disc)
2016-11-02 12:07:33 +02:00
Alberto Bursi db40cd51eb gdisk/sgdisk/cgdisk: capitalized submenu name (disc -> Disc)
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-11-02 10:11:33 +01:00
Alberto Bursi dbe0886898 llvm2: capitalized submenu name (disc -> Disc)
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-11-02 10:08:11 +01:00
Alberto Bursi 76c54dc342 hdparm: capitalized submenu name (disc -> Disc)
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-11-02 10:02:34 +01:00
Alberto Bursi 0f26a9f6d3 hd-idle: capitalized submenu name (disc -> Disc)
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-11-02 09:37:46 +01:00
Hannu Nyman 6b2e8ae6ef Merge pull request #3422 from nwf/ucify-rngd
rng-tools: uci-fy, default to doing nothing
2016-10-31 22:50:36 +02:00
Nathaniel Wesley Filardo bce6d283c1 rng-tools: uci-fy, default to doing nothing
Enabling the default configuration will pipe /dev/urandom back into
/dev/random ala the current package behavior.  Because this amounts to
disabling the in-kernel entropy estimation, default disabled.

While here, uci-paramaterize the high watermark.
While here, add a pre-command hook for real RNGs that need 'stty raw'
or other such hooks.  (e.g. the TrueRNG devices)

As offered in github openwrt/packages#3422, take over maintainership.

See github openwrt/packages#3142.

Signed-off-by: Nathaniel Wesley Filardo <nwfilardo@gmail.com>
2016-10-31 13:17:57 -04:00
Michal Hrušecký 764ac1a078
luci-app-lxc: Minor polishing
Add more dependencies needed by download template and replace all, not just
first occurence of : or _ in template name with space in webui.

Signed-off-by: Michal Hrušecký <Michal.Hrusecky@nic.cz>
2016-10-30 22:54:42 +01:00
Hannu Nyman fba5959f4e Merge pull request #3394 from bobafetthotmail/patch-20
stoken: move to Encryption submenu
2016-10-30 09:53:47 +02:00
Hannu Nyman 0a66d54ae7 Merge pull request #3389 from bobafetthotmail/patch-15
cryptsetup: move to Encryption submenu
2016-10-30 09:53:18 +02:00
Hannu Nyman e3ba3a4775 Merge pull request #3391 from bobafetthotmail/patch-17
gnupg: move to Encryption submenu
2016-10-30 09:52:46 +02:00
Hannu Nyman dc175a01d1 Merge pull request #3392 from bobafetthotmail/patch-18
squashfs-tools: move to Filesystems submenu
2016-10-30 09:52:36 +02:00
Hannu Nyman 53e1fa2b70 Merge pull request #3386 from bobafetthotmail/patch-12
rrdcgi1/rrdtool1: move to database submenu
2016-10-30 09:51:52 +02:00
Hannu Nyman 9e9af1c7c5 Merge pull request #3379 from bobafetthotmail/patch-3
zsh: move to Shells submenu
2016-10-30 09:51:36 +02:00
Hannu Nyman a96efabd9a Merge pull request #3378 from bobafetthotmail/patch-2
bash: move to Shells submenu
2016-10-30 09:51:24 +02:00
Hannu Nyman deb4696b73 Merge pull request #3383 from bobafetthotmail/patch-10
libhavege: move to Libraries category
2016-10-25 17:50:41 +03:00
Hannu Nyman ef120b301e Merge pull request #3382 from bobafetthotmail/patch-9
klish: move to Shells submenu
2016-10-25 17:46:28 +03:00
Yousong Zhou 17083195d7 Merge pull request #3390 from bobafetthotmail/patch-16
dvtm: move to Terminal submenu
2016-10-25 00:03:41 -05:00
Hannu Nyman 19cfe6a8fa Merge pull request #3385 from bobafetthotmail/patch-11
tmux: move to Terminal submenu
2016-10-24 23:19:42 +03:00
Hannu Nyman 0907ba28de Merge pull request #3351 from RussellSenior/update-ap51-flash
utils/ap51-flash: import from old-packages and update
2016-10-24 13:47:57 +03:00
Alberto Bursi 82a8faa072 tcsh: move to Shells submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-24 10:22:09 +02:00
Alberto Bursi 4237b1e42f stoken: move to Encryption submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-24 00:15:27 +02:00
Alberto Bursi 478d35459c squashfs-tools: move to Filesystems submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 23:53:43 +02:00
Alberto Bursi 198ada3b9d gnupg: move to Encryption submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 23:41:08 +02:00
Alberto Bursi 55c7ee7bab dvtm: move to Terminal submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 23:34:48 +02:00
Alberto Bursi bb103260af cryptsetup: move to Encryption submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 23:29:33 +02:00
Alberto Bursi dc88e921cc ccrypt: move to Encryption submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 23:14:18 +02:00
champtar d3d0bd86e7 Merge pull request #3387 from bobafetthotmail/patch-13
screen: move to Terminal submenu
2016-10-23 21:00:04 +02:00
Hannu Nyman e9855f05ac Merge pull request #3360 from riptidewave93/master
utils/collectd: Add cpufreq module
2016-10-23 21:51:46 +03:00
Hannu Nyman efdbe9cad5 Merge pull request #3380 from bobafetthotmail/patch-5
gzip: moving to Compression submenu
2016-10-23 21:08:56 +03:00
Alberto Bursi f94d5dbbb3 screen: move to Terminal submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 20:04:24 +02:00
Alberto Bursi 2f8fcc1696 rrdcgi1/rrdtool1: move to database submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 19:56:11 +02:00
Alberto Bursi 697789ab77 tmux: move to Terminal submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 19:42:58 +02:00
Alberto Bursi 951dfd3f06 libhavege: move to Libraries category
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 18:42:38 +02:00
Alberto Bursi 43dac9065d klish: move to Shells submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 18:35:48 +02:00
Alberto Bursi 7f0b030e97 serialconsole: move to Terminal submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 18:30:33 +02:00
Alberto Bursi 9648acf668 gzip: moving to Compression submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 18:21:19 +02:00
Alberto Bursi 05d213405b zsh: move to Shells submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 17:56:06 +02:00
Alberto Bursi 2c563af997 bash: move to Shells submenu
Part of a wider housekeeping effort on the packages repository.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 17:50:14 +02:00
Alberto Bursi 188a11809a alsa-utils: moved to /sound and Sound category, fix minor bugs
Moved source folder in /sound folder, and changed all packages in the makefile
to be shown in Sound category (not in Sound subcategory of Utilities).
Removed a line calling a non-existent Package/alsa-utils/Default
and site URL to the package alsa-utils-tests.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-23 14:53:34 +02:00
Alberto Bursi 8a8d4516ec f2fs-tools: update to latest and split up tools
I cloned the makefile from LEDE's f2fs-utils package https://github.com/lede-project/source/blob/master/package/utils/f2fs-tools/Makefile
Fixes issue https://github.com/openwrt/packages/issues/1848

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-22 19:00:21 +02:00
Ted Hess c96031cf7a ntfs-3g: Update to 2016.2.22 stable releae
Signed-off-by: Ted Hess <thess@kitschensync.net>
2016-10-21 17:42:53 -04:00
Ted Hess d7c386845e Merge pull request #3366 from Wedmer/master
[utils/zoneinfo] Updated to the latest release
2016-10-21 16:57:58 -04:00
Vladimir Ulrich 85a6e5f576 [utils/zoneinfo] Updated to the latest release
Signed-off-by: Vladimir Ulrich <admin@evl.su>
2016-10-21 21:54:11 +03:00
Jo-Philipp Wich 117bc23432 ntfs-3g: ship /sbin/mount.ntfs compatibility symlink
Like on other common desktop Linux distributions, ship an /sbin/mount.ntfs
symlink in addition to the /sbin/mount.ntfs-3g one in order to let wrapper
programs successfully call external mount helpers by the filesystem name.

The assumption is that /sbin/mount.ntfs is only ever called by util-linux
mount and other mount-wrappers when kernel NTFS support is not available,
means shipping the additional symlink will not interfere with kernel mode
NTFS support.

This commit is mainly intended to prepare transparent fs-tools support for
mounting fuse filesystems, with focus on ntfs-3g in particular.

Please see http://git.lede-project.org/f027c68 for the corresponding
fs-tools support code.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2016-10-21 19:04:53 +02:00
Alberto Bursi 881ebfcaa6 gdisk: enabled more utils and changed package name
I needed also sgdisk (script-friendly) and while I was at it I added also
cgdisk (uses ncurses interface), all as separate packages.
re-arranged the package folder and set /usr/sbin for install folder
as most tools seem to go in there and not in /sbin.

Signed-off-by: Alberto Bursi <alberto.bursi@outlook.it>
2016-10-18 09:54:57 +02:00