Jo-Philipp Wich
e838c7f736
screen: fix musl compatibility
...
Add missing `os.h` include to `utmp.c` to pull in the required `utmp.h` header.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org >
2015-06-17 20:01:59 +02:00
Ted Hess
df6baaf7e0
Merge pull request #1397 from hnyman/rngtools-musl
...
rng-tools: musl compatibility
2015-06-17 12:45:33 -04:00
heil
3661e01a0d
acpid: Import from oldpackages, update to latest version, add myself as
...
maintainer, ensure musl compatibility
- with acpid kvm based setups can react on acpi shutdown and reboot
actions
Signed-off-by: heil <heil@terminal-consulting.de >
2015-06-17 17:25:52 +02:00
Hannu Nyman
23334b9816
rng-tools: musl compatibility
...
Make rng-tools to compile with musl
by adding similar argp dependencies as with uclibc.
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi >
2015-06-17 11:33:38 +03:00
Ted Hess
94974c17fb
Merge pull request #1391 from jow-/avrdude-musl-compat
...
avrdude: fix musl compatibility
2015-06-16 13:33:55 -04:00
Jo-Philipp Wich
d028771f28
avrdude: fix musl compatibility
...
- Build with -D_GNU_SOURCE to expose "loff_t" required for libelf.h
- Include sys/types.h before usb.h to provide missing u_int*_t types
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org >
2015-06-16 19:26:52 +02:00
Richard Kunze
791e912871
hdparm: Updated to latest version 9.47, removed obsolete patch.
...
Signed-off-by: Richard Kunze <richard.kunze@web.de >
2015-06-16 18:37:52 +02:00
Luka Perkov
8a88346ea2
Merge pull request #1385 from dangowrt/fix-f2fs-tools-build-with-musl
...
f2fs-tools: fix build with musl
2015-06-16 15:54:53 +02:00
Jo-Philipp Wich
acfce97879
picocom: fix compilation with musl ( #1383 )
...
Only use termio.h with glibc or uclibc, for musl include sys/ioctl.h and
termios.h instead.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org >
2015-06-16 14:39:44 +02:00
Daniel Golle
36e4c90f6c
f2fs-tools: fix build with musl
...
Signed-off-by: Daniel Golle <daniel@makrotopia.org >
2015-06-16 14:07:50 +02:00
Steven Barth
ccadda422b
procps: fix for new musl libc
...
Signed-off-by: Steven Barth <steven@midlink.org >
2015-06-16 10:30:20 +02:00
Steven Barth
52a5e8c4ec
Merge pull request #1373 from Wedmer/master
...
[utils/zoneinfo] Updated to the latest version
2015-06-15 10:11:26 +02:00
Steven Barth
0a2681c8e4
bzip2: moved to base
...
Signed-off-by: Steven Barth <steven@midlink.org >
2015-06-15 09:54:11 +02:00
Vladimir Ulrich
12f573dded
[utils/zoneinfo] Updated to the latest version
...
Signed-off-by: Vladimir Ulrich <admin@evl.su >
2015-06-15 04:35:40 +03:00
Steven Barth
e9f4127027
Merge pull request #1371 from mstorchak/smartmontools
...
smartmontools: update to 6.4
2015-06-14 23:08:07 +02:00
Daniel Golle
3a81a9b9fa
lvm2: update source and refresh patches
...
Signed-off-by: Daniel Golle <daniel@makrotopia.org >
2015-06-14 22:20:07 +02:00
Maxim Storchak
15330a002e
smartmontools: update to 6.4
...
Signed-off-by: Maxim Storchak <m.storchak@gmail.com >
2015-06-14 22:13:43 +03:00
Bruno Randolf
3841f9d686
bluez: Add bluez-daemon package
...
Move bluetoothd and related programs and files from bluez-utils into
bluez-daemon package. The main motivation for this is to remove the dependency
to DBus from bluez-utils. The utilities like "hcitool" are useful without it.
Also add kmod-bluetooth dependency to bluez-utils, as the utils don't make much
sense without bluetooth support in the kernel.
Signed-off-by: Bruno Randolf <br1@einfach.org >
2015-06-09 14:52:34 +01:00
Luka Perkov
7f9c9bff61
Merge pull request #1357 from dangowrt/fix-lxc-on-mpc85xx
...
lxc: fix build on mpc85xx
2015-06-09 14:33:16 +02:00
Marko Ratkaj
b4f4e3488a
sysstat: add license info
...
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr >
2015-06-09 12:19:07 +02:00
Daniel Golle
c8a6990932
lxc: fix build on mpc85xx
...
Initialize ret to 0 so compiler no longer complains about
monitor.c: In function 'lxc_monitor_open':
monitor.c:212:5: error: 'ret' may be used uninitialized in this function [-Werror=maybe-uninitialized]
Signed-off-by: Daniel Golle <daniel@makrotopia.org >
2015-06-09 12:03:20 +02:00
Marko Ratkaj
08631d9c8f
sysstat: import from old packages
...
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr >
2015-06-08 11:46:17 +02:00
Luka Perkov
91fb42ea11
Merge pull request #1344 from dangowrt/fix-lxc-seccomp
...
lxc: allow building with seccomp
2015-06-08 02:09:35 +02:00
Florian Fieber
9f4c0abc22
vim: Fix editing crontabs with crontab -e
...
Per default, vim creates a new file and keeps the original file as backup.
This leads to crontab checking the backup file for changes instead of the
one actually being edited, resulting in any changes being silently dropped.
Since busybox's crontab saves temporary crontab files in "/etc/crontabs.*"
vim's default of "backupskip=/tmp/*" doesn't circumvent this.
This commit fixes this issue by appending "/etc/crontabs.*" to "backupskip".
Signed-off-by: Florian Fieber <florian@florianfieber.de >
2015-06-05 20:32:44 +02:00
Daniel Golle
180d34f70b
lxc: allow building with seccomp
...
seccomp was unconditionally disabled before.
Also a non-escaped newline in a place where it should be escaped
made the build process skip some CONFIGURE_ARGS.
Fix CONFIGURE_ARGS and add an option to allow building with seccomp.
Signed-off-by: Daniel Golle <daniel@makrotopia.org >
2015-06-04 14:43:21 +02:00
Paul Fertser
6e416709e8
openocd: update to final 0.9.0
...
Disables building documentation to avoid makeinfo v4,v5
incompatibilities.
Signed-off-by: Paul Fertser <fercerpav@gmail.com >
2015-06-02 10:05:25 +00:00
Luka Perkov
a748218c14
Merge pull request #1255 from samm-git/master
...
add lxc-device applet to the utils/lxc
2015-06-02 00:32:14 +02:00
Michael Heimpold
4020ee4fb6
mmc-utils: upgrade to latest revision
...
New features are commands for eMMC cache control and gp partition
creation.
Signed-off-by: Michael Heimpold <mhei@heimpold.de >
2015-05-31 23:31:12 +02:00
Alex Samorukov
19d236187e
Add lxc-device applet to the utils/lxc.
...
lxc-device manages devices in running container.
Signed-off-by: Alex Samorukov <samm@os2.kiev.ua >
2015-05-27 23:35:11 +02:00
Jo-Philipp Wich
9e2788c96b
Merge pull request #1181 from ryzhovau/ipv6_opt
...
Optional IPv6 support
2015-05-27 18:49:06 +02:00
Nuno Goncalves
2de5acd6bd
tcsh: update to 6.19.00
...
Signed-off-by: Nuno Goncalves <nunojpg@gmail.com >
2015-05-25 14:46:46 +01:00
Nico
75d8f0924c
Merge pull request #1272 from ryzhovau/xz-utils-meta
...
xz: add xz-utils meta package
2015-05-24 19:48:49 +02:00
Steven Barth
87e4a658a4
Merge pull request #1278 from thess/vim-build-fix
...
vim: Fix false broken package status (buildbot)
2015-05-24 10:12:35 +02:00
Christian Pointner
a7a015fb72
pps-tools: enable for Linux 3.18
...
Signed-off-by: Christian Pointner <equinox@spreadspace.org >
2015-05-22 23:08:01 +02:00
Marcel Denia
5fa4fc4884
bash: Update to 4.3.39
...
Signed-off-by: Marcel Denia <naoir@gmx.net >
2015-05-22 07:16:26 +02:00
Ted Hess
87f1259fda
vim: Fix false broken package status (buildbot)
...
Signed-off-by: Ted Hess <thess@kitschensync.net >
2015-05-21 16:02:31 -04:00
Alexander Ryzhov
72322f24ae
lsof: respect IPv6 settings
...
Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru >
2015-05-21 06:13:34 +00:00
Alexander Ryzhov
2f75695b39
xz: add xz-utils meta package
...
Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru >
2015-05-20 09:10:01 +00:00
Daniel Golle
3a98dd9f31
lvm2: switch to version 2.2.02.120
...
Signed-off-by: Daniel Golle <daniel@makrotopia.org >
2015-05-20 01:18:14 +02:00
Charles Lehner
851c9c9da7
ncdu: update to 1.11
...
- Add patch to get WEXITSTATUS and WIFEXITED defined
The issue is fixed in upstream's development repo, so the patch won't be
needed with ncdu's next release.
- Depend on more commonly used libncurses instead of libncursesw
- Enable parallel build
- Update copyright
Signed-off-by: Charles Lehner <cel@celehner.com >
2015-05-14 15:52:08 -04:00
Alex Samorukov
552f24a63f
Add lxc-device applet
...
Signed-off-by: Alex Samorukov <samm@os2.kiev.ua >
2015-05-13 18:10:59 +00:00
Daniel Golle
764c55e013
opensc: update source, refresh patches
...
Also import two new GnuK-related patches.
Signed-off-by: Daniel Golle <daniel@makrotopia.org >
2015-05-13 13:23:21 +02:00
Daniel Golle
a7526b1a08
ccid: update source
...
Signed-off-by: Daniel Golle <daniel@makrotopia.org >
2015-05-13 13:23:21 +02:00
Luka Perkov
1211a4d708
taskwarrior: update to 2.4.4
...
Signed-off-by: Luka Perkov <luka@openwrt.org >
2015-05-13 12:48:18 +02:00
Luka Perkov
b240c7ede6
tmux: update to 2.0
...
Signed-off-by: Luka Perkov <luka@openwrt.org >
2015-05-13 12:39:48 +02:00
Steven Barth
7b017f7ee6
Merge pull request #1171 from ryzhovau/smstools3_deps
...
smstools3: remove unnecessary build deps
2015-05-12 09:14:45 +02:00
Luka Perkov
d3fdc8e22f
Merge pull request #1164 from samm-git/master
...
lxc: update to 1.1.2
2015-05-08 15:41:00 +02:00
Nikos Mavrogiannopoulos
73f22e9c69
Merge pull request #1228 from dangowrt/fix-cryptodev-on-kernel-4
...
cryptodev: get rid of get_unused_fd()
2015-05-03 21:24:26 +03:00
Daniel Golle
855fdd21d1
lvm2: finally fix memory locking issues on musl
...
Always use mlockall fixes it, still trying to keep everything else
as untouched as possible.
Signed-off-by: Daniel Golle <daniel@makrotopia.org >
2015-05-03 15:59:58 +02:00
Daniel Golle
6eb0919b90
cryptodev: get rid of get_unused_fd()
...
The get_unused_fd() macro was removed upstream by
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=f938612dd97d481b8b5bf960c992ae577f081c17
Thus replace get_unused_fd() by get_unused_fd_flags(0) which used to
be the definition of the get_unused_fd() macro before it was removed.
This fixes cryptodev compilation on kernel 4.0.
Signed-off-by: Daniel Golle <daniel@makrotopia.org >
2015-05-03 15:01:51 +02:00