aboutsummaryrefslogtreecommitdiff
path: root/utils
Commit message (Collapse)AuthorAge
...
* | | dbus host buildingOskari Rauta2014-11-22
|/ / | | | | | | | | | | Enable dbus host building ( some packages on other feed(s) need dbus on host side, since packages need to be compiled natively before cross compiling)
* | Merge pull request #552 from dibdot/mastersbyx2014-11-18
|\ \ | | | | | | mc: force rebuild when config changes
| * | mc: force rebuild when config changesDirk Brenken2014-11-18
| | | | | | | | | | | | | | | | | | - add PKG_CONFIG_DEPENDS to force package rebuild when certain CONFIG options changed. Signed-off-by: Dirk Brenken <dibdot@gmail.com>
* | | luci-app-lxc: use ubus binding for lxc-createPetar Koretic2014-11-18
| | | | | | | | | | | | Signed-off-by: Petar Koretic <petar.koretic@sartura.hr>
* | | lxc: correctly install configuration filesLuka Perkov2014-11-17
| | | | | | | | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* | | Merge pull request #547 from rkunze/hdparmsbyx2014-11-16
|\ \ \ | | | | | | | | hdparm: import from oldpackages
| * | | hdparm: fix compilation with muslRichard Kunze2014-11-16
| | | | | | | | | | | | | | | | Signed-off-by: Richard Kunze <richard.kunze@web.de>
| * | | hdparm: import from oldpackages, bump version to 9.45Richard Kunze2014-11-16
| | | | | | | | | | | | | | | | Signed-off-by: Richard Kunze <richard.kunze@web.de>
* | | | Merge pull request #549 from rkunze/sispmctlsbyx2014-11-16
|\ \ \ \ | | | | | | | | | | sispmctl: import from oldpackages
| * | | | sispmctl: fix compilation error with muslRichard Kunze2014-11-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unpatched compile fails because <sys/types.h> is not included in <usb.h> (provided by "libusb-compat") and consequently the 'u_int*_t' types are not found. This should probably better be fixed in the core "libusb-compat" package instead. Signed-off-by: Richard Kunze <richard.kunze@web.de>
| * | | | sispmctl: import from oldpackages, bump version to 3.1+20120206 (git head)Richard Kunze2014-11-16
| |/ / / | | | | | | | | | | | | Signed-off-by: Richard Kunze <richard.kunze@web.de>
* | | | Merge pull request #545 from dibdot/mastersbyx2014-11-16
|\ \ \ \ | |/ / / |/| / / | |/ / mc: various makefile/compile time changes
| * | mc: various makefile/compile time changesDirk Brenken2014-11-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | - add & reorder new compile time options with help text - all options are disabled by default, to reduce space req. - remove invalid mc configure options - fix broken makefile logic to enable/disable mc options Signed-off-by: Dirk Brenken <dibdot@gmail.com>
* | | lxc: minor dependencies tweakLuka Perkov2014-11-13
| |/ |/| | | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* | utils/zoneinfo: Updated md5 sums for source packagesVladimir Ulrich2014-11-11
| | | | | | | | Signed-off-by: Vladimir Ulrich <admin@evl.su>
* | utils/zoneinfo: Updated to a most recent version (2014j)Vladimir Ulrich2014-11-11
| | | | | | | | Signed-off-by: Vladimir Ulrich <admin@evl.su>
* | rpcd-mod-lxc: add spdx license infoLuka Perkov2014-11-11
| | | | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* | luci-app-lxc: add spdx license infoLuka Perkov2014-11-11
| | | | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* | luci-app-lxc: update dependenciesLuka Perkov2014-11-11
| | | | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* | lxc: update dependenciesLuka Perkov2014-11-11
| | | | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* | lxc: add spdx license infoLuka Perkov2014-11-11
| | | | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* | dump1090: update to latest versionÁlvaro Fernández Rojas2014-11-10
| | | | | | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* | unrar: update to 5.2.2Álvaro Fernández Rojas2014-11-10
|/ | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* Removed Middle-East target due there're no files for it.Vladimir Ulrich2014-11-08
| | | | Signed-off-by: Vladimir Ulrich <admin@evl.su>
* utils/zoneifo: Moved from old packages with updatesVladimir Ulrich2014-11-07
| | | | Signed-off-by: Vladimir Ulrich <admin@evl.su>
* mc: move to githubDirk Brenken2014-11-06
| | | | Signed-off-by: Dirk Brenken <dibdot@gmail.com>
* rpcd-mod-lxc: add lxc-create ubus bindingsLuka Perkov2014-11-03
| | | | | | | | Example call: $ ubus call lxc create '{ "name": "bar", "template": "download", "args": [ "--no-validate", "--dist", "debian", "--release", "sid", "--arch", "i386" ] }' Signed-off-by: Luka Perkov <luka@openwrt.org>
* luci-app-lxc: code cleanupPetar Koretic2014-10-30
| | | | | | | | | | | | | | | | Number of suggested rewrites: * use lua ubus bindings instead of os.execute * combine multiple actions to use same handler 'lxc_action' and pass actions as arguments to consolidate code * read openwrt version from lua directly * start using String.prototype.format for string formatting Also, drop 'rename' and 'clone' until they are fully functional on all platforms. Thanks Jo-Philipp for suggestions on how to improve the code. Signed-off-by: Petar Koretic <petar.koretic@sartura.hr>
* luci-app-lxc: add package for luci lxc appPetar Koretic2014-10-30
| | | | Signed-off-by: Petar Koretic <petar.koretic@sartura.hr>
* lxc: move patchLuka Perkov2014-10-30
| | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* collectd: unbreak collectd-mod-sensorsJo-Philipp Wich2014-10-29
| | | | Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* lxc: organize patchesLuka Perkov2014-10-29
| | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* lxc: fix lxc-destroyLuka Perkov2014-10-29
| | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* dump1090: remove interactive options, hardcode quiet and add respawn config.Álvaro Fernández Rojas2014-10-27
| | | | Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* dump1090: update to latest version, add init script and config.Álvaro Fernández Rojas2014-10-25
| | | | | Signed-off-by: Roger D <rogerdammit@gmail.com> Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* haserl: force rebuild when config changesNicolas Thill2014-10-25
| | | | Signed-off-by: Nicolas Thill <nico@openwrt.org>
* dump1090: force rebuild when config changesNicolas Thill2014-10-25
| | | | Signed-off-by: Nicolas Thill <nico@openwrt.org>
* lxc: use xz tool from busyboxPetar Koretic2014-10-23
| | | | Signed-off-by: Petar Koretic <petar.koretic@sartura.hr>
* lxc: create /lxc directory by defaultLuka Perkov2014-10-23
| | | | | | | The containers are stored in /lxc rather then in /var/lib/lxc. The latter is not suitable for OpenWrt. Signed-off-by: Luka Perkov <luka@openwrt.org>
* lxc: patches: add openwrt common configPetar Koretic2014-10-23
| | | | Signed-off-by: Petar Koretic <petar.koretic@sartura.hr>
* lxc: fix hooks installation on 1.0.6Petar Koretic2014-10-23
| | | | Signed-off-by: Petar Koretic <petar.koretic@sartura.hr>
* lxc: add busybox options menuPetar Koretic2014-10-23
| | | | Signed-off-by: Petar Koretic <petar.koretic@sartura.hr>
* lxc: patches: remove unsupported optionPetar Koretic2014-10-23
| | | | Signed-off-by: Petar Koretic <petar.koretic@sartura.hr>
* lxc: add config templates packagePetar Koretic2014-10-23
| | | | Signed-off-by: Petar Koretic <petar.koretic@sartura.hr>
* lxc: enable template installationPetar Koretic2014-10-23
| | | | Signed-off-by: Petar Koretic <petar.koretic@sartura.hr>
* tracertools: bump versionDaniel Golle2014-10-22
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* lxc: lxc-ls depends on lxc-configLuka Perkov2014-10-21
| | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* lxc: bump to 1.0.6Luka Perkov2014-10-21
| | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* lxc: set default lxcpath to /lxcLuka Perkov2014-10-21
| | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* rpcd-mod-lxc: add package for rpcd lxc moduleLuka Perkov2014-10-21
| | | | Signed-off-by: Luka Perkov <luka@openwrt.org>