- Jul 30, 2009
-
-
Gustavo Zacarias authored
Closes #509 Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Will Newton authored
Closes #491 - Deletion of reject files no longer required as they have gone from the upstream release. Signed-off-by:
Will Newton <will.newton@gmail.com> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Gustavo Zacarias authored
Closes #495. Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
-
Thomas Petazzoni authored
The AUTO_CONFIGURE_OPTS is not used anywhere in the tree. autoconf based packages should used the Makefile.autotools.in machinery instead. Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
- Jul 29, 2009
-
-
Peter Korsgaard authored
Thanks for Thomas for noticing. Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Peter Korsgaard authored
Closes #497 Use ARCH instead of BR2_ARCH as BR2_ARCH won't match because of the surrounding quotes. Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
- Jul 28, 2009
-
-
Thomas Petazzoni authored
Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Thomas Petazzoni authored
The cross-compile fix included in mainline of libXt between 1.0.5 and 1.0.6 is not sufficient. It allows to pass a different compiler for the host tools, but still uses the TARGET_CFLAGS/TARGET_LDFLAGS to compile the host tools, which obviously isn't correct. The new patch allows to use the CFLAGS_FOR_BUILD/LDFLAGS_FOR_BUILD variables as the CFLAGS/LDFLAGS to build the host tools. Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Thomas Petazzoni authored
This version bump is required by the bump of xlib_libXt from 1.0.5 to 1.0.6 (1.0.6 requires at least xutil/macros 1.2). The linuxdoc patch is removed, since it has been merged upstream, at http://cgit.freedesktop.org/xorg/util/macros/commit/?id=e20c503d24e5ccf03035aa0f6d833d235d2179df The other patch exposing STAGING_DIR is kept, as it is Buildroot specific. It has just been updated to resolve conflicts. Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Thomas Petazzoni authored
This version contains a fix to allow the compilation of the Xvesa server against recent versions of the kernel headers (fix http://cgit.freedesktop.org/xorg/xserver/commit/?h=server-1.5-branch&id=992a7168f0db5733fe4a6cbd2f40c6b1f2a150e0 ) Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Thomas Petazzoni authored
Bump libXt to 1.0.6 and remove the xlib_libXt-1.0.5-makestrs-nocc.patch, which has been included in a better form in upstream: http://cgit.freedesktop.org/xorg/lib/libXt/commit/?id=36e9f0d351afbf7fd2595990b2d39e7c551f6420 Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
- Jul 27, 2009
-
-
-
Olaf Rempel authored
Closes #243. CTorrent is a BitTorrent client implemented in C++ to be lightweight and quick. This is the enhanced version from http://www.rahul.net/dholmes/ctorrent/ [Peter: minor kconfig tweaks] Signed-off-by:
Olaf Rempel <razzor@kopf-tisch.de> Tested-by:
Will Newton <will.newton@gmail.com> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Thomas Petazzoni authored
Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Thomas Petazzoni authored
Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Mike Crowe authored
Closes #451 Move from old unmaintained dosfstools-2.11 (packaged as mkdosfs) to now maintained dosfstools-3.0.3. Allow each binary to be installed independently. Signed-off-by:
Mike Crowe <mac@mcrowe.com> Tested-by:
Will Newton <will.newton@gmail.com> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
-
Will Newton authored
Closes #331. - Remove patches applied upstream - Add updated avr32 patch from Hans-Christian Egtvedt. Signed-off-by:
Kelvin Cheung <keguang.zhang@gmail.com> Signed-off-by:
Will Newton <will.newton@gmail.com> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Maurice van der Pot authored
Signed-off-by:
Maurice van der Pot <griffon26@kfk4ever.com> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Thomas Petazzoni authored
Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Thomas Petazzoni authored
Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Alper Yildirim authored
It involved: * Modifying the top-level Makefile to create the xconfig target, and the $(CONFIG)/qconf target to compile the qconf utility * Modifying the package/config/Makefile magic so that C++ files and binaries gets linked properly, re-using the package/config/Makefile.kconfig logic inherited from the kernel * Hacking a little bit package/config/Makefile.kconfig in a way similar to the modifications done for the mconf (menuconfig interface) Signed-off-by:
Alper Yildirim <ayildirim@aselsan.com>
-
Alper Yildirim authored
Update the package/config stuff with the code available in the Linux kernel 2.6.30. Signed-off-by:
Alper Yildirim <ayildirim@aselsan.com>
-
-
Thomas Petazzoni authored
Running a simple Qt GUI application on an embedded systems without QtNetwork installed doesn't work, the dynamic loader complains that QtNetwork is not present. While I'm not a Qt build system expert, it looks like this dependency really exists, since the src/gui/gui.pri file in Qt sources contains the following line: embedded: QT += network Which would mean that the GUI module needs the network module to operate properly. And a few files in src/gui/embedded/ also include some QtNetwork stuff. This isn't really surprising since the Qt QWS mechanism uses communication between processes through a Unix socket. Therefore, we add a dependency on the network module in the GUI module. We use a 'select' dependency here, since it's might not be really obvious to the user that the GUI module requires the network one. Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Daniel Mack authored
Signed-off-by:
Daniel Mack <daniel@caiaq.de> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Thomas Petazzoni authored
Set QMAKE_LFLAGS so that at link time --sysroot is passed to the linker, and Qt finds the external libraries. This fixes Qt build when zlib or other libraries are external, instead of using Qt's internal copy. Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Thomas Petazzoni authored
Mention X.org and external toolchain improvements in the CHANGES file. Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Will Newton authored
Closes #421. This patch cleans up and fixes some minor issues with the locale support section of the toolchain menu. 1. uClibc requires wchar support if locales are enabled, make locale support select wchar support. 2. Allow purging of locale information even if there is no locale support in the C library. This cleans up after packages that install things into /usr/share/locale on the target. Signed-off-by:
Will Newton <will.newton@gmail.com> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Pavel Roskin authored
getline() is a standard libc function with a different signature. Signed-off-by:
Pavel Roskin <proski@gnu.org> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
- Jul 26, 2009
-
-
Peter Korsgaard authored
Use HOST_ARCH instead of hardcoded i686. The build still could use some cleanup though. Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Peter Korsgaard authored
Closes #403. Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Gustavo Zacarias authored
Closes #389. Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Gustavo Zacarias authored
Closes #3597. Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Gustavo Zacarias authored
Closes #287. Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Tested-by:
Will Newton <will.newton@gmail.com> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Peter Korsgaard authored
Missed by b6192fb9. Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
- Jul 25, 2009
-
-
Daniel Mack authored
The config help text says it all: Specify a script to be run after the build has finished and before the BR2 starts packing the files into selected packages. This gives users the oportunity to do board-specific cleanups, add-ons and the like, so the generated files can be used directly without further processing. The script is called with the target directory name as first and only argument. Make sure the exit code of that script is 0, otherwise make will stop after calling it. Signed-off-by:
Daniel Mack <daniel@caiaq.de> Cc: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-