summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Avoid the warnings about the redefinition of LUA_USE_DLOPEN, when ↵Francois Perrad2012-02-191-2/+2
| | | | | | | | | | | | | | | | | | | | BR2_PACKAGE_LUA_INTERPRETER_READLINE is set See src/luaconf.h lines 36-40 Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * Print a message before executing the post-build scriptLuca Ceresoli2012-02-191-0/+1
| | | | | | | | | | | | Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * linux-firmware: add support for the atheros ar9271 firmwareAlexandre Pereira da Silva2012-02-192-0/+13
| | | | | | | | | | | | Signed-off-by: Alexandre Pereira da Silva <aletes.xgr@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * qemu/sh4-r2d: update to use kernel 3.2.6Gustavo Zacarias2012-02-191-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * qemu/sparc-ss10: update to use kernel 3.2.6Gustavo Zacarias2012-02-191-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * qemu/mipsel-malta: update to use kernel 3.2.6Gustavo Zacarias2012-02-191-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * qemu/mips-malta: update to use kernel 3.2.6Gustavo Zacarias2012-02-191-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * qemu/x86_64: update to use kernel 3.2.6Gustavo Zacarias2012-02-191-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * qemu/x86: update to use kernel 3.2.6Gustavo Zacarias2012-02-191-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * qemu/arm-versatile: update to use kernel 3.2.6Gustavo Zacarias2012-02-191-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * qemu/ppc-g3beige: update readme and use kernel 3.2.6Gustavo Zacarias2012-02-193-3/+3
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * defconfigs: mx53loco_defconfig: misc tweaksPeter Korsgaard2012-02-191-2/+7
| | | | | | | | | | | | | | | | - Use git:// URLs for freescale git trees - Enable hard fpu for A8 - Board uses uSD cards, so enable ext2 filesystem Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * configs: Add Freescale MX53 supportMathieu Briand2012-02-171-0/+18
| | | | | | | | | | | | | | | | | | Buildroot config and Linux Kernel config. Freescale binaries (xf86 video driver and multimedia codecs) not supported yet. Signed-off-by: Mathieu Briand <mbriand@adeneo-embedded.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * avahi: bump versionPeter Korsgaard2012-02-151-1/+1
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * Makefile: use /etc/os-release for version info rather than /etc/br-versionPeter Korsgaard2012-02-141-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | /etc/os-release is becoming a standard interface for distribution name/version info, so let's use that instead of the nonstandard /etc/br-version. Format of the file is something like: NAME=Buildroot VERSION=2012.02-rc1-00003-g2d10e81 ID=buildroot VERSION_ID=2012.02-rc1 PRETTY_NAME="Buildroot 2012.02-rc1" For more details, see: http://0pointer.de/public/systemd-man/os-release.html Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * DOWNLOAD_WGET: use -O instead of -P to set output fileArnout Vandecappelle (Essensium/Mind)2012-02-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some URLs use url-encoded arguments to specify the file to download. Wget will then use an output file name which includes all the ampersands and such. However, this is not what we see from buildroot. E.g.: FOO_SITE="http://git.foo.com/?p=foo.git;a=blob;f=" FOO_SOURCE="foo.tgz" wget will download this into $(DL_DIR)/index.html?p=foo.git;a=blob;f=foo.tgz buildroot thinks it's in $(DL_DIR)/foo.tgz To make sure the view of wget and buildroot are consistent, specify the output file explicitly. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| * zlib: bump versionPeter Korsgaard2012-02-132-28/+5
| | | | | | | | | | | | Patch is now upstream. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | Update copyright yearPeter Korsgaard2012-03-013-3/+3
| | | | | | | | | | | | We're in 2012 by now. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | kickoff 2012.05 development cyclePeter Korsgaard2012-03-012-1/+3
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | docs/news.html: add 2012.02 announcement mail linkPeter Korsgaard2012-03-011-1/+2
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | Update for 2012.022012.02Peter Korsgaard2012-02-294-7/+20
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | libecore: fix build of host-libecore when X11 not availableThomas Petazzoni2012-02-291-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | The host-libecore build tries to build the X11 backend. This works if you have X11 headers/libraries installed on your build machine, but fails if you don't, and Buildroot shouldn't depend on such things being installed. Therefore, we force host-libecore to not build any of the graphical backends (X, XCB or DirectFB). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | Update for 2012.02-rc32012.02_rc3Peter Korsgaard2012-02-274-4/+31
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | uClibc: rename 0.9.33 syscall_ncs patchPeter Korsgaard2012-02-271-0/+0
| | | | | | | | | | | | No need for double dashes - Purely cosmetical. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | qemu/ppc-g3beige: update readme and use kernel 3.2.6Gustavo Zacarias2012-02-263-3/+3
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | qemu/sh4-r2d: update to use kernel 3.2.6Gustavo Zacarias2012-02-261-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | qemu/sparc-ss10: update to use kernel 3.2.6Gustavo Zacarias2012-02-261-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | qemu/mipsel-malta: update to use kernel 3.2.6Gustavo Zacarias2012-02-261-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | qemu/mips-malta: update to use kernel 3.2.6Gustavo Zacarias2012-02-261-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | qemu/x86_64: update to use kernel 3.2.6Gustavo Zacarias2012-02-261-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | qemu/x86: update to use kernel 3.2.6Gustavo Zacarias2012-02-261-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | qemu/arm-versatile: update to use kernel 3.2.6Gustavo Zacarias2012-02-261-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | customize: deprecate packagePeter Korsgaard2012-02-261-0/+1
| | | | | | | | | | | | | | As described in the buildroot dev day report, using a post-build script is nowadays the preferred way of adding stuff to the rootfs. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | pkg-stats: update list of packages to be skippedLuca Ceresoli2012-02-261-1/+1
| | | | | | | | | | | | Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | Makefile.cmake.in: fix automatic host deps calculationPeter Korsgaard2012-02-261-0/+4
| | | | | | | | | | | | We need similar handling as in autotools because of the host-cmake addition. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | ffmpeg: security bump to version 0.8.10Gustavo Zacarias2012-02-241-1/+1
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | libpng: security bump to version 1.4.9Gustavo Zacarias2012-02-241-1/+2
| | | | | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | kernel-headers: bump 3.0.x / 3.2.x stable versionsPeter Korsgaard2012-02-242-2/+2
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | dropbear: bump version, fixes CVE-2012-0920Peter Korsgaard2012-02-242-19/+1
| | | | | | | | | | | | | | | | | | | | | | From the release notes: Security: Fix use-after-free bug that could be triggered if command="..." authorized_keys restrictions are used. Could allow arbitrary code execution or bypass of the command="..." restriction to an authenticated user. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | Update for 2012.02-rc22012.02_rc2Peter Korsgaard2012-02-194-6/+32
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | Add documentation for makedevMaxime Ripard2012-02-194-1/+64
| | | | | | | | | | Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | gst-dsp: bump version for DSP_API=2 bugfixPeter Korsgaard2012-02-161-1/+1
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | uClibc: add upstream 0.9.33 fixesPeter Korsgaard2012-02-162-0/+209
| | | | | | | | | | | | Fixes build on E.G. powerpc. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | libecore: tweak makekeys workaround for make 3.82Peter Korsgaard2012-02-151-3/+2
| | | | | | | | | | | | | | | | | | | | | | It seems that make 3.82 gets confused and considers makekeys out of date when there isn't a makekeys.o, so ensure that we create both makekeys and makekeys.o before building. Also move the workaround to the extract step so we can build using make's default rules rather than explicitly calling gcc. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | mxml: Use correct paths when installing into staging.Will Newton2012-02-141-2/+2
| | | | | | | | | | | | | | | | The DSTROOT option passed for the staging install would install into the target directory, which is not what was intended. Signed-off-by: Will Newton <will.newton@imgtec.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | busybox: bump 1.19.x stable versionPeter Korsgaard2012-02-145-63/+1
| | | | | | | | | | | | Identical to 1.19.3 + patches. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | python: workaround distutils issue with binary extensionsPeter Korsgaard2012-02-141-0/+9
| | | | | | | | | | | | | | distutils adds -L$LIBDIR (/usr/lib), breaking build of binary extensions. Seen with netifaces, but other extensions may be affected as well. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | linux: bump 3.2.x stable versionPeter Korsgaard2012-02-141-2/+2
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | kernel-headers: bump 3.0.x / 3.2.x stable versionsPeter Korsgaard2012-02-142-2/+2
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | ffmpeg: fix altivec typoPeter Korsgaard2012-02-131-1/+1
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>