- Aug 04, 2009
-
-
-
Thomas Petazzoni authored
Since CC is already passed in TARGET_CONFIGURE_OPTS at ./configure time, there's no point in overriding it with a wrong value at compilation time. This breaks external toolchain builds since CC=$(TARGET_CC) is wrong because it excludes the mandatory --sysroot option. Fixes bug #525 Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
-
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>
-
-
Thomas Petazzoni authored
Fix the little build systems hacks that no longer applied to the version of Perl being used. With these fixes in place, microperl builds and runs properly simple Perl commands on the target. Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Peter Korsgaard authored
Fixes various problems. Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
- Aug 03, 2009
-
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
-
Thomas Petazzoni authored
Since the recent update of Kconfig to the Kconfig infrastructure found in 2.6.30 kernels, make oldconfig was broken because it didn't generate the .config.cmd file. This is done by a call to the conf_write_autoconf() function. Moreover, this process was also broken because the conf_get_autoconfig_name() function was reading the environment variable BUILDROOT_AUTOCONF while the main Makefile is passing it as KCONFIG_AUTOCONFIG. We also remove the fallback on "$(BR2_DEPENDS_DIR)/config/auto.conf" since we are not able to expand BR2_DEPENDS_DIR at this point. Therefore, the KCONFIG_AUTOCONFIG envionment variable *must* be set. Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
- Aug 02, 2009
-
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Daniele Salvatore Albano authored
Closes #533 Signed-off-by:
Daniele Salvatore Albano <d.albano@gmail.com> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Gustavo Zacarias authored
Closes #289 This package is a wireless configuration utility for the linux mac80211 kernel stack. 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>
-
Will Newton authored
Closes #437 - Remove a few obsolete patches. - Add a patch to disable syscall tests unsupported by uClibc. - Add a patch to fix sched_getaffinity build. Signed-off-by:
Will Newton <will.newton@gmail.com> Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Will Newton authored
Closes #427 - Fix generation of configure script and Makefiles. - Add dependencies on libsoup and enchant. - Allow configuration of rendering target (currently X11 or DirectFB). Signed-off-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>
-
-
- Aug 01, 2009
-
-
Thomas Petazzoni authored
The installation to the target directory was broken for two reasons: * Due to how the lvm2.mk file was written, for each file listed in $(LVM2_TARGET_SBINS) and $(LVM2_TARGET_DMSETUP_SBINS), it was reinstalling all the files listed in those variables. When a target contains several elements, there's no need to make a loop to handle each of the elements: the rule will get executed as many times as they are elements in the target. * For some odd reason, lvm2 build system installs executable with 555 and libraries with 444. Therefore, once copied to the target directory, these executables and libraries cannot be overwritten... for example by a later execution of Buildroot. We fix this up by changing the permissions of the binaries and libraries installed by lvm2 to saner values (755 and 644) Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Daniele Salvatore Albano authored
Signed-off-by:
Daniele Salvatore Albano <d.albano@gmail.com>
-
Thomas Petazzoni authored
Buildroot Makefile to compile pciutils wasn't passing TARGET_LDFLAGS to pciutils build system. Therefore, at link time, the pciutils build system was not taking into account the important --sysroot option, which was breaking the link with external toolchains. Fixes bug #523. Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Peter Korsgaard authored
buffer overflow fix is now upstream Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Olaf Rempel authored
Closes #247 wide collection of NTFS utilities from http://www.linux-ntfs.org/ [Peter: misc Config.in cleanups/fixes] 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>
-
-
- Jul 31, 2009
-
-
Peter Korsgaard authored
The symbol is now BR2_PROGRAM_INVOCATION, not BR2_UCLIBC_PROGRAM_INVOCATION. Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
Thomas Petazzoni authored
Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Thomas Petazzoni authored
Coreutils 6.9 was broken with glibc >= 2.6, due to a coreutils internal function being named like a glibc function. This has been fixed in more recent coreutils version, by http://lists.pld-linux.org/mailman/pipermail/pld-cvs-commit/Week-of-Mon-20070514/155466.html . Therefore, we upgrade coreutils to its latest version, 7.4, which raised two problems: * Recent coreutils releases are not anymore available as .bz2 archives, only .xz archives. Since this archive format is not supported by Buildroot yet, and the corresponding tools are not widely available yet, we fallback to the bigger .gz format for the coreutils package. * The rename bug detection script m4/rename.m4 was broken, leading coreutils to try to include windows.h and compile some Windows-specific code. We introduce a patch to fix this, patch which has been taken from gnulib. We also make sure that this workaround is nevery compiled in by passing gl_cv_func_rename_dest_exists_bug=no to the configure script. Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Thomas Petazzoni authored
BR2_UCLIBC_PROGRAM_INVOCATION is a toolchain configuration option, like BR2_INET_IPV6, BR2_INET_RPC, on which some packages depend. Therefore, it should be handled like BR2_INET_IPV6 and BR2_INET_RPC in order to work properly with external toolchains. Since we move it out of toolchain/uClibc/Config.in into toolchain/Config.in.2, we rename the option to BR2_PROGRAM_INVOCATION (since BR2_INET_RPC and others don't have UCLIBC in their name). Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <jacmet@sunsite.dk>
-
-
Thomas Petazzoni authored
Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
- Jul 30, 2009
-
-
Thomas Petazzoni authored
The update of kconfig and the addition of xconfig support generates more files in package/config/. Tell git to ignore them. Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
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>
-
-