summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* python: remove smtpd.pyGustavo Zacarias2013-05-061-0/+7
| | | | | | | It's mostly sample code, normally not used, and has a bad shebang line. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* make: add license infoPeter Korsgaard2013-05-061-0/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* make version update 3.82Alexander Khryukin2013-05-061-1/+1
| | | | | | Signed-off-by: Alexander Khryukin <alexander@mezon.ru> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* crda: new packageGustavo Zacarias2013-05-063-0/+39
| | | | | | | | Based on the one from Dimitrios Siganos <dimitris@siganos.org> but with a proper host-python-m2crypto instead of patching. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* python-m2crypto: new packageGustavo Zacarias2013-05-061-0/+26
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wvdial: new packageSimon Dawson2013-05-064-0/+75
| | | | | | [Peter: adjust help text] Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wvstreams: new packageSimon Dawson2013-05-066-0/+385
| | | | | Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* python-serial: fix shebangGustavo Zacarias2013-05-061-2/+2
| | | | | | | | Add the --executable shebang fixup option to the build phase so that the script ends with a proper #!/usr/bin/python interpeter line set. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* python-bottle: bump version and fix shebangGustavo Zacarias2013-05-061-2/+2
| | | | | | | | | Bump to version 0.11.6 Add the --executable shebang fixup option to the build phase so that the script ends with a proper #!/usr/bin/python interpeter line set. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* zeromq: bump version to 3.2.3Simon Dawson2013-05-061-1/+1
| | | | | Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openswan: fix OCF support detectionGustavo Zacarias2013-05-051-1/+1
| | | | | | | | Now that the openssl OCFs option is gone we need to switch to the package option. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: enable cryptodev-linux supportGustavo Zacarias2013-05-051-0/+5
| | | | | | | | Unfortunately because of header file differencies this can't be used for OCF. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openssl: integrate variable cryptodev supportGustavo Zacarias2013-05-052-16/+6
| | | | | | | | | | Allow openssl to use cryptodev-linux hardware crypto support besides OCF. To do this we remove the OCF option from openssl and automatically use any of the available implementations when available. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* cryptodev: add new virtualGustavo Zacarias2013-05-053-0/+62
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* cryptodev-linux: new packageGustavo Zacarias2013-05-051-0/+28
| | | | | | | cryptodev-linux is an alternative implementation to ocf-linux. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ocf-linux: remove extension and build out of treeGustavo Zacarias2013-05-054-17/+52
| | | | | | | | | | | | | Remove the OCF linux kernel extension instead opting to build ocf-linux modules out of tree. This is easier for users since no kernel config tweaking is required. On the downside the OCF drivers can't be used, but then all of the kernel crypto drivers are available to users via cryptosoft which is preferred. Also remove it from the menu to utilize a virtual. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* bind: fix build failure for static+opensslGustavo Zacarias2013-05-051-1/+1
| | | | | | | | | | | Bind just links to openssl libraries without checking it's dependencies. This works when doing shared builds since the linker picks the deps up, but fails badly on static builds. So just define LIBS="-lz" when openssl is enabled. Fixes: http://autobuild.buildroot.net/results/a9a166f932e0b6727ae8e470ce748418797875b9/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Introduce package-specific BINFMT_FLAT options.Sonic Zhang2013-05-051-0/+4
| | | | | | | | Add new option <PKG>_FLAT_STACKSIZE. The document needs to be updated. Signed-off-by: Sonic Zhang <sonic.zhang@analog.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* arch: toolchain: Introduce binary format FLAT types.Sonic Zhang2013-05-051-0/+11
| | | | | | | | | Just introduce the symbol and options in arch generic Config.in. Add FLAT types specific compiling flags into package makefile. Signed-off-by: Sonic Zhang <sonic.zhang@analog.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* webp: bump versionPeter Korsgaard2013-05-051-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* webp: new packagegilles.talis@gmail.com2013-05-053-0/+38
| | | | | | [Peter: fix white space errors] Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-video-mach64: bumped to 6.9.3Stefan Fröberg2013-05-051-1/+1
| | | | | Signed-off-by: Stefan Fröberg <stefan.froberg@petroprogram.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xdriver_xf86-input-synaptics: bumped to 1.6.2Stefan Fröberg2013-05-051-1/+1
| | | | | Signed-off-by: Stefan Fröberg <stefan.froberg@petroprogram.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* json-javascript: new packageSimon Dawson2013-05-053-0/+27
| | | | | | [Peter: update for generic-package, add license info] Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* IOzone: new packagegilles.talis@gmail.com2013-05-053-0/+51
| | | | | | | | [Peter: lower case package name, strip trailing newline] Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Tested-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* aircrack-ng: fix build failure and install pathGustavo Zacarias2013-05-051-5/+6
| | | | | | | | | | | aircrack-ng doesn't account that openssl needs zlib so fix it. Fixes: http://autobuild.buildroot.net/results/97f4f90a7d60a0e3ea81c77f6986f1c1bae8d575/ Also fix the install prefix since it was getting installed to /usr/local Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* audiofile: regenerate configure to fix issuesGustavo Zacarias2013-05-051-0/+2
| | | | | | | | | Audiofile's shipped configure script is outdated so regenerate to fix issues like: http://autobuild.buildroot.net/results/659fd28b0a3fa15ecd1b32e8a08dd441465459c1/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ltp-testsuite: fix build breakage with libcapGustavo Zacarias2013-05-051-0/+8
| | | | | | | | | | | ltp-testsuite needs libcap with file attributes which in turn needs attr. Only libcap is checked for so if it lacks file attr support it breaks. Disable libcap support unless it's got attr support, fixes: http://autobuild.buildroot.net/results/b16b20963c7cb17d8e220a5baa1356372ebf85a6/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* nettle: fix ARM NEON breakageGustavo Zacarias2013-05-051-2/+2
| | | | | | | | | | Nettle's ARM NEON optimizations use some assembly constructs that aren't friendly with binutils < 2.21, so just disable it for external toolchains or internal with an unsupported version. http://autobuild.buildroot.net/results/3c6f91379f90d438b4da3dd330cf89e1dd746aaf/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ethtool: bump to version 3.9Gustavo Zacarias2013-05-051-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* arc: Add support for ARC-specific binutilsMischa Jonker2013-05-043-0/+81
| | | | | | | ARC support is not upstream yet. Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dmalloc: Stop libdmalloc*.so files from being deleted from staging directoryReuben Dowle2013-05-041-1/+1
| | | | | | | Fix libdmalloc*.so files being deleted from the staging directory as the package is installed into the target. Signed-off-by: Reuben Dowle <reuben.dowle at 4rf.com>
* add daemon mode support to pulseaudioJeremy Rosen2013-05-043-0/+59
| | | | | | | | | | pulseaudio documentation recommends not using the daemon mode unless you are on a headless system, but since that is the common case for a buildroot installation, install the related user and groups [Peter: fix typos, ifeq check, unconditionally install into target] Signed-off-by: Jérémy Rosen <jeremy.rosen@openwide.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* samba: add option for built-in debug messagesGustavo Zacarias2013-05-042-0/+11
| | | | | | | | | | This option allows users to specify the maximum level for compiled-in debug messages with -1 being none. In a typical scenario of nmbd+smbd+smbpasswd this can save a full megabyte of target space. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* inotify-tools: install to stagingSimon Dawson2013-05-041-0/+2
| | | | | | | | inotify-tools includes a shared library, which should be installed in the staging directory Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* jquery-keyboard: new packageGustavo Zacarias2013-05-043-0/+33
| | | | | | | | | | | Add the jquery-keyboard package based on Simon Dawson's patch with a newer version and improvements (license, select jquery, install layouts). [Peter: don't use install -D when destination is a directory] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* diffutils: only needs gettext if locale is selectedArnout Vandecappelle (Essensium/Mind)2013-05-032-2/+2
| | | | | | | | | Also add missing select in Config.in. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Added support for hashlib in the target PythonAvishay Orpaz2013-05-032-0/+10
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libjson: ensure shared lib is built with -fPICPeter Korsgaard2013-05-031-2/+10
| | | | | | Fixes http://autobuild.buildroot.net/results/72e6c260c9028dd636965b8bf76bb7ba216aa1a4/build-end.log Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: needs threads support in toolchainPeter Korsgaard2013-05-032-2/+4
| | | | | | Indirectly fixes http://autobuild.buildroot.net/results/453ac64daf384702512ac68f1779f375e337332d/build-end.log Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libplayer: needs threads support in toolchainPeter Korsgaard2013-05-031-2/+3
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mongoose: fix license infoPeter Korsgaard2013-05-031-1/+1
| | | | | | | | License file is called LICENSE, not COPYING. Fixes http://autobuild.buildroot.net/results/b45499489abad2a089b47d8470632b4152862c89/build-end.log Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* memtester: add license infoPeter Korsgaard2013-05-031-0/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ccache: define licenseLuca Ceresoli2013-05-021-0/+2
| | | | | Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: define licenseLuca Ceresoli2013-05-021-0/+6
| | | | | Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* omap-u-boot-utils: define licenseLuca Ceresoli2013-05-021-0/+2
| | | | | Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ffmpeg: define licenseLuca Ceresoli2013-05-021-0/+7
| | | | | Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gpsd: bump version to 3.9Simon Dawson2013-05-023-63/+1
| | | | | Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* socketcand: needs toolchain with threads supportgilles.talis@gmail.com2013-05-021-0/+4
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/1d35f22a25e8641106f3c070f360cf4b4a02a461 Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* rpi-firmware: Fixup config.txtMaxime Hadjinlian2013-05-021-1/+2
| | | | | | | | | | | | | The default name of the kernel binary for the RaspberryPi is kernel.img, it's only a zImage kernel renamed. Since Buildroot will build a zImage, the default config should use the zImage name instead of forcing the user to rename a file. This patch also remove the cmdline argument rootfstype. There is no point forcing the user to use ext4 for its root partition. Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>