summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* gnuplot: bump to version 4.6.6Gustavo Zacarias2014-09-232-1/+4
| | | | | | | Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ipset: bump to version 6.23Gustavo Zacarias2014-09-232-1/+3
| | | | | | | Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* pifmrds: bump version and remove strcmp patchEric Limpens2014-09-232-18/+1
| | | | | | | | - Bump version to git revision 0bf57f9... - Remove strcmp patch, has been fixed upstream Signed-off-by: Eric Limpens <limpens@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/ffmpeg: Fix compile error on arm4/arm5Bernd Kuhls2014-09-231-0/+85
| | | | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/d7e/d7ea8db79210228103257b6a28fada38cca142cb/ http://autobuild.buildroot.net/results/ec7/ec71e4f16ee9106747dff5f15999cbd17903e76f/ http://autobuild.buildroot.net/results/be7/be72eb182eaccf0064a32c9dfc2ac1c0d6555506/ http://autobuild.buildroot.net/results/b35/b35b71e3d21394e7ca24f3b112d8a4047cd6c87b/ http://autobuild.buildroot.net/results/5bb/5bbc8b5cdcd99229a6813970293f98b044fc489d/ http://autobuild.buildroot.net/results/be5/be54e75c4171d1db0eaaaeb5f5df29751d7db57b/ [Thomas: update patch to indicate that it has been merged upstream, and point to the upstream commit.] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* directfb: disable multi application if no MMUJérôme Pouiller2014-09-231-0/+1
| | | | | | | | | | | | | | | directfb-fusion uses the madvise() system call which is not available on no-MMU targets. It seems it might be possible to simply remove the call to madvise() (there is only one call) if not available. However, it's probably not worth the effort, and people working on no-MMU targets can submit a patch doing that if they are interested. [Thomas: tweak commit log.] Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* systemd: make libseccomp usage deterministicJérôme Pouiller2014-09-231-0/+7
| | | | | | | [Thomas: fix minor typo in commit title.] Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libseccomp: bump to version 2.1.1Jérôme Pouiller2014-09-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | Version 1.0.0 was not compatible with systemd. With 1.0.0, systemd compilation produce: src/shared/seccomp-util.c: In function 'seccomp_add_secondary_archs': src/shared/seccomp-util.c:73:9: warning: implicit declaration of function 'seccomp_arch_add' [-Wimplicit-function-declaration] r = seccomp_arch_add(c, SCMP_ARCH_X86); ^ src/shared/seccomp-util.c:73:9: warning: nested extern declaration of 'seccomp_arch_add' [-Wnested-externs] src/shared/seccomp-util.c:73:33: error: 'SCMP_ARCH_X86' undeclared (first use in this function) r = seccomp_arch_add(c, SCMP_ARCH_X86); ^ src/shared/seccomp-util.c:77:33: error: 'SCMP_ARCH_X86_64' undeclared (first use in this function) r = seccomp_arch_add(c, SCMP_ARCH_X86_64); ^ src/shared/seccomp-util.c:81:33: error: 'SCMP_ARCH_X32' undeclared (first use in this function) r = seccomp_arch_add(c, SCMP_ARCH_X32); Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* valgrind: bump to version 3.10Jérôme Pouiller2014-09-236-195/+12
| | | | | | | | | | | | | | | | | | | Patches status: valgrind-0001-workaround-SIGSEGV-on-PPC: Don't know. In doubt, I prefer to keep it. valgrind-0002-don-t-enable-largefile-support-unconditionally-on-uC: Seems still necessary valgrind-0003-Add-replacement-for-a.out.h: Upstreamed valgrind-0004-remove-default-mips-flags: Upstreamed valgrind-0005-glibc-2.19: Upstream now support glibc up to 2.20 Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* simicsfs: bump to version 1.18Jérôme Pouiller2014-09-231-1/+1
| | | | | | | Fix support for kernel > 3.15 Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* connman: bump to version 1.25Jérôme Pouiller2014-09-231-1/+1
| | | | | Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/gcc: cleanup arch/cpu combinationsGustavo Zacarias2014-09-231-17/+67
| | | | | | | | | | | | | | | Cleanup arch/cpu combination limits, we had super-wide depends and it doesn't help readability, version bumps or testing. Make the bool/depends/select order the same for all entries. Drop redundant limitations, for example sparc* if sparc wasn't supported in general. Power8 requires at least gcc 4.9. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* slang: bump to 2.3.0Yegor Yefremov2014-09-221-4/+2
| | | | | | | Bump version and change download location. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ethtool: bump to version 3.16Gustavo Zacarias2014-09-222-1/+3
| | | | | | | Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* avahi: add option to build the libdns_sd (Bonjour) compatibility libraryPeter Korsgaard2014-09-222-0/+22
| | | | | | As requested on the list. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* swig: add swig2.0 -> swig symlinkJeremy Rosen2014-09-221-1/+17
| | | | | | | | | | | | | | | The cmake detection script provided with cmake will first look for a binary called swig2.0 then for a binary called swig. host-swig only installs a binary called swig, but if the host distribution has instaled a binary called swig2.0, it will be preferred over our swig, which isn't great. This patch creates a symlink swig2.0 -> swig to prevent this from happening. [Thomas: add comment in the code and improve the commit log] Signed-off-by: Jérémy Rosen <jeremy.rosen@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/xbmc: make D-Bus configurableBernd Kuhls2014-09-222-1/+50
| | | | | | | | [Thomas: edit patch to indicate that it has been accepted by upstream, as mentionned by Bernd.] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* cmake : bump to version 3.0.2Jeremy Rosen2014-09-222-40/+2
| | | | | | | | | | | | | The cmake-0001-FindQt4-do-not-prepend-CMake-root-path-when-searchin.patch patch has been merged upstream as part of commit e8b8b37ef6fef094940d3384df5a1d421b9fa568. [Thomas: tweak commit log by adding details about the patch being removed.] Signed-off-by: Jérémy Rosen <jeremy.rosen@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qemu-mips64el: update kernel to latestWaldemar Brodkorb2014-09-223-6/+6
| | | | | | | Update Linux Kernel to 3.16.3. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qemu-mips64: update to latest kernelWaldemar Brodkorb2014-09-223-6/+6
| | | | | | | Update Linux Kernel to 3.16.3. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qemu-mipsel: update to latest kernelWaldemar Brodkorb2014-09-223-6/+6
| | | | | | | Update to Linux Kernel 3.16.3. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qemu-mips: update to latest kernelWaldemar Brodkorb2014-09-223-6/+6
| | | | | | | Update to Lnux Kernel 3.16.3. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/ffmpeg: Bump version to 2.4.1Bernd Kuhls2014-09-221-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/ffmpeg: Enable armv6 support for Cortex coresBernd Kuhls2014-09-221-1/+1
| | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/cda/cdad51f610c339d2ad4c7d09c282cfb4b10770a0/ http://autobuild.buildroot.net/results/cd5/cd53af973d9722481c3298f484b399c9a2c286cf/ http://autobuild.buildroot.net/results/a9a/a9a2c49d923fd891945a24c9d0d147b3eea9b037/ http://autobuild.buildroot.net/results/d2f/d2f51632aea5727df9404e611e8e379567f03b61/ http://autobuild.buildroot.net/results/a62/a622dd113dcb7b352bcfebe3b3c7ac6ed286d7c7/ http://autobuild.buildroot.net/results/2ea/2eace18d0d32b4cbb6120b06d2bbe79d2b9857a7/ http://autobuild.buildroot.net/results/caa/caad4172db90879db51b66625b98aa0805e39c73/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* pkg-infra: put optional step_user def and assignment in one blockDanomi Manchego2014-09-211-1/+1
| | | | | | Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998 at free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ffmpeg: add --pkg-config to configure optionsDanomi Manchego2014-09-211-1/+2
| | | | | | | | | | | | | | | | The ffmpeg does not understand the PKG_CONFIG env variable, so it throws a line like this at the end of its configuration: WARNING: .../output/host/usr/bin/arm-none-linux-gnueabi-pkg-config not found, library detection may fail. Apparently, some of the indevs and outdevs need a pkg-config. This patch adds the --pkg-config to let ffmpeg know where it is. [Thomas: remove unrelated formatting change.] Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ffmpeg: enable or disable debug based on BR2_ENABLE_DEBUGDanomi Manchego2014-09-211-1/+6
| | | | | | | | | | | | | Rather than hard-code --disable-debug, selectively enable or disable based on BR2_ENABLE_DEBUG. (Similar to gst1-libav.) [Thomas: do not make other changes such as reformatting the --prefix=/usr line.] Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ffmpeg: consolidate duplicated config optionsDanomi Manchego2014-09-211-3/+2
| | | | | | | | | | | | Commit 62ab07ef769bd6504fe1db144aaac3fd45db9dad added a bunch of hard-coded options. Some of these options are then again added (or negated) based on kconfig settings. This patch removes the hard coded swscale and postproc settings, as they are enabled or disabled later. It also moves the --disable-pic lower as an else clause to the part that adds --enable-pic. Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* opencv: rework V4L/libv4l supportSamuel Martin2014-09-212-9/+5
| | | | | | | | | | | | | | | | | | | | | Starting with the 2.4.7 release, for V4L support, OpenCV does not requires a libv4l dependency for its V4L support. So, it now provides 2 distincts knobs for this: WITH_V4L and a new one: WITH_LIBV4L. This patch takes advantage of this new knob and libv4l support is now automatically enabled only if the libv4l package is enabled. In OpenCV, the logic behind this is: - using libv4l if available, - otherwise, use v4l2 or v4l API from the kernel if available. [Thomas: remove gratuituous reformating, as suggested by Yann.] Signed-off-by: Samuel Martin <s.martin49@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* scripts/graph-build-time: remove X dependencySascha Arthur2014-09-211-1/+2
| | | | | | | | | [Thomas: tweak commit title.] Signed-off-by: Sascha Arthur <sascha.arthur@gmail.com> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* bcache-tools: Adding package.Jean-Christophe DUBOIS2014-09-213-0/+56
| | | | | | | | | | | | This is the bcache tools, required to setup the linux bcache feature of the Linux kernel. [Thomas: use only one hook to create the missing directories, as suggested by Yann.] Signed-off-by: Jean-Christophe DUBOIS <jcd@tribudubois.net> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xserver_xorg-server: Fix compile error for microblazeBernd Kuhls2014-09-211-0/+33
| | | | | | | | | | | | Fixes mipushpxl.c: In function 'miPushPixels': mipushpxl.c:110:38: error: 'IMAGE_BYTE_ORDER' undeclared (first use in this function) if (screenInfo.bitmapBitOrder == IMAGE_BYTE_ORDER) Patch submitted upstream: https://bugs.freedesktop.org/show_bug.cgi?id=83582 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xserver_xorg-server: Fix compile error for microblaze & xtensaBernd Kuhls2014-09-211-0/+232
| | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/05f/05f2f1317f366b724c2d6b1bb572bb6778c69896/ http://autobuild.buildroot.net/results/655/655c00859ea61378739309539d71b38fab62e229/ http://autobuild.buildroot.net/results/4d3/4d37c5594c0916c27c897b0d2545d1c5cc492598/ http://autobuild.buildroot.net/results/d1a/d1af06d73ee0fd57ee0ad8b371927b2f9478d44e/ http://autobuild.buildroot.net/results/5cc/5cceb96ac29a410316fd7d8f7de0615ba33e3f2c/ http://autobuild.buildroot.net/results/143/14308a9d1806574f06ab2a7d222f53119fab1c90/ http://autobuild.buildroot.net/results/c6a/c6a5bbee21b5c4ce84c6a95bd764f294d3791720/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qemu-sh4: update to latest kernelWaldemar Brodkorb2014-09-213-5/+5
| | | | | | | Update to Linux kernel 3.16.3. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qemu-microblazebe: update to latest linux kernelWaldemar Brodkorb2014-09-213-6/+6
| | | | | | | Update to Linux Kernel 3.16.3. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qemu-microblazeel: update to latest kernelWaldemar Brodkorb2014-09-213-6/+6
| | | | | | | Update config to Linux 3.16.3. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* portmap: fix static linkingANDY KENNEDY2014-09-211-2/+1
| | | | | | | | | | | | Portmap builds and links, however, does not get built correctly when BR2_PREFER_STATIC_LIB is selected. There are no dynamic libraries in rootfs.tar, however, portmap gets linked dynamically without regards to the PREFER_STATIC_LIB tags. LDFLAGS was not being passed into the build of portmap. Signed-off-by: Andy Kennedy <andy.kennedy@adtran.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* perl: fix build of native modulesFrancois Perrad2014-09-211-0/+1
| | | | | | | | CORE/vutil.h is required when the host perl version is 5.20 see http://autobuild.buildroot.net/results/c3d/c3d48c3b3d6c1e616d8e20a2f65d8ba33abe61da/ Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/weston: bump to 1.6.0Yann E. MORIN2014-09-212-37/+1
| | | | | | | Remove patch applied upstream. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/wayland: bump to 1.6.0Yann E. MORIN2014-09-211-1/+1
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/freerdp: bump versionYann E. MORIN2014-09-212-79/+2
| | | | | | | | | | | | | | | | | | | | There has been no new release recently, and the 1.0 branch is out-dated. The 1.1 branch has not been release-tagged since the last beta tag, but it still continues to receive bug fixes, and is relatively stable. The next major release should be 1.2.0, but it is still in beta, looks like it is focused on Android, and was only recently tagged. So, we use the latest cset from the 1.1 branch until there is a new release (either 1.2.0 or 1.1.0), at which point we can revisit which version we'll use. Drop our patch, since the problem has been fixed upstream (with a more complete solution.) Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libinput: bump versionYann E. MORIN2014-09-212-24/+32
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* imx6sabresd: boot to /init in mfgtools modeVincent Stehlé2014-09-213-0/+38
| | | | | | | | | | | | | | | | | | | Buildroot supplies a nice /init wrapper script to use when booting from a ramdisk. We add a patch to u-boot to tell the kernel to boot into /init (instead of /linuxrc) on i.MX6, when booting in mfgtools mode. This way we can boot a buildroot system entirely through USB. Signed-off-by: Vincent Stehlé <vincent.stehle@freescale.com [Luca: rebase on top of iMX6DL patches and patch iMX6DL defconfig as well] Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> [Luca: build- and run-tested on i.MX6DL SABRESD] Tested-by: Luca Ceresoli <luca@lucaceresoli.net> Cc: Gary Bisson <bisson.gary@gmail.com> Cc: Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com> Cc: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* freescale/imx6-sabresd: document how to create a bootable SDLuca Ceresoli2014-09-212-0/+162
| | | | | | | | | | | | | Document how to create a bootable SD card for the two supported SABRESD cards: i.MX6Q and i.MX6DL. The SD card creation relies on an ad-hoc script. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Cc: Gilles Talis <gilles.talis@gmail.com> Cc: Gary Bisson <bisson.gary@gmail.com> Cc: Vincent Stehlé <vincent.stehle@freescale.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/freescale_imx6dlsabresd: add defconfig for iMX6DL SabreSDLuca Ceresoli2014-09-211-0/+27
| | | | | | | | | | | | | | This is very similar to freescale_imx6qsabresd_defconfig, which supports the i.MX6Q ("Quad", quad core CPU) version of the board, except it supports the i.MX6DL (DualLite, dual core CPU) version. The differences are in the U-boot configuration and the device tree file. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Cc: Gilles Talis <gilles.talis@gmail.com> Cc: Gary Bisson <bisson.gary@gmail.com> Cc: Vincent Stehlé <vincent.stehle@freescale.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/freescale_imx6qsabresd: rename imx6 to imx6qLuca Ceresoli2014-09-211-0/+0
| | | | | | | | | | | | | | This defconfig is specific to the SABRESD board equipped with the iMX6Q SoC. Rename it for clarity in order to avoid confusion with the upcoming defconfig for the iMX6DL version. Suggested by Gary Bisson. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Cc: Gilles Talis <gilles.talis@gmail.com> Cc: Gary Bisson <bisson.gary@gmail.com> Cc: Vincent Stehlé <vincent.stehle@freescale.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* docs: improve look of sponsors pageThomas Petazzoni2014-09-2111-35/+157
| | | | | | | | | | This commit completely reworks the Sponsors page, to improve its look, put the current sponsor in a clearly visible way, and add the logo of all sponsors. [Thomas: fixed the next meeting date, as noticed by Thomas DS.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* docs: move Buildroot CSS code into its own fileThomas Petazzoni2014-09-212-11/+14
| | | | | | | | | | | | In preparation to the addition of more CSS code, this commit moves the Buildroot site specific CSS code from header.html to a dedicated CSS file. [Thomas: add missing space before opening curly brace, as suggested by Thomas DS.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
* package/mesa3d: Bump version to 10.3.0Bernd Kuhls2014-09-212-21/+14
| | | | | | | - rebased mesa3d-0001-Fix-khrplatform.h-not-installed-if-EGL-is-disabled.patch Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/ffmpeg: Bump version to 2.4Bernd Kuhls2014-09-213-57/+23
| | | | | | | | | | | Version 2.3 is unmaintained: http://article.gmane.org/gmane.comp.video.ffmpeg.devel/183038 - removed ffmpeg-0002-bfin.patch, applied upstream - added vlc-0004-libav.patch from upstream to fix VLC compilation Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/genpart: make it a target package, tooYann E. MORIN2014-09-213-0/+10
| | | | | | | | | genpart comes handy when there is a need to programatically generate partition tables, without the need for a full partitioning program like fdisk et al. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud