summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* configs: add RaspberryPi defconfigMaxime Hadjinlian2013-03-262-0/+150
| | | | | | | | | | | | | | | | | This is a default configuration for the RaspberryPi, tested and functional. The kernel used is the one developped by the RaspberryPi foundation as it's not fully supported currently in mainline kernel. The configuration used for the kernel is the default bcmrpi. For more info, please find board/raspberrypi/readme.txt [Peter: minor README tweaks, rename to readme.txt] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> [yann.morin.1998@free.fr: use correct kernel headers, update kernel cset] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* avahi: add missing dependency on host-gettextThomas Petazzoni2013-03-261-1/+2
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/1dd5993d2ead9a92e2eb73227b19697728950b86/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gpsd: nmea2000 requires aivdm supportThomas Petazzoni2013-03-261-0/+1
| | | | | | | | | Fixes: http://autobuild.buildroot.org/results/853cac5becf9d071c6ec1181e1e951bc8e7d80d5/build-end.log and tons of identical build failures. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* bash: add missing dependency on host-bisonThomas Petazzoni2013-03-261-1/+1
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/dfedb4377a95e36e590c9a5a5853e3ed0ecbc247/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Makefile: simplify target skeleton copyingPeter Korsgaard2013-03-261-7/+2
| | | | | | | | | | | | | We already use the .root stamp file to remember if we have copied the skeleton, so we can remove the /bin check. Likewise, we should always have a TARGET_SKELETON (or explicitly error out otherwise), so remove that check as well. Finally, now that we're using rsync to do the copy, we might as well use its exclude support instead of cleaning up unwanted files afterwards. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Support .dotfiles in / being copied to the TARGETTilman Keskinöz2013-03-251-1/+1
| | | | | | | An example is .init_enable_core, to enable coredumps in busybox Signed-off-by: Tilman Keskinöz <arved@arved.at> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* vala: deprecate target packageThomas Petazzoni2013-03-251-0/+2
| | | | | | | | | | | Vala generates C code from Vala code, and therefore requires a compiler. Since we are deprecating the native compiler support on the target, having vala on the target doesn't make sense. Of course, we keep vala for the host, where compilation happens. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* vala: add missing host-bison dependencyThomas Petazzoni2013-03-251-1/+1
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/a59cceb695298c212c91d2e32b381a096f875274/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* redis: build fix and minor improvementThomas Petazzoni2013-03-252-1/+33
| | | | | | | | | | | | | | | | | | | | The redis-001-uclibc.patch was properly adding conditionals to ensure HAVE_BACKTRACE is not defined when uClibc is used. However, __unix doesn't seem to be define with the toolchain Peter uses on gcc14, so the <features.h> doesn't get included, therefore __UCLIBC isn't defined, and the code believes that backtrace support is available. We fix this by including <features.h> when __linux__ is defined. Fixes: http://autobuild.buildroot.org/results/4ba818f877af145a547a1fede0bb738192c2f181/build-end.log. Also add another patch that do not redefine the _LARGEFILE_SOURCE and _FILE_OFFSET_BITS macros if they are already defined on the command line. It avoids the ugly warnings that we could see from the build logs, and therefore make it easier to spot real errors. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mediastreamer: add missing host-gettext dependencies and other fixesThomas Petazzoni2013-03-251-1/+9
| | | | | | | | | | | Fixes: http://autobuild.buildroot.org/results/5e6c465c56f85a3017900613facc6e54c85d32da/build-end.log. While we're at it, add the usual comment header block at the beginning of the file, as well as licensing informations. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xapp_xev: add missing dependencies on xlib_libXrandrThomas Petazzoni2013-03-252-1/+2
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/ec1855d3d96cf01409999492c77a2709be8c4d01/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xapp_xinput: add missing dependenciesThomas Petazzoni2013-03-252-1/+3
| | | | | | | | | | | Following the big X.org bump, a few dependencies were missing in the xapp_xinput package. Fixes: http://autobuild.buildroot.org/results/7e4ebd4dd47f49bcd4d225b17fbbc8b211e5201a/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* olsr: add missing dependency on host-bison/host-flexThomas Petazzoni2013-03-251-0/+1
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/19e8426d749411f7a8625a849b024f3811b06729/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* toolchain: default to gcc 4.7.xPeter Korsgaard2013-03-251-1/+1
| | | | | | | | | With 4.8.x released, it makes sense to update our default gcc version before 4.6.x becomes unmaintained. At the same time simplify the kconfig logic a bit. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dnsmasq: add missing dependency on host-gettextThomas Petazzoni2013-03-251-2/+2
| | | | | | | | | | | | | | | When idn support is enabled, the dnsmasq build procedure requires xgettext, which is provided by host-gettext. Moreover, dnsmasq.mk was not passing $(TARGET_MAKE_ENV) in the environment, so $(HOST_DIR)/usr/bin was not in the PATH. For that reason, the dnsmasq Makefile could not find the xgettext program. Fixes: http://autobuild.buildroot.org/results/f7feaa818500a369a6c4c5fd8899c168f21b1460/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* conntrack-tools: add missing dependencies on host-flex/host-bisonThomas Petazzoni2013-03-251-1/+1
| | | | | | | | Fixes http://autobuild.buildroot.org/results/fd739aa0028fac1418ed33bc0ea831b6fc17a853/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* manual: fix typoTilman Keskinöz2013-03-251-1/+1
| | | | | Signed-off-by: Tilman Keskinöz <arved@arved.at> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openswan: add missing TARGET_MAKE_ENVThomas Petazzoni2013-03-251-2/+7
| | | | | | | | | | | openswan needs host-bison. The dependency was already there, but the build was not executed with $(TARGET_MAKE_ENV) in the environment, and therefore $(HOST_DIR)/usr/bin was not in the PATH. While we're at it, add licensing informations to openswan. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnuchess: add missing dependencies on flex and host-flexThomas Petazzoni2013-03-252-1/+6
| | | | | | | | | | | And also add a missing newline and licensing informations while we're at it. Fixes: http://autobuild.buildroot.org/results/2851f23990c9f6642b1e706a94b1afc15a24b6f7/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mrouted: add missing dependency on host-bisonThomas Petazzoni2013-03-251-0/+1
| | | | | | | | Fixes http://autobuild.buildroot.org/results/10d875724388034369e7673a6c08ecad3863ba06/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gstreamer: add missing dependencies on host-flex and host-bisonThomas Petazzoni2013-03-251-1/+1
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/f9f32bfd44a3f74ec30fc61594bf6eb04f80f872/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linux-pam: add missing dependency on host-flexThomas Petazzoni2013-03-251-1/+2
| | | | | | | | Fixes http://autobuild.buildroot.org/results/d8c52c0563e912e03c5f006f5865aa58f70d10e1/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* apr-util: fix incorrect operator leading to missing dependenciesThomas Petazzoni2013-03-251-1/+1
| | | | | | | | Fixes http://autobuild.buildroot.org/results/490a07cc161391b98193ab2c225458effc030ce7/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Merge branch 'x11r77_v2' of https://bitbucket.org/baekdahl/buildrootPeter Korsgaard2013-03-24156-418/+410
|\
| * xapp_xinit: removed in X11R7.7Jesper Baekdahl2013-03-205-25/+1
| |
| * xproto_xf86rushproto: removed in X11R7.7Will Wagner2013-03-203-18/+0
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xproto_printproto: removed in X11R7.7Will Wagner2013-03-205-20/+1
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xfont_font-bitstream-speedo: removed in X11R7.7Will Wagner2013-03-203-20/+0
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xlib_libXp: removed in X11R7.7Jesper Baekdahl2013-03-209-29/+3
| |
| * xlib_libXprintUtil: removed in X11R7.7Jesper Baekdahl2013-03-2011-30/+4
| |
| * xlib_libXprintAppUtil: removed in X11R7.7Will Wagner2013-03-203-21/+0
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xlib_libxkbui: removed in X11R7.7Will Wagner2013-03-203-21/+0
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xlib_libXfontcache: removed in X11R7.7Will Wagner2013-03-203-22/+0
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xlib_liboldX: removed in X11R7.7Will Wagner2013-03-203-20/+0
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xapp_xprehashprinterlist: removed in X11R7.7Jesper Baekdahl2013-03-203-19/+0
| |
| * xapp_xplsprinters: removed in X11R7.7Jesper Baekdahl2013-03-203-20/+0
| |
| * xdriver_xf86-input-tslib: fixed build against new x11 versionJesper Baekdahl2013-03-202-0/+230
| |
| * libxcb: bump revision to X11R7.7Will Wagner2013-03-201-1/+1
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xproto_dri2proto: bump versionJesper Baekdahl2013-03-201-1/+1
| |
| * mesa3d: bump versionWill Wagner2013-03-201-1/+1
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xserver_xorg-server: bump revision to X11R7.7Will Wagner2013-03-202-3/+1
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xutil_makedepend: bump revision to X11R7.7Will Wagner2013-03-201-1/+1
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xproto_xproto: bump revision to X11R7.7Will Wagner2013-03-201-1/+1
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xproto_xextproto: bump revision to X11R7.7Will Wagner2013-03-201-1/+1
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xproto_xcmiscproto: bump revision to X11R7.7Will Wagner2013-03-201-1/+1
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xproto_scrnsaverproto: bump revision to X11R7.7Will Wagner2013-03-201-1/+1
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * proto_resourceproto: bump revision to X11R7.7Will Wagner2013-03-201-1/+1
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xproto_recordproto: bump revision to X11R7.7Will Wagner2013-03-201-1/+1
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xproto_kbproto: bump revision to X11R7.7Will Wagner2013-03-201-1/+1
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>
| * xproto_inputproto: bump revision to X11R7.7Will Wagner2013-03-201-1/+1
| | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com>