* [Buildroot] [PATCH 1/2] kernel-headers: bump 3.{0, 2, 4, 6}.x stable versions
From: Gustavo Zacarias @ 2012-11-01 11:07 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
| 8 ++++----
...all-fix-__packed-in-exported-kernel-head.patch} | 0
2 files changed, 4 insertions(+), 4 deletions(-)
rename toolchain/kernel-headers/{linux-3.0.49-headers_install-fix-__packed-in-exported-kernel-head.patch => linux-3.0.50-headers_install-fix-__packed-in-exported-kernel-head.patch} (100%)
--git a/toolchain/kernel-headers/Config.in b/toolchain/kernel-headers/Config.in
index 2270e0c..d596870 100644
--- a/toolchain/kernel-headers/Config.in
+++ b/toolchain/kernel-headers/Config.in
@@ -67,12 +67,12 @@ config BR2_DEFAULT_KERNEL_HEADERS
default "2.6.37.6" if BR2_KERNEL_HEADERS_2_6_37
default "2.6.38.8" if BR2_KERNEL_HEADERS_2_6_38
default "2.6.39.4" if BR2_KERNEL_HEADERS_2_6_39
- default "3.0.49" if BR2_KERNEL_HEADERS_3_0
+ default "3.0.50" if BR2_KERNEL_HEADERS_3_0
default "3.1.10" if BR2_KERNEL_HEADERS_3_1
- default "3.2.32" if BR2_KERNEL_HEADERS_3_2
+ default "3.2.33" if BR2_KERNEL_HEADERS_3_2
default "3.3.8" if BR2_KERNEL_HEADERS_3_3
- default "3.4.16" if BR2_KERNEL_HEADERS_3_4
+ default "3.4.17" if BR2_KERNEL_HEADERS_3_4
default "3.5.7" if BR2_KERNEL_HEADERS_3_5
- default "3.6.4" if BR2_KERNEL_HEADERS_3_6
+ default "3.6.5" if BR2_KERNEL_HEADERS_3_6
default "2.6" if BR2_KERNEL_HEADERS_SNAP
default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
diff --git a/toolchain/kernel-headers/linux-3.0.49-headers_install-fix-__packed-in-exported-kernel-head.patch b/toolchain/kernel-headers/linux-3.0.50-headers_install-fix-__packed-in-exported-kernel-head.patch
similarity index 100%
rename from toolchain/kernel-headers/linux-3.0.49-headers_install-fix-__packed-in-exported-kernel-head.patch
rename to toolchain/kernel-headers/linux-3.0.50-headers_install-fix-__packed-in-exported-kernel-head.patch
--
1.7.8.6
^ permalink raw reply related
* [Buildroot] Build gcc debugger for the Target
From: Alexander Khryukin @ 2012-11-01 10:41 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CAHXCMM+aZH-FaqQ62CF=oapVK5zGPnbkEUNpUsHBvgY2Z_Dy0A@mail.gmail.com>
2012/11/1 Samuel Martin <s.martin49@gmail.com>
> Hi Alexander,
>
> 2012/10/31 Alexander Khryukin <alexander@mezon.ru>
> >
> > Hello.
> > How i can build and package gcc for taget image?
> > Looks i need option like "Build gdb debugger for the Target"
> > but for gcc.
> To enable gcc package on the target you need the enable "Development
> files inthe target FS" under the "Build options" menu, then gcc
> package will be available in the "Package Selection >> Development
> tools" submenu.
>
> >
> > Now my image compiles fine, but without gcc on target it
> > worthless
>
> Note that gcc on the target is not really tested, so it may not build or
> work...
>
>
> Regards,
>
> --
> Sam
>
Yes, i enabled Devel files on target, but gcc not available into
"Development Tools".
Also i using external toolchain, not buildroot.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121101/09f91dbd/attachment-0001.html>
^ permalink raw reply
* [Buildroot] [PATCH v2] fs/common: Create initial console device
From: Markos Chandras @ 2012-11-01 10:28 UTC (permalink / raw)
To: buildroot
From: Markos Chandras <markos.chandras@imgtec.com>
A /dev/console node must be present in rootfs when the Linux kernel
boots otherwise the kernel will print the following warning:
"Warning: unable to open an initial console"
This is because when we use an initramfs the /dev directory is not
populated at this point. This can cause problems when a program
(e.g ldso with early debugging enabled) opens a standard file
descriptor for read/write before these descriptors are actually
created by the init process later on.
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
---
fs/cpio/cpio.mk | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/fs/cpio/cpio.mk b/fs/cpio/cpio.mk
index aa20b41..3293bc9 100644
--- a/fs/cpio/cpio.mk
+++ b/fs/cpio/cpio.mk
@@ -21,6 +21,8 @@ define ROOTFS_CPIO_ADD_INIT
fi
endef
+PACKAGES_PERMISSIONS_TABLE += /dev/console c 622 0 0 5 1
+
endif # BR2_ROOTFS_DEVICE_CREATION_STATIC
ROOTFS_CPIO_PRE_GEN_HOOKS += ROOTFS_CPIO_ADD_INIT
--
1.7.1
^ permalink raw reply related
* [Buildroot] [PATCH] uClibc: install libc.so even if BR2_PREFER_STATIC_LIB is enabled
From: Arnout Vandecappelle @ 2012-11-01 10:15 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50924B99.5080605@mind.be>
BR2_PREFER_STATIC_LIB _prefers_ static linking, but doesn't force it for
all packages. So some binaries may still be built without -static, and
they will need libc.so on the target.
Therefore, put libc.so.0 in the target unconditionally.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
Untested!
toolchain/uClibc/uclibc.mk | 2 --
1 file changed, 2 deletions(-)
diff --git a/toolchain/uClibc/uclibc.mk b/toolchain/uClibc/uclibc.mk
index 397cdd4..65ff90b 100644
--- a/toolchain/uClibc/uclibc.mk
+++ b/toolchain/uClibc/uclibc.mk
@@ -486,9 +486,7 @@ $(TARGET_DIR)/usr/bin/ldd: $(cross_compiler)
PREFIX=$(TARGET_DIR) utils install_utils
touch -c $@
-ifneq ($(BR2_PREFER_STATIC_LIB),y)
UCLIBC_TARGETS=$(TARGET_DIR)/lib/libc.so.0
-endif
ifeq ($(BR2_UCLIBC_INSTALL_TEST_SUITE),y)
UCLIBC_TARGETS+=uclibc-test
--
tg: (29266a3..) t/prefer-static-install-libc.so (depends on: master)
^ permalink raw reply related
* [Buildroot] cannot compile a program within a uclibc build chroot
From: Arnout Vandecappelle @ 2012-11-01 10:14 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50921F41.6040502@scalemp.com>
On 11/01/12 08:05, Eial Czerwacki wrote:
> 09:03:00 $ find root -name "libc*"
> find: root/lost+found: Permission denied
> root/usr/include/bits/libc-lock.h
> _root/usr/lib/libc.a_
> root/usr/lib/libcrypt_pic.a
> root/usr/lib/libc_pic.a
> root/usr/lib/libcurses.a
> root/usr/lib/libcrypt.a
>
> from what I can understand, although I've marked it to be static as possible, not all packages can be linked to static
> libs, gcc is an example as it needs libc.so.0 rather than libc.a
(it's actually as (from binutils), not gcc).
Good catch! With PREFER_STATIC, buildroot's uClibc doesn't install in the target.
I'll post an untested patch as a follow-up, can you test it?
Note: the other part of the problem is that binutils sets --enable-shared
unconditionally. But there may be other reasons for that.
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] Topics for the Buildroot Developers meeting
From: Robert Schwebel @ 2012-11-01 9:26 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121029233815.62dad9b3@skate>
On Mon, Oct 29, 2012 at 11:38:15PM +0100, Thomas Petazzoni wrote:
> Except that it doesn't work properly, even in PTXdist (as far as I
> know, of course). We had a discussion about this last year at ELCE with
> PTXdist developers. Basically, do the following:
>
> * Build program foo with OpenSSL support (the OpenSSL support in foo
> is optional, foo can work without OpenSSL). Both foo and openssl are
> installed in the target.
>
> * Enjoy foo with OpenSSL on your target, you're happy.
>
> * Now, remove OpenSSL from your target.
>
> Beng, "foo" no longer works, because a library it is linked against no
> longer exists, and "foo" has not been rebuilt without OpenSSL support.
> As far as I know, PTXdist doesn't keep track of reverse dependencies
> when removing a package, and that can lead to invalid root filesystems.
You are basically right, but ptxdist's intention is to make reproducable
systems, which means that a system stays consistent to itself when you
a) check out the BSP from your repository
b) build it from scratch
That's the only guarantee it gives you. There is no promise that
anything stays consistent if you configure around while a half-built
system is already there.
Because we have dependencies derived from the "select" statements in
Kconfig, it most times works pretty well if you switch things on, which
is what people most often do while developing.
If you switch things off, packages might become inconsistent, but again,
there is no promise that this works.
Any idea for a better mechanism is welcome :-)
rsc
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply
* [Buildroot] [PATCH buildroot] fs/common: Create initial console device
From: Markos Chandras @ 2012-11-01 9:22 UTC (permalink / raw)
To: buildroot
In-Reply-To: <5091AA49.6070300@mind.be>
On Wed, Oct 31, 2012 at 10:46 PM, Arnout Vandecappelle <arnout@mind.be> wrote:
> On 10/31/12 10:53, Markos Chandras wrote:
>>
>> From: Markos Chandras<markos.chandras@imgtec.com>
>>
>> A /dev/console node must be present in rootfs when the Linux kernel
>> boots otherwise the kernel will print the following warning:
>> "Warning: unable to open an initial console"
>>
>> This is because when we use an initramfs along with devtmpfs, the /dev
>> directory is not populated at this point. This can cause problems when a
>> program (e.g ldso with early debugging enabled) opens a standard file
>> descriptor for read/write before these descriptors are actually created by
>> the init process later on.
>>
>> Signed-off-by: Markos Chandras<markos.chandras@imgtec.com>
>
>
> Good point. However:
>
> - this is also true for mdev/udev;
> - it is only relevant in a cpio/initramfs rootfs;
> - it's cleaner to use the device table.
>
> So I'd add a device table line to PACKAGES_PERMISSIONS_TABLE in
> fs/cpio/cpio.mk, where the init script is also installed.
>
> Regards,
> Arnout
>
>
Hi Arnout,
Hmm I didn't know that the same problem exists in udev/mdev
configurations. I will prepare a new patch
like you suggested.
--
Regards,
Markos
^ permalink raw reply
* [Buildroot] [PATCH 1/1] Create a symbolic link to the target kernel directory.
From: Thomas Petazzoni @ 2012-11-01 9:19 UTC (permalink / raw)
To: buildroot
In-Reply-To: <75B2C156488F433AB22D082571AE6D4E@JohanW7>
On Thu, 1 Nov 2012 02:14:35 +0100, Sagaert Johan wrote:
> I always build modules outside of the buildroot system.
> Is there another (fast ) way ? I don't like to wait 20 seconds for
> buildroot tarring the rootfs.
I don't see the relation between waiting 20 seconds for Buildroot to
tar the rootfs and the patch you're posting. Care to explain?
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [PATCH 2/7] support/scripts: add a script to add a new package
From: Thomas Petazzoni @ 2012-11-01 9:09 UTC (permalink / raw)
To: buildroot
In-Reply-To: <5091D7B6.8070703@mind.be>
On Thu, 01 Nov 2012 03:00:22 +0100, Arnout Vandecappelle wrote:
> > +$ ./support/script/pkg-new
> > +Name of the package: libfoo
> > +
> > +1) none
> > +2) multimedia
> > +3) java
> > +4) x11r7
> > +5) games
> > +Category of your package: 1
>
> I would skip this question and always create it in
> packages/libfoo. The subdirectories are rare, we want to get rid of
> them, and anyway you can easily move the generated directory to a
> different place after the fact.
Agreed. However, I also wonder if it is a good idea to make this script
ask questions, as compared to a more conventional script that takes
command line arguments. But it's true that a script asking questions is
more like a wizard, probably easier to use.
> > + define ${PKG_NAME}_INSTALL_TARGET_CMDS
>
> Putting a sample
> install -D -m 0644 $(@D)/... $(TARGET_DIR)/...
> isn't a bad idea.
Not sure I agree here. People too often do manual installation in
generic packages, while they should use 'make install', possibly after
tunning/patching the Makefile.
Best regards,
Thomas
--
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply
* [Buildroot] [autobuild.buildroot.net] Build results for 2012-10-31
From: Thomas Petazzoni @ 2012-11-01 7:33 UTC (permalink / raw)
To: buildroot
Hello,
On 2012-10-31, 106 random build tests have been done and
submitted on autobuild.buildroot.net.
59 builds have been successful
47 builds have failed
Below the results of the failed builds. Successful builds are omitted.
Build 63426c2e6613b53ccbbf692a65485b8c2345b78c
==============================================
Status : NOK
Failure reason : squid-3.2.3
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 00:26:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/63426c2e6613b53ccbbf692a65485b8c2345b78c/build-end.log
Complete log : http://autobuild.buildroot.net/results/63426c2e6613b53ccbbf692a65485b8c2345b78c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/63426c2e6613b53ccbbf692a65485b8c2345b78c/config
Defconfig : http://autobuild.buildroot.net/results/63426c2e6613b53ccbbf692a65485b8c2345b78c/defconfig
Build 475e2cb9424b78776cf49e01362a62fce2c405be
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.25
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 01:22:11
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/475e2cb9424b78776cf49e01362a62fce2c405be/build-end.log
Complete log : http://autobuild.buildroot.net/results/475e2cb9424b78776cf49e01362a62fce2c405be/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/475e2cb9424b78776cf49e01362a62fce2c405be/config
Defconfig : http://autobuild.buildroot.net/results/475e2cb9424b78776cf49e01362a62fce2c405be/defconfig
Build 821ae965d1825e911cc4154bf2d9d004194efee7
==============================================
Status : NOK
Failure reason : sconeserver-178
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-31 01:24:41
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/821ae965d1825e911cc4154bf2d9d004194efee7/build-end.log
Complete log : http://autobuild.buildroot.net/results/821ae965d1825e911cc4154bf2d9d004194efee7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/821ae965d1825e911cc4154bf2d9d004194efee7/config
Defconfig : http://autobuild.buildroot.net/results/821ae965d1825e911cc4154bf2d9d004194efee7/defconfig
Build 72291eb232040993a124c6054bd626006ee922ec
==============================================
Status : NOK
Failure reason : host-microperl-5.12.4
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-31 01:52:22
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/72291eb232040993a124c6054bd626006ee922ec/build-end.log
Complete log : http://autobuild.buildroot.net/results/72291eb232040993a124c6054bd626006ee922ec/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/72291eb232040993a124c6054bd626006ee922ec/config
Defconfig : http://autobuild.buildroot.net/results/72291eb232040993a124c6054bd626006ee922ec/defconfig
Build 6e783ae39717a02d48fadcbd29748719675d3c0d
==============================================
Status : NOK
Failure reason : libnspr-4.8.7
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 01:54:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/6e783ae39717a02d48fadcbd29748719675d3c0d/build-end.log
Complete log : http://autobuild.buildroot.net/results/6e783ae39717a02d48fadcbd29748719675d3c0d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6e783ae39717a02d48fadcbd29748719675d3c0d/config
Defconfig : http://autobuild.buildroot.net/results/6e783ae39717a02d48fadcbd29748719675d3c0d/defconfig
Build df803387d7ebf9e65bbed8afddd62dfc8524b674
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 02:31:55
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/df803387d7ebf9e65bbed8afddd62dfc8524b674/build-end.log
Complete log : http://autobuild.buildroot.net/results/df803387d7ebf9e65bbed8afddd62dfc8524b674/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/df803387d7ebf9e65bbed8afddd62dfc8524b674/config
Defconfig : http://autobuild.buildroot.net/results/df803387d7ebf9e65bbed8afddd62dfc8524b674/defconfig
Build f271d7e237616db61648bc7a2dd94a93eb434a96
==============================================
Status : NOK
Failure reason : ltp-testsuite-20101031
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 03:02:01
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/f271d7e237616db61648bc7a2dd94a93eb434a96/build-end.log
Complete log : http://autobuild.buildroot.net/results/f271d7e237616db61648bc7a2dd94a93eb434a96/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f271d7e237616db61648bc7a2dd94a93eb434a96/config
Defconfig : http://autobuild.buildroot.net/results/f271d7e237616db61648bc7a2dd94a93eb434a96/defconfig
Build a480058b5fc8b4abe0065e8702dbf9897ba8e415
==============================================
Status : NOK
Failure reason : libhid-0.2.16
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 04:07:48
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/a480058b5fc8b4abe0065e8702dbf9897ba8e415/build-end.log
Complete log : http://autobuild.buildroot.net/results/a480058b5fc8b4abe0065e8702dbf9897ba8e415/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a480058b5fc8b4abe0065e8702dbf9897ba8e415/config
Defconfig : http://autobuild.buildroot.net/results/a480058b5fc8b4abe0065e8702dbf9897ba8e415/defconfig
Build fd70a5955e17c4f6493cb3539d185341777f3c38
==============================================
Status : NOK
Failure reason : make: *** [/home/test/dl/gdb-.tar.bz2] Error 1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 04:08:57
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/fd70a5955e17c4f6493cb3539d185341777f3c38/build-end.log
Complete log : http://autobuild.buildroot.net/results/fd70a5955e17c4f6493cb3539d185341777f3c38/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/fd70a5955e17c4f6493cb3539d185341777f3c38/config
Defconfig : http://autobuild.buildroot.net/results/fd70a5955e17c4f6493cb3539d185341777f3c38/defconfig
Build 53741abfff456f892d7ade396beaebfeb58f35c2
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-31 04:21:25
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/53741abfff456f892d7ade396beaebfeb58f35c2/build-end.log
Complete log : http://autobuild.buildroot.net/results/53741abfff456f892d7ade396beaebfeb58f35c2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/53741abfff456f892d7ade396beaebfeb58f35c2/config
Defconfig : http://autobuild.buildroot.net/results/53741abfff456f892d7ade396beaebfeb58f35c2/defconfig
Build 8244124bfd7e12018f3c97571bdbd25008fe2049
==============================================
Status : NOK
Failure reason : xlib_libX11-1.4.2
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 06:41:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/8244124bfd7e12018f3c97571bdbd25008fe2049/build-end.log
Complete log : http://autobuild.buildroot.net/results/8244124bfd7e12018f3c97571bdbd25008fe2049/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8244124bfd7e12018f3c97571bdbd25008fe2049/config
Defconfig : http://autobuild.buildroot.net/results/8244124bfd7e12018f3c97571bdbd25008fe2049/defconfig
Build 4122d97b54670508bb57bc72bc799246535eb8fe
==============================================
Status : NOK
Failure reason : opus-tools-0.1.5
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 07:03:40
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/4122d97b54670508bb57bc72bc799246535eb8fe/build-end.log
Complete log : http://autobuild.buildroot.net/results/4122d97b54670508bb57bc72bc799246535eb8fe/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4122d97b54670508bb57bc72bc799246535eb8fe/config
Defconfig : http://autobuild.buildroot.net/results/4122d97b54670508bb57bc72bc799246535eb8fe/defconfig
Build 152f6456683b8100c25d3db5c30a454125110bd9
==============================================
Status : NOK
Failure reason : libmbus-0.7.0
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-31 07:25:50
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/152f6456683b8100c25d3db5c30a454125110bd9/build-end.log
Complete log : http://autobuild.buildroot.net/results/152f6456683b8100c25d3db5c30a454125110bd9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/152f6456683b8100c25d3db5c30a454125110bd9/config
Defconfig : http://autobuild.buildroot.net/results/152f6456683b8100c25d3db5c30a454125110bd9/defconfig
Build a91174784068f39f9d4e611fca6e647a8721645a
==============================================
Status : NOK
Failure reason : libmbus-0.7.0
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 08:20:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/a91174784068f39f9d4e611fca6e647a8721645a/build-end.log
Complete log : http://autobuild.buildroot.net/results/a91174784068f39f9d4e611fca6e647a8721645a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a91174784068f39f9d4e611fca6e647a8721645a/config
Defconfig : http://autobuild.buildroot.net/results/a91174784068f39f9d4e611fca6e647a8721645a/defconfig
Build 1ef41b6b93f6ac2c166ae7294d398d6030ee484a
==============================================
Status : NOK
Failure reason : boost-1.49.0
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-31 08:45:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/1ef41b6b93f6ac2c166ae7294d398d6030ee484a/build-end.log
Complete log : http://autobuild.buildroot.net/results/1ef41b6b93f6ac2c166ae7294d398d6030ee484a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1ef41b6b93f6ac2c166ae7294d398d6030ee484a/config
Defconfig : http://autobuild.buildroot.net/results/1ef41b6b93f6ac2c166ae7294d398d6030ee484a/defconfig
Build ad84ec58ff5cece10ae18ff5a0ac3299963041fc
==============================================
Status : NOK
Failure reason : boost-1.49.0
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-31 09:25:00
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/ad84ec58ff5cece10ae18ff5a0ac3299963041fc/build-end.log
Complete log : http://autobuild.buildroot.net/results/ad84ec58ff5cece10ae18ff5a0ac3299963041fc/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ad84ec58ff5cece10ae18ff5a0ac3299963041fc/config
Defconfig : http://autobuild.buildroot.net/results/ad84ec58ff5cece10ae18ff5a0ac3299963041fc/defconfig
Build 981f964c38843b001ee50e4bb3396e11400712bf
==============================================
Status : NOK
Failure reason : sysklogd-1.5
Architecture : powerpc
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 10:05:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/981f964c38843b001ee50e4bb3396e11400712bf/build-end.log
Complete log : http://autobuild.buildroot.net/results/981f964c38843b001ee50e4bb3396e11400712bf/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/981f964c38843b001ee50e4bb3396e11400712bf/config
Defconfig : http://autobuild.buildroot.net/results/981f964c38843b001ee50e4bb3396e11400712bf/defconfig
Build 87b1d6ac1fdd9d97bbc4a7c3071f47d1d44cdc36
==============================================
Status : NOK
Failure reason : gdbhost-7.4.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 10:33:45
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/87b1d6ac1fdd9d97bbc4a7c3071f47d1d44cdc36/build-end.log
Complete log : http://autobuild.buildroot.net/results/87b1d6ac1fdd9d97bbc4a7c3071f47d1d44cdc36/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/87b1d6ac1fdd9d97bbc4a7c3071f47d1d44cdc36/config
Defconfig : http://autobuild.buildroot.net/results/87b1d6ac1fdd9d97bbc4a7c3071f47d1d44cdc36/defconfig
Build 009013434e8f2a0d895db9573a771cf4ca87a61d
==============================================
Status : NOK
Failure reason : xlib_libX11-1.4.2
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 10:38:40
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/009013434e8f2a0d895db9573a771cf4ca87a61d/build-end.log
Complete log : http://autobuild.buildroot.net/results/009013434e8f2a0d895db9573a771cf4ca87a61d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/009013434e8f2a0d895db9573a771cf4ca87a61d/config
Defconfig : http://autobuild.buildroot.net/results/009013434e8f2a0d895db9573a771cf4ca87a61d/defconfig
Build 3f82db711ebbb00a4e1d14316f951a838536b15e
==============================================
Status : NOK
Failure reason : iproute2-3.6.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 10:57:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/3f82db711ebbb00a4e1d14316f951a838536b15e/build-end.log
Complete log : http://autobuild.buildroot.net/results/3f82db711ebbb00a4e1d14316f951a838536b15e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/3f82db711ebbb00a4e1d14316f951a838536b15e/config
Defconfig : http://autobuild.buildroot.net/results/3f82db711ebbb00a4e1d14316f951a838536b15e/defconfig
Build e9e51e07e7164e1e3e4b07a9eff98e28dddcad9f
==============================================
Status : NOK
Failure reason : gdisk-0.6.14
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 11:34:56
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/e9e51e07e7164e1e3e4b07a9eff98e28dddcad9f/build-end.log
Complete log : http://autobuild.buildroot.net/results/e9e51e07e7164e1e3e4b07a9eff98e28dddcad9f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e9e51e07e7164e1e3e4b07a9eff98e28dddcad9f/config
Defconfig : http://autobuild.buildroot.net/results/e9e51e07e7164e1e3e4b07a9eff98e28dddcad9f/defconfig
Build c2b73ff85eafbcaaa7c945d367ba26a56948ea2f
==============================================
Status : NOK
Failure reason : make: *** [/home/test/dl/gdb-.tar.bz2] Error 1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 11:36:04
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/c2b73ff85eafbcaaa7c945d367ba26a56948ea2f/build-end.log
Complete log : http://autobuild.buildroot.net/results/c2b73ff85eafbcaaa7c945d367ba26a56948ea2f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c2b73ff85eafbcaaa7c945d367ba26a56948ea2f/config
Defconfig : http://autobuild.buildroot.net/results/c2b73ff85eafbcaaa7c945d367ba26a56948ea2f/defconfig
Build 887dd45b46b217a7525b339cf8f297c94269b2ac
==============================================
Status : NOK
Failure reason : lua-5.1.5
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 11:49:20
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/887dd45b46b217a7525b339cf8f297c94269b2ac/build-end.log
Complete log : http://autobuild.buildroot.net/results/887dd45b46b217a7525b339cf8f297c94269b2ac/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/887dd45b46b217a7525b339cf8f297c94269b2ac/config
Defconfig : http://autobuild.buildroot.net/results/887dd45b46b217a7525b339cf8f297c94269b2ac/defconfig
Build 85ad33a8d50e8d8d1fd54c01489cbefa8a9ebcf4
==============================================
Status : NOK
Failure reason : libcap-ng-0.6.6
Architecture : microblaze
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 11:51:21
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/85ad33a8d50e8d8d1fd54c01489cbefa8a9ebcf4/build-end.log
Complete log : http://autobuild.buildroot.net/results/85ad33a8d50e8d8d1fd54c01489cbefa8a9ebcf4/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/85ad33a8d50e8d8d1fd54c01489cbefa8a9ebcf4/config
Defconfig : http://autobuild.buildroot.net/results/85ad33a8d50e8d8d1fd54c01489cbefa8a9ebcf4/defconfig
Build 9998bcf8af08b3540aaa51bd4c052aaf361406e9
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-31 11:55:06
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/9998bcf8af08b3540aaa51bd4c052aaf361406e9/build-end.log
Complete log : http://autobuild.buildroot.net/results/9998bcf8af08b3540aaa51bd4c052aaf361406e9/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9998bcf8af08b3540aaa51bd4c052aaf361406e9/config
Defconfig : http://autobuild.buildroot.net/results/9998bcf8af08b3540aaa51bd4c052aaf361406e9/defconfig
Build f55ef5d773007d8db44419aa3122f005c4d6eb02
==============================================
Status : NOK
Failure reason : icu-4.8.1.1
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 12:00:32
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/f55ef5d773007d8db44419aa3122f005c4d6eb02/build-end.log
Complete log : http://autobuild.buildroot.net/results/f55ef5d773007d8db44419aa3122f005c4d6eb02/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/f55ef5d773007d8db44419aa3122f005c4d6eb02/config
Defconfig : http://autobuild.buildroot.net/results/f55ef5d773007d8db44419aa3122f005c4d6eb02/defconfig
Build 682c5c22e9da7d4cfc80277ad2a732a943ee0f82
==============================================
Status : NOK
Failure reason : libmbus-0.7.0
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-31 12:14:23
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/682c5c22e9da7d4cfc80277ad2a732a943ee0f82/build-end.log
Complete log : http://autobuild.buildroot.net/results/682c5c22e9da7d4cfc80277ad2a732a943ee0f82/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/682c5c22e9da7d4cfc80277ad2a732a943ee0f82/config
Defconfig : http://autobuild.buildroot.net/results/682c5c22e9da7d4cfc80277ad2a732a943ee0f82/defconfig
Build eace7c5ec0f49735f75350684bf583957ca25828
==============================================
Status : NOK
Failure reason : libmbus-0.7.0
Architecture : powerpc
Submitted by : Peter Korsgaard (gcc14)
Submitted at : 2012-10-31 12:57:12
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/eace7c5ec0f49735f75350684bf583957ca25828/build-end.log
Complete log : http://autobuild.buildroot.net/results/eace7c5ec0f49735f75350684bf583957ca25828/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/eace7c5ec0f49735f75350684bf583957ca25828/config
Defconfig : http://autobuild.buildroot.net/results/eace7c5ec0f49735f75350684bf583957ca25828/defconfig
Build 23b40ee5d512dc00fb4ce7ce7a97fb6a7ebc108c
==============================================
Status : NOK
Failure reason : qt-4.8.3
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 13:22:36
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/23b40ee5d512dc00fb4ce7ce7a97fb6a7ebc108c/build-end.log
Complete log : http://autobuild.buildroot.net/results/23b40ee5d512dc00fb4ce7ce7a97fb6a7ebc108c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/23b40ee5d512dc00fb4ce7ce7a97fb6a7ebc108c/config
Defconfig : http://autobuild.buildroot.net/results/23b40ee5d512dc00fb4ce7ce7a97fb6a7ebc108c/defconfig
Build 2a7f7d99fcebd620ade79644318abbeea582d978
==============================================
Status : NOK
Failure reason : gpsd-3.7
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 15:29:54
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/2a7f7d99fcebd620ade79644318abbeea582d978/build-end.log
Complete log : http://autobuild.buildroot.net/results/2a7f7d99fcebd620ade79644318abbeea582d978/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2a7f7d99fcebd620ade79644318abbeea582d978/config
Defconfig : http://autobuild.buildroot.net/results/2a7f7d99fcebd620ade79644318abbeea582d978/defconfig
Build cd6fb0199950c005453268a0b6aa847b48a8043b
==============================================
Status : NOK
Failure reason : icu-4.8.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 16:52:48
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/cd6fb0199950c005453268a0b6aa847b48a8043b/build-end.log
Complete log : http://autobuild.buildroot.net/results/cd6fb0199950c005453268a0b6aa847b48a8043b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cd6fb0199950c005453268a0b6aa847b48a8043b/config
Defconfig : http://autobuild.buildroot.net/results/cd6fb0199950c005453268a0b6aa847b48a8043b/defconfig
Build 4b2b6525f0ab8468731d8dd4155cf1fee9718055
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-31 17:08:03
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/4b2b6525f0ab8468731d8dd4155cf1fee9718055/build-end.log
Complete log : http://autobuild.buildroot.net/results/4b2b6525f0ab8468731d8dd4155cf1fee9718055/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4b2b6525f0ab8468731d8dd4155cf1fee9718055/config
Defconfig : http://autobuild.buildroot.net/results/4b2b6525f0ab8468731d8dd4155cf1fee9718055/defconfig
Build 75777d081b5e9d7909bef5144f64d4d8d9b764a4
==============================================
Status : NOK
Failure reason : libdaemon-0.14
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 17:49:00
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/75777d081b5e9d7909bef5144f64d4d8d9b764a4/build-end.log
Complete log : http://autobuild.buildroot.net/results/75777d081b5e9d7909bef5144f64d4d8d9b764a4/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/75777d081b5e9d7909bef5144f64d4d8d9b764a4/config
Defconfig : http://autobuild.buildroot.net/results/75777d081b5e9d7909bef5144f64d4d8d9b764a4/defconfig
Build cf1e2fde862bc05108aeb084a3a39d3723b9780d
==============================================
Status : NOK
Failure reason : mplayer-1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 18:23:44
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/cf1e2fde862bc05108aeb084a3a39d3723b9780d/build-end.log
Complete log : http://autobuild.buildroot.net/results/cf1e2fde862bc05108aeb084a3a39d3723b9780d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/cf1e2fde862bc05108aeb084a3a39d3723b9780d/config
Defconfig : http://autobuild.buildroot.net/results/cf1e2fde862bc05108aeb084a3a39d3723b9780d/defconfig
Build ecf9161f001e903b902bcc4b019569321cdc1f4d
==============================================
Status : NOK
Failure reason : boost-1.49.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 18:27:14
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/ecf9161f001e903b902bcc4b019569321cdc1f4d/build-end.log
Complete log : http://autobuild.buildroot.net/results/ecf9161f001e903b902bcc4b019569321cdc1f4d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ecf9161f001e903b902bcc4b019569321cdc1f4d/config
Defconfig : http://autobuild.buildroot.net/results/ecf9161f001e903b902bcc4b019569321cdc1f4d/defconfig
Build 44787d0eab592ce0da4bbc179c739b3fee9348a4
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 18:28:39
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/44787d0eab592ce0da4bbc179c739b3fee9348a4/build-end.log
Complete log : http://autobuild.buildroot.net/results/44787d0eab592ce0da4bbc179c739b3fee9348a4/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/44787d0eab592ce0da4bbc179c739b3fee9348a4/config
Defconfig : http://autobuild.buildroot.net/results/44787d0eab592ce0da4bbc179c739b3fee9348a4/defconfig
Build 83461684c6c518f2ee299cc06da4d27d4dd032e1
==============================================
Status : NOK
Failure reason : gpsd-3.7
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 18:57:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/83461684c6c518f2ee299cc06da4d27d4dd032e1/build-end.log
Complete log : http://autobuild.buildroot.net/results/83461684c6c518f2ee299cc06da4d27d4dd032e1/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/83461684c6c518f2ee299cc06da4d27d4dd032e1/config
Defconfig : http://autobuild.buildroot.net/results/83461684c6c518f2ee299cc06da4d27d4dd032e1/defconfig
Build c914834e48f49a9786357ad6cfd4e94a51e02ed3
==============================================
Status : NOK
Failure reason : libnspr-4.8.7
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 18:59:46
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/c914834e48f49a9786357ad6cfd4e94a51e02ed3/build-end.log
Complete log : http://autobuild.buildroot.net/results/c914834e48f49a9786357ad6cfd4e94a51e02ed3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c914834e48f49a9786357ad6cfd4e94a51e02ed3/config
Defconfig : http://autobuild.buildroot.net/results/c914834e48f49a9786357ad6cfd4e94a51e02ed3/defconfig
Build 6fe76b09d1f91eea8fcc6ef27942a823b08a93fe
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.25
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 19:00:10
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/6fe76b09d1f91eea8fcc6ef27942a823b08a93fe/build-end.log
Complete log : http://autobuild.buildroot.net/results/6fe76b09d1f91eea8fcc6ef27942a823b08a93fe/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/6fe76b09d1f91eea8fcc6ef27942a823b08a93fe/config
Defconfig : http://autobuild.buildroot.net/results/6fe76b09d1f91eea8fcc6ef27942a823b08a93fe/defconfig
Build 4ddc9b98cb80933dc2e6e0eb7f3dece10835233d
==============================================
Status : NOK
Failure reason : webkit-1.2.7
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-10-31 19:24:59
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/4ddc9b98cb80933dc2e6e0eb7f3dece10835233d/build-end.log
Complete log : http://autobuild.buildroot.net/results/4ddc9b98cb80933dc2e6e0eb7f3dece10835233d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/4ddc9b98cb80933dc2e6e0eb7f3dece10835233d/config
Defconfig : http://autobuild.buildroot.net/results/4ddc9b98cb80933dc2e6e0eb7f3dece10835233d/defconfig
Build 2560d726e25bc3506e5f8ef47e5ed5c47ff35a23
==============================================
Status : NOK
Failure reason : icu-4.8.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 19:29:32
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/2560d726e25bc3506e5f8ef47e5ed5c47ff35a23/build-end.log
Complete log : http://autobuild.buildroot.net/results/2560d726e25bc3506e5f8ef47e5ed5c47ff35a23/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/2560d726e25bc3506e5f8ef47e5ed5c47ff35a23/config
Defconfig : http://autobuild.buildroot.net/results/2560d726e25bc3506e5f8ef47e5ed5c47ff35a23/defconfig
Build 82e0c99451f73238ca0c7e11b28c775212c2c1a7
==============================================
Status : NOK
Failure reason : matchbox-lib-1.9
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 20:40:46
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/82e0c99451f73238ca0c7e11b28c775212c2c1a7/build-end.log
Complete log : http://autobuild.buildroot.net/results/82e0c99451f73238ca0c7e11b28c775212c2c1a7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/82e0c99451f73238ca0c7e11b28c775212c2c1a7/config
Defconfig : http://autobuild.buildroot.net/results/82e0c99451f73238ca0c7e11b28c775212c2c1a7/defconfig
Build 1be2ecd4e4c607b9579f2acdae1c6f42514a4862
==============================================
Status : NOK
Failure reason : lcdapi-v0.3
Architecture : x86_64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 21:03:55
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/1be2ecd4e4c607b9579f2acdae1c6f42514a4862/build-end.log
Complete log : http://autobuild.buildroot.net/results/1be2ecd4e4c607b9579f2acdae1c6f42514a4862/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1be2ecd4e4c607b9579f2acdae1c6f42514a4862/config
Defconfig : http://autobuild.buildroot.net/results/1be2ecd4e4c607b9579f2acdae1c6f42514a4862/defconfig
Build 38a6c0625befba03dd9b898c52937bc5dde7700d
==============================================
Status : NOK
Failure reason : lua-5.1.5
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 21:36:35
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/38a6c0625befba03dd9b898c52937bc5dde7700d/build-end.log
Complete log : http://autobuild.buildroot.net/results/38a6c0625befba03dd9b898c52937bc5dde7700d/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/38a6c0625befba03dd9b898c52937bc5dde7700d/config
Defconfig : http://autobuild.buildroot.net/results/38a6c0625befba03dd9b898c52937bc5dde7700d/defconfig
Build 9237422c718a0700936d38b82f386cb92aa4768f
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.25
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 21:37:00
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/9237422c718a0700936d38b82f386cb92aa4768f/build-end.log
Complete log : http://autobuild.buildroot.net/results/9237422c718a0700936d38b82f386cb92aa4768f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/9237422c718a0700936d38b82f386cb92aa4768f/config
Defconfig : http://autobuild.buildroot.net/results/9237422c718a0700936d38b82f386cb92aa4768f/defconfig
Build df073376b1b54b607da7342a8bfa8cfe0b5c6b33
==============================================
Status : NOK
Failure reason : icu-4.8.1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 22:48:17
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/df073376b1b54b607da7342a8bfa8cfe0b5c6b33/build-end.log
Complete log : http://autobuild.buildroot.net/results/df073376b1b54b607da7342a8bfa8cfe0b5c6b33/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/df073376b1b54b607da7342a8bfa8cfe0b5c6b33/config
Defconfig : http://autobuild.buildroot.net/results/df073376b1b54b607da7342a8bfa8cfe0b5c6b33/defconfig
Build 10e9a1f6165a723a2e913050446a595fdbe75be3
==============================================
Status : NOK
Failure reason : iproute2-3.6.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-10-31 23:33:43
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=e48bf899f6f11dbe19ce62c24c10639d0ad0ef5a
End of log : http://autobuild.buildroot.net/results/10e9a1f6165a723a2e913050446a595fdbe75be3/build-end.log
Complete log : http://autobuild.buildroot.net/results/10e9a1f6165a723a2e913050446a595fdbe75be3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/10e9a1f6165a723a2e913050446a595fdbe75be3/config
Defconfig : http://autobuild.buildroot.net/results/10e9a1f6165a723a2e913050446a595fdbe75be3/defconfig
--
http://autobuild.buildroot.net
^ permalink raw reply
* [Buildroot] cannot compile a program within a uclibc build chroot
From: Eial Czerwacki @ 2012-11-01 7:05 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121101065835.GC17989@sapphire.tkos.co.il>
Hello Baruch,
On 11/01/2012 08:58 AM, Baruch Siach wrote:
> Hi Eial,
>
> On Thu, Nov 01, 2012 at 08:18:04AM +0200, Eial Czerwacki wrote:
>> On 11/01/2012 08:10 AM, Baruch Siach wrote:
>>> Hi Eial,
>>>
>>> On Thu, Nov 01, 2012 at 08:01:59AM +0200, Eial Czerwacki wrote:
>>>> On 11/01/2012 12:09 AM, Arnout Vandecappelle wrote:
>>>>> On 10/31/12 16:11, Eial Czerwacki wrote:
>>>>>> '/usr/lib/gcc/i686-unknown-linux-uclibc/4.6.0/../../../../i686-unknown-linux-uclibc/bin/as':
>>>>>>
>>>>>> execv: No such file or directory
>>>>> This is probably because one of the libraries against which as is linked
>>>>> cannot be found. It's probably linked with the host libc instead of the
>>>>> target libc. You can verify that with 'readelf -d': if you see libc.so.6
>>>>> in there, it's been linked with the host's glibc.
>>>>>
>>>>> Regards,
>>>>> Arnout
>>>> ok, that is stranger, I cannot run readelf from within the chroot
>>>> although it is there, see:
>>> Well, you don't need to. You can use your host's readelf on your target's
>>> binaries to get the same information.
>>>
>>>> sh: can't execute 'readelf': No such file or directory
>>>> ~ # which readelf
>>>> /usr/bin/readelf
>>>> ~ # /usr/bin/readelf
>>>> sh: can't execute '/usr/bin/readelf': No such file or directory
>>> You may get a "No such file or directory" error when one of your NEEDED shared
>>> libraries are missing. Run 'readelf -d' on your terget's readelf, to see your
>>> dependencies.
>>>
>>> baruch
>>>
>> Hello Baruch,
>>
>> thanks for the tip, I think I found my issue, when I configured the
>> image, I've enabled BR2_PREFER_STATIC_LIB as I'm going to use it to
>> create static bins, I guess that if I remove it, it will work, question
>> is, will removing this can prevent me from creating static bins?
> I'm not sure what PREFER_STATIC_LIB has to do with you original problem.
>
> As to creating static binaries when PREFER_STATIC_LIB is disabled, according
> to package/Makefile.in --enable-static is always present in
> $(SHARED_STATIC_LIBS_OPTS). Only when PREFER_STATIC_LIB is enabled
> --disable-shared is also added. In short, you can always build static
> binaries; but enabling PREFER_STATIC_LIB prevents shared binaries building.
>
> baruch
>
this is why:
09:02:59 $ readelf -d
root//usr/lib/gcc/i686-unknown-linux-uclibc/4.6.0/../../../../i686-unknown-linux-uclibc/bin/as
Dynamic section at offset 0xfc488 contains 17 entries:
Tag Type Name/Value
_ 0x00000001 (NEEDED) Shared library: [libc.so.0]_
0x0000000c (INIT) 0x804911c
0x0000000d (FINI) 0x80c4414
0x00000004 (HASH) 0x8048128
0x00000005 (STRTAB) 0x8048ac0
0x00000006 (SYMTAB) 0x8048450
0x0000000a (STRSZ) 827 (bytes)
0x0000000b (SYMENT) 16 (bytes)
0x00000015 (DEBUG) 0x0
0x00000003 (PLTGOT) 0x8145568
0x00000002 (PLTRELSZ) 656 (bytes)
0x00000014 (PLTREL) REL
0x00000017 (JMPREL) 0x8048e8c
0x00000011 (REL) 0x8048dfc
0x00000012 (RELSZ) 144 (bytes)
0x00000013 (RELENT) 8 (bytes)
0x00000000 (NULL) 0x0
09:03:00 $ find root -name "libc*"
find: root/lost+found: Permission denied
root/usr/include/bits/libc-lock.h
_root/usr/lib/libc.a_
root/usr/lib/libcrypt_pic.a
root/usr/lib/libc_pic.a
root/usr/lib/libcurses.a
root/usr/lib/libcrypt.a
from what I can understand, although I've marked it to be static as
possible, not all packages can be linked to static libs, gcc is an
example as it needs libc.so.0 rather than libc.a
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121101/9b07e8a7/attachment.html>
^ permalink raw reply
* [Buildroot] cannot compile a program within a uclibc build chroot
From: Baruch Siach @ 2012-11-01 6:58 UTC (permalink / raw)
To: buildroot
In-Reply-To: <5092141C.8030100@scalemp.com>
Hi Eial,
On Thu, Nov 01, 2012 at 08:18:04AM +0200, Eial Czerwacki wrote:
> On 11/01/2012 08:10 AM, Baruch Siach wrote:
> > Hi Eial,
> >
> > On Thu, Nov 01, 2012 at 08:01:59AM +0200, Eial Czerwacki wrote:
> >> On 11/01/2012 12:09 AM, Arnout Vandecappelle wrote:
> >>> On 10/31/12 16:11, Eial Czerwacki wrote:
> >>>> '/usr/lib/gcc/i686-unknown-linux-uclibc/4.6.0/../../../../i686-unknown-linux-uclibc/bin/as':
> >>>>
> >>>> execv: No such file or directory
> >>> This is probably because one of the libraries against which as is linked
> >>> cannot be found. It's probably linked with the host libc instead of the
> >>> target libc. You can verify that with 'readelf -d': if you see libc.so.6
> >>> in there, it's been linked with the host's glibc.
> >>>
> >>> Regards,
> >>> Arnout
> >> ok, that is stranger, I cannot run readelf from within the chroot
> >> although it is there, see:
> > Well, you don't need to. You can use your host's readelf on your target's
> > binaries to get the same information.
> >
> >> sh: can't execute 'readelf': No such file or directory
> >> ~ # which readelf
> >> /usr/bin/readelf
> >> ~ # /usr/bin/readelf
> >> sh: can't execute '/usr/bin/readelf': No such file or directory
> > You may get a "No such file or directory" error when one of your NEEDED shared
> > libraries are missing. Run 'readelf -d' on your terget's readelf, to see your
> > dependencies.
> >
> > baruch
> >
> Hello Baruch,
>
> thanks for the tip, I think I found my issue, when I configured the
> image, I've enabled BR2_PREFER_STATIC_LIB as I'm going to use it to
> create static bins, I guess that if I remove it, it will work, question
> is, will removing this can prevent me from creating static bins?
I'm not sure what PREFER_STATIC_LIB has to do with you original problem.
As to creating static binaries when PREFER_STATIC_LIB is disabled, according
to package/Makefile.in --enable-static is always present in
$(SHARED_STATIC_LIBS_OPTS). Only when PREFER_STATIC_LIB is enabled
--disable-shared is also added. In short, you can always build static
binaries; but enabling PREFER_STATIC_LIB prevents shared binaries building.
baruch
--
http://baruch.siach.name/blog/ ~. .~ Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
- baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
^ permalink raw reply
* [Buildroot] cannot compile a program within a uclibc build chroot
From: Eial Czerwacki @ 2012-11-01 6:18 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121101061028.GA17989@sapphire.tkos.co.il>
On 11/01/2012 08:10 AM, Baruch Siach wrote:
> Hi Eial,
>
> On Thu, Nov 01, 2012 at 08:01:59AM +0200, Eial Czerwacki wrote:
>> On 11/01/2012 12:09 AM, Arnout Vandecappelle wrote:
>>> On 10/31/12 16:11, Eial Czerwacki wrote:
>>>> '/usr/lib/gcc/i686-unknown-linux-uclibc/4.6.0/../../../../i686-unknown-linux-uclibc/bin/as':
>>>>
>>>> execv: No such file or directory
>>> This is probably because one of the libraries against which as is linked
>>> cannot be found. It's probably linked with the host libc instead of the
>>> target libc. You can verify that with 'readelf -d': if you see libc.so.6
>>> in there, it's been linked with the host's glibc.
>>>
>>> Regards,
>>> Arnout
>> ok, that is stranger, I cannot run readelf from within the chroot
>> although it is there, see:
> Well, you don't need to. You can use your host's readelf on your target's
> binaries to get the same information.
>
>> sh: can't execute 'readelf': No such file or directory
>> ~ # which readelf
>> /usr/bin/readelf
>> ~ # /usr/bin/readelf
>> sh: can't execute '/usr/bin/readelf': No such file or directory
> You may get a "No such file or directory" error when one of your NEEDED shared
> libraries are missing. Run 'readelf -d' on your terget's readelf, to see your
> dependencies.
>
> baruch
>
Hello Baruch,
thanks for the tip, I think I found my issue, when I configured the
image, I've enabled BR2_PREFER_STATIC_LIB as I'm going to use it to
create static bins, I guess that if I remove it, it will work, question
is, will removing this can prevent me from creating static bins?
Thanks,
Eial.
^ permalink raw reply
* [Buildroot] cannot compile a program within a uclibc build chroot
From: Baruch Siach @ 2012-11-01 6:10 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50921057.2080606@scalemp.com>
Hi Eial,
On Thu, Nov 01, 2012 at 08:01:59AM +0200, Eial Czerwacki wrote:
> On 11/01/2012 12:09 AM, Arnout Vandecappelle wrote:
> > On 10/31/12 16:11, Eial Czerwacki wrote:
> >> '/usr/lib/gcc/i686-unknown-linux-uclibc/4.6.0/../../../../i686-unknown-linux-uclibc/bin/as':
> >>
> >> execv: No such file or directory
> >
> > This is probably because one of the libraries against which as is linked
> > cannot be found. It's probably linked with the host libc instead of the
> > target libc. You can verify that with 'readelf -d': if you see libc.so.6
> > in there, it's been linked with the host's glibc.
> >
> > Regards,
> > Arnout
> ok, that is stranger, I cannot run readelf from within the chroot
> although it is there, see:
Well, you don't need to. You can use your host's readelf on your target's
binaries to get the same information.
> sh: can't execute 'readelf': No such file or directory
> ~ # which readelf
> /usr/bin/readelf
> ~ # /usr/bin/readelf
> sh: can't execute '/usr/bin/readelf': No such file or directory
You may get a "No such file or directory" error when one of your NEEDED shared
libraries are missing. Run 'readelf -d' on your terget's readelf, to see your
dependencies.
baruch
--
http://baruch.siach.name/blog/ ~. .~ Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
- baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
^ permalink raw reply
* [Buildroot] cannot compile a program within a uclibc build chroot
From: Eial Czerwacki @ 2012-11-01 6:01 UTC (permalink / raw)
To: buildroot
In-Reply-To: <5091A1B2.7060407@mind.be>
On 11/01/2012 12:09 AM, Arnout Vandecappelle wrote:
> On 10/31/12 16:11, Eial Czerwacki wrote:
>> '/usr/lib/gcc/i686-unknown-linux-uclibc/4.6.0/../../../../i686-unknown-linux-uclibc/bin/as':
>>
>> execv: No such file or directory
>
> This is probably because one of the libraries against which as is linked
> cannot be found. It's probably linked with the host libc instead of the
> target libc. You can verify that with 'readelf -d': if you see libc.so.6
> in there, it's been linked with the host's glibc.
>
> Regards,
> Arnout
ok, that is stranger, I cannot run readelf from within the chroot
although it is there, see:
sh: can't execute 'readelf': No such file or directory
~ # which readelf
/usr/bin/readelf
~ # /usr/bin/readelf
sh: can't execute '/usr/bin/readelf': No such file or directory
the command I use to chroot is sudo /usr/sbin/chroot root /bin/su -, if
I try with sudo /usr/sbin/chroot root /bin/sh -
, I get this: "sh: can't open '-': No such file or directory"
I'm attaching my configs.
Thanks,
Eial.
-------------- next part --------------
#
# Automatically generated make config: don't edit
# Buildroot 2012.08 Configuration
#
BR2_HAVE_DOT_CONFIG=y
# BR2_arm is not set
# BR2_armeb is not set
# BR2_avr32 is not set
# BR2_bfin is not set
BR2_i386=y
# BR2_microblazeel is not set
# BR2_microblazebe is not set
# BR2_mips is not set
# BR2_mipsel is not set
# BR2_powerpc is not set
# BR2_sh is not set
# BR2_sh64 is not set
# BR2_sparc is not set
# BR2_x86_64 is not set
# BR2_x86_generic is not set
# BR2_x86_i386 is not set
# BR2_x86_i486 is not set
# BR2_x86_i586 is not set
BR2_x86_i686=y
# BR2_x86_pentiumpro is not set
# BR2_x86_pentium_mmx is not set
# BR2_x86_pentium_m is not set
# BR2_x86_pentium2 is not set
# BR2_x86_pentium3 is not set
# BR2_x86_pentium4 is not set
# BR2_x86_prescott is not set
# BR2_x86_nocona is not set
# BR2_x86_core2 is not set
# BR2_x86_atom is not set
# BR2_x86_k6 is not set
# BR2_x86_k6_2 is not set
# BR2_x86_athlon is not set
# BR2_x86_athlon_4 is not set
# BR2_x86_opteron is not set
# BR2_x86_opteron_sse3 is not set
# BR2_x86_barcelona is not set
# BR2_x86_geode is not set
# BR2_x86_c3 is not set
# BR2_x86_c32 is not set
# BR2_x86_winchip_c6 is not set
# BR2_x86_winchip2 is not set
BR2_ARCH="i686"
BR2_ENDIAN="LITTLE"
BR2_GCC_TARGET_TUNE="i686"
BR2_GCC_TARGET_ARCH="i686"
#
# Build options
#
#
# Commands
#
BR2_WGET="wget --passive-ftp -nd -t 3"
BR2_SVN="svn"
BR2_BZR="bzr"
BR2_GIT="git"
BR2_LOCALFILES="cp"
BR2_SCP="scp"
BR2_SSH="ssh"
BR2_HG="hg"
BR2_ZCAT="gzip -d -c"
BR2_BZCAT="bzcat"
BR2_XZCAT="xzcat"
BR2_TAR_OPTIONS=""
BR2_DL_DIR="$(TOPDIR)/dl"
BR2_HOST_DIR="$(BASE_DIR)/host"
#
# Mirrors and Download locations
#
BR2_PRIMARY_SITE=""
BR2_BACKUP_SITE="http://sources.buildroot.net/"
BR2_KERNEL_MIRROR="http://www.kernel.org/pub/"
BR2_GNU_MIRROR="http://ftp.gnu.org/pub/gnu"
BR2_DEBIAN_MIRROR="http://ftp.debian.org"
BR2_JLEVEL=0
# BR2_CCACHE is not set
# BR2_DEPRECATED is not set
# BR2_ENABLE_DEBUG is not set
BR2_STRIP_strip=y
# BR2_STRIP_sstrip is not set
# BR2_STRIP_none is not set
BR2_STRIP_EXCLUDE_FILES=""
BR2_STRIP_EXCLUDE_DIRS=""
# BR2_OPTIMIZE_0 is not set
# BR2_OPTIMIZE_1 is not set
# BR2_OPTIMIZE_2 is not set
# BR2_OPTIMIZE_3 is not set
BR2_OPTIMIZE_S=y
BR2_PREFER_STATIC_LIB=y
# BR2_HAVE_DOCUMENTATION is not set
BR2_HAVE_DEVFILES=y
BR2_PACKAGE_OVERRIDE_FILE="$(TOPDIR)/local.mk"
#
# Toolchain
#
BR2_TOOLCHAIN_BUILDROOT=y
# BR2_TOOLCHAIN_EXTERNAL is not set
# BR2_TOOLCHAIN_CTNG is not set
#
# Kernel Header Options
#
BR2_KERNEL_HEADERS_2_6_38=y
# BR2_KERNEL_HEADERS_2_6_39 is not set
# BR2_KERNEL_HEADERS_3_0 is not set
# BR2_KERNEL_HEADERS_3_1 is not set
# BR2_KERNEL_HEADERS_3_2 is not set
# BR2_KERNEL_HEADERS_3_3 is not set
# BR2_KERNEL_HEADERS_3_4 is not set
# BR2_KERNEL_HEADERS_VERSION is not set
# BR2_KERNEL_HEADERS_SNAP is not set
BR2_DEFAULT_KERNEL_HEADERS="2.6.38.8"
#
# uClibc Options
#
# BR2_UCLIBC_VERSION_0_9_31 is not set
# BR2_UCLIBC_VERSION_0_9_32 is not set
BR2_UCLIBC_VERSION_0_9_33=y
# BR2_UCLIBC_VERSION_SNAPSHOT is not set
BR2_UCLIBC_VERSION_STRING="0.9.33.2"
BR2_UCLIBC_CONFIG="toolchain/uClibc/uClibc-0.9.33.config"
# BR2_PTHREAD_DEBUG is not set
# BR2_UCLIBC_INSTALL_TEST_SUITE is not set
#
# Binutils Options
#
# BR2_BINUTILS_VERSION_2_20 is not set
# BR2_BINUTILS_VERSION_2_20_1 is not set
# BR2_BINUTILS_VERSION_2_21 is not set
BR2_BINUTILS_VERSION_2_21_1=y
# BR2_BINUTILS_VERSION_2_22 is not set
BR2_BINUTILS_VERSION="2.21.1"
BR2_BINUTILS_EXTRA_CONFIG_OPTIONS=""
#
# GCC Options
#
# BR2_GCC_VERSION_4_3_X is not set
# BR2_GCC_VERSION_4_4_X is not set
# BR2_GCC_VERSION_4_5_X is not set
BR2_GCC_VERSION_4_6_X=y
# BR2_GCC_VERSION_4_7_X is not set
# BR2_GCC_VERSION_SNAP is not set
BR2_GCC_SUPPORTS_FINEGRAINEDMTUNE=y
BR2_GCC_VERSION="4.6.3"
BR2_EXTRA_GCC_CONFIG_OPTIONS=""
# BR2_INSTALL_OBJC is not set
# BR2_INSTALL_FORTRAN is not set
BR2_GCC_ENABLE_TLS=y
# BR2_GCC_ENABLE_OPENMP is not set
#
# Gdb Options
#
# BR2_PACKAGE_GDB is not set
# BR2_PACKAGE_GDB_SERVER is not set
# BR2_PACKAGE_GDB_HOST is not set
BR2_LARGEFILE=y
BR2_USE_WCHAR=y
BR2_TOOLCHAIN_HAS_THREADS=y
BR2_TOOLCHAIN_HAS_THREADS_DEBUG_IF_NEEDED=y
BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS=y
# BR2_ENABLE_LOCALE_PURGE is not set
BR2_GENERATE_LOCALE=""
BR2_NEEDS_GETTEXT=y
BR2_USE_MMU=y
BR2_TARGET_OPTIMIZATION="-pipe"
BR2_TARGET_LDFLAGS=""
#
# Toolchain Options
#
BR2_TOOLCHAIN_BUILDROOT_LARGEFILE=y
# BR2_TOOLCHAIN_BUILDROOT_INET_IPV6 is not set
# BR2_TOOLCHAIN_BUILDROOT_INET_RPC is not set
BR2_TOOLCHAIN_BUILDROOT_WCHAR=y
# BR2_TOOLCHAIN_BUILDROOT_LOCALE is not set
# BR2_TOOLCHAIN_BUILDROOT_CXX is not set
# BR2_TOOLCHAIN_BUILDROOT_USE_SSP is not set
# BR2_PTHREADS_NONE is not set
# BR2_PTHREADS is not set
# BR2_PTHREADS_OLD is not set
BR2_PTHREADS_NATIVE=y
#
# System configuration
#
BR2_TARGET_GENERIC_HOSTNAME="buildroot"
BR2_TARGET_GENERIC_ISSUE="Welcome to Buildroot"
BR2_ROOTFS_DEVICE_CREATION_STATIC=y
# BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_DEVTMPFS is not set
# BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV is not set
# BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV is not set
BR2_INIT_BUSYBOX=y
# BR2_INIT_SYSV is not set
#
# systemd requires largefile, wchar, IPv6, threads and udev support
#
# BR2_INIT_NONE is not set
BR2_ROOTFS_DEVICE_TABLE="target/generic/device_table.txt"
BR2_ROOTFS_STATIC_DEVICE_TABLE="target/generic/device_table_dev.txt"
BR2_ROOTFS_SKELETON_DEFAULT=y
# BR2_ROOTFS_SKELETON_CUSTOM is not set
BR2_TARGET_GENERIC_GETTY_PORT="ttyS0"
# BR2_TARGET_GENERIC_GETTY_BAUDRATE_KEEP is not set
# BR2_TARGET_GENERIC_GETTY_BAUDRATE_9600 is not set
# BR2_TARGET_GENERIC_GETTY_BAUDRATE_19200 is not set
# BR2_TARGET_GENERIC_GETTY_BAUDRATE_38400 is not set
# BR2_TARGET_GENERIC_GETTY_BAUDRATE_57600 is not set
BR2_TARGET_GENERIC_GETTY_BAUDRATE_115200=y
BR2_TARGET_GENERIC_GETTY_BAUDRATE="115200"
BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW=y
BR2_ROOTFS_POST_BUILD_SCRIPT=""
#
# Package Selection for the target
#
BR2_PACKAGE_BUSYBOX=y
# BR2_BUSYBOX_VERSION_1_19_X is not set
BR2_BUSYBOX_VERSION_1_20_X=y
# BR2_PACKAGE_BUSYBOX_SNAPSHOT is not set
BR2_BUSYBOX_VERSION="1.20.2"
BR2_PACKAGE_BUSYBOX_CONFIG="busybox-1.20.x.config"
# BR2_PACKAGE_BUSYBOX_SHOW_OTHERS is not set
# BR2_PACKAGE_BUSYBOX_WATCHDOG is not set
#
# Audio and video applications
#
# BR2_PACKAGE_ALSA_UTILS is not set
# BR2_PACKAGE_AUMIX is not set
#
# bellagio requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_FAAD2 is not set
# BR2_PACKAGE_FLAC is not set
#
# ffmpeg requires a toolchain with LARGEFILE and IPV6 support
#
# BR2_PACKAGE_GSTREAMER is not set
#
# gst-ffmpeg requires a toolchain with LARGEFILE and IPV6 support
#
# BR2_PACKAGE_LAME is not set
# BR2_PACKAGE_MADPLAY is not set
#
# mpd requires a toolchain with C++ and WCHAR support
#
# BR2_PACKAGE_MPG123 is not set
# BR2_PACKAGE_MPLAYER is not set
# BR2_PACKAGE_MUSEPACK is not set
# BR2_PACKAGE_PULSEAUDIO is not set
# BR2_PACKAGE_VORBIS_TOOLS is not set
# BR2_PACKAGE_WAVPACK is not set
#
# Compressors and decompressors
#
# BR2_PACKAGE_BZIP2 is not set
# BR2_PACKAGE_LZOP is not set
# BR2_PACKAGE_XZ is not set
#
# Debugging, profiling and benchmark
#
#
# bonnie++ requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_DHRYSTONE is not set
# BR2_PACKAGE_DSTAT is not set
# BR2_PACKAGE_DMALLOC is not set
# BR2_PACKAGE_KEXEC is not set
# BR2_PACKAGE_LATENCYTOP is not set
#
# lmbench requires a toolchain with RPC support
#
# BR2_PACKAGE_LTP_TESTSUITE is not set
# BR2_PACKAGE_LTRACE is not set
# BR2_PACKAGE_MEMSTAT is not set
# BR2_PACKAGE_NETPERF is not set
#
# oprofile requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_RAMSPEED is not set
# BR2_PACKAGE_RT_TESTS is not set
# BR2_PACKAGE_STRACE is not set
# BR2_PACKAGE_STRESS is not set
# BR2_PACKAGE_SYSPROF is not set
# BR2_PACKAGE_WHETSTONE is not set
# BR2_PACKAGE_VALGRIND is not set
# BR2_PACKAGE_PV is not set
#
# Development tools
#
BR2_PACKAGE_AUTOCONF=y
BR2_PACKAGE_AUTOMAKE=y
BR2_PACKAGE_BINUTILS=y
BR2_PACKAGE_BINUTILS_TARGET=y
BR2_PACKAGE_BISON=y
# BR2_PACKAGE_BSDIFF is not set
# BR2_PACKAGE_CCACHE is not set
# BR2_PACKAGE_CVS is not set
# BR2_PACKAGE_DISTCC is not set
BR2_PACKAGE_FLEX=y
BR2_PACKAGE_FLEX_LIBFL=y
BR2_PACKAGE_GCC_TARGET=y
# BR2_GCC_CROSS_FORTRAN is not set
# BR2_GCC_CROSS_OBJC is not set
BR2_EXTRA_TARGET_GCC_CONFIG_OPTIONS=""
# BR2_PACKAGE_GETTEXT is not set
# BR2_PACKAGE_LIBINTL is not set
BR2_PACKAGE_GMP=y
#
# gperf requires a toolchain with C++ support enabled
#
BR2_PACKAGE_MAKE=y
BR2_PACKAGE_MPC=y
BR2_PACKAGE_MPFR=y
BR2_PACKAGE_LIBTOOL=y
BR2_PACKAGE_M4=y
# BR2_PACKAGE_PKG_CONFIG is not set
# BR2_PACKAGE_SSTRIP is not set
#
# Games
#
# BR2_PACKAGE_GNUCHESS is not set
# BR2_PACKAGE_PRBOOM is not set
#
# Graphic libraries and applications (graphic/text)
#
#
# Graphic applications
#
# BR2_PACKAGE_RRDTOOL is not set
#
# graphic libraries
#
# BR2_PACKAGE_DIRECTFB is not set
# BR2_PACKAGE_FBDUMP is not set
# BR2_PACKAGE_FBGRAB is not set
#
# fbterm requires a toolchain with C++, WCHAR and locale support
#
# BR2_PACKAGE_FBV is not set
# BR2_PACKAGE_IMAGEMAGICK is not set
# BR2_PACKAGE_SDL is not set
#
# other GUIs
#
# BR2_PACKAGE_EFL is not set
#
# qt requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_XORG7 is not set
#
# X libraries and helper libraries
#
# BR2_PACKAGE_LIBERATION is not set
#
# X Window managers
#
#
# X applications
#
# BR2_PACKAGE_GOB2 is not set
#
# midori requires C++, WCHAR in toolchain and libgtk2
#
# BR2_PACKAGE_VALA is not set
#
# Hardware handling
#
# BR2_PACKAGE_ACPID is not set
# BR2_PACKAGE_CDRKIT is not set
# BR2_PACKAGE_CRAMFS is not set
# BR2_PACKAGE_DBUS is not set
BR2_PACKAGE_DMIDECODE=y
# BR2_PACKAGE_DMRAID is not set
# BR2_PACKAGE_DOSFSTOOLS is not set
# BR2_PACKAGE_E2FSPROGS is not set
# BR2_PACKAGE_EEPROG is not set
# BR2_PACKAGE_FLASHROM is not set
# BR2_PACKAGE_FCONFIG is not set
# BR2_PACKAGE_FIS is not set
# BR2_PACKAGE_FMTOOLS is not set
# BR2_PACKAGE_GADGETFS_TEST is not set
#
# gdisk requires a toolchain with LARGEFILE/WCHAR/C++ support enabled
#
# BR2_PACKAGE_GENEXT2FS is not set
# BR2_PACKAGE_GENROMFS is not set
# BR2_PACKAGE_GPSD is not set
# BR2_PACKAGE_GVFS is not set
# BR2_PACKAGE_HWDATA is not set
# BR2_PACKAGE_I2C_TOOLS is not set
# BR2_PACKAGE_INPUT_EVENT_DAEMON is not set
# BR2_PACKAGE_INPUT_TOOLS is not set
# BR2_PACKAGE_IOSTAT is not set
# BR2_PACKAGE_IRDA_UTILS is not set
# BR2_PACKAGE_KBD is not set
# BR2_PACKAGE_LCDPROC is not set
# BR2_PACKAGE_LINUX_FIRMWARE is not set
# BR2_PACKAGE_LM_SENSORS is not set
#
# lshw requires a toolchain with C++, LARGEFILE & WCHAR support enabled
#
# BR2_PACKAGE_LSUIO is not set
# BR2_PACKAGE_LVM2 is not set
# BR2_PACKAGE_MAKEDEVS is not set
# BR2_PACKAGE_MDADM is not set
# BR2_PACKAGE_MEMTESTER is not set
# BR2_PACKAGE_MINICOM is not set
# BR2_PACKAGE_MTD is not set
# BR2_PACKAGE_NANOCOM is not set
# BR2_PACKAGE_NTFS_3G is not set
# BR2_PACKAGE_OFONO is not set
# BR2_PACKAGE_OPEN2300 is not set
# BR2_PACKAGE_OPENOCD is not set
# BR2_PACKAGE_PARTED is not set
# BR2_PACKAGE_PCIUTILS is not set
# BR2_PACKAGE_PICOCOM is not set
# BR2_PACKAGE_READ_EDID is not set
# BR2_PACKAGE_RNG_TOOLS is not set
# BR2_PACKAGE_SANE_BACKENDS is not set
# BR2_PACKAGE_SDPARM is not set
# BR2_PACKAGE_SETSERIAL is not set
#
# smartmontools requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_SQUASHFS is not set
# BR2_PACKAGE_SREDIRD is not set
# BR2_PACKAGE_SSHFS is not set
# BR2_PACKAGE_STATSERIAL is not set
# BR2_PACKAGE_SYSSTAT is not set
# BR2_PACKAGE_TI_UTILS is not set
# BR2_PACKAGE_UBOOT_TOOLS is not set
#
# udev requires /dev mgmnt set to udev under System configuration
#
# BR2_PACKAGE_UNIONFS is not set
# BR2_PACKAGE_USB_MODESWITCH is not set
# BR2_PACKAGE_USBUTILS is not set
# BR2_PACKAGE_WIPE is not set
# BR2_PACKAGE_XFSPROGS is not set
#
# Interpreter languages and scripting
#
# BR2_PACKAGE_HASERL is not set
# BR2_PACKAGE_LUA is not set
# BR2_PACKAGE_LUAJIT is not set
BR2_PACKAGE_MICROPERL=y
BR2_PACKAGE_MICROPERL_MODULES=""
#
# module bundles
#
# BR2_PACKAGE_MICROPERL_BUNDLE_CGI is not set
# BR2_PACKAGE_PHP is not set
# BR2_PACKAGE_PYTHON is not set
# BR2_PACKAGE_RUBY is not set
# BR2_PACKAGE_TCL is not set
#
# Libraries
#
#
# Audio/Sound
#
# BR2_PACKAGE_ALSA_LIB is not set
#
# audiofile requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_LIBAO is not set
# BR2_PACKAGE_LIBCDAUDIO is not set
# BR2_PACKAGE_LIBCUE is not set
# BR2_PACKAGE_LIBCUEFILE is not set
# BR2_PACKAGE_LIBID3TAG is not set
# BR2_PACKAGE_LIBMAD is not set
# BR2_PACKAGE_LIBMPD is not set
# BR2_PACKAGE_LIBREPLAYGAIN is not set
# BR2_PACKAGE_LIBSAMPLERATE is not set
# BR2_PACKAGE_LIBSNDFILE is not set
# BR2_PACKAGE_LIBVORBIS is not set
# BR2_PACKAGE_PORTAUDIO is not set
# BR2_PACKAGE_SPEEX is not set
#
# taglib requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_TREMOR is not set
#
# webrtc-audio-processing requires a toolchain with C++ support enabled
#
#
# Compression and decompression
#
# BR2_PACKAGE_LIBARCHIVE is not set
# BR2_PACKAGE_LZO is not set
BR2_PACKAGE_ZLIB=y
#
# Crypto
#
# BR2_PACKAGE_BEECRYPT is not set
# BR2_PACKAGE_GNUTLS is not set
# BR2_PACKAGE_LIBGCRYPT is not set
# BR2_PACKAGE_LIBGPG_ERROR is not set
# BR2_PACKAGE_LIBNSS is not set
# BR2_PACKAGE_OCF_LINUX is not set
# BR2_PACKAGE_OPENSSL is not set
# BR2_PACKAGE_POLARSSL is not set
#
# Database
#
# BR2_PACKAGE_BERKELEYDB is not set
#
# Mysql client requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_SQLCIPHER is not set
# BR2_PACKAGE_SQLITE is not set
#
# Filesystem
#
# BR2_PACKAGE_GAMIN is not set
# BR2_PACKAGE_LIBCONFIG is not set
# BR2_PACKAGE_LIBCONFUSE is not set
# BR2_PACKAGE_LIBFUSE is not set
# BR2_PACKAGE_LIBLOCKFILE is not set
# BR2_PACKAGE_LIBSYSFS is not set
#
# Graphics
#
# BR2_PACKAGE_ATK is not set
# BR2_PACKAGE_CAIRO is not set
# BR2_PACKAGE_FONTCONFIG is not set
# BR2_PACKAGE_FREETYPE is not set
# BR2_PACKAGE_IMLIB2 is not set
# BR2_PACKAGE_JPEG is not set
# BR2_PACKAGE_LIBART is not set
# BR2_PACKAGE_LIBDMTX is not set
# BR2_PACKAGE_LIBEXIF is not set
# BR2_PACKAGE_LIBGEOTIFF is not set
# BR2_PACKAGE_GDK_PIXBUF is not set
#
# libgtk2 requires a toolchain with WCHAR and C++ support
#
# BR2_PACKAGE_LIBPNG is not set
#
# libraw requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_LIBSVGTINY is not set
# BR2_PACKAGE_LIBUNGIF is not set
#
# opencv requires a toolchain with C++ and WCHAR support
#
#
# pango requires a toolchain with WCHAR and C++ support
#
# BR2_PACKAGE_PIXMAN is not set
# BR2_PACKAGE_TIFF is not set
#
# webkit requires C++, WCHAR in toolchain and libgtk2
#
#
# zxing requires a toolchain with C++ support
#
#
# Hardware handling
#
# BR2_PACKAGE_LIBAIO is not set
# BR2_PACKAGE_LIBRAW1394 is not set
# BR2_PACKAGE_TSLIB is not set
# BR2_PACKAGE_LIBFREEFARE is not set
# BR2_PACKAGE_LIBFTDI is not set
# BR2_PACKAGE_LIBHID is not set
# BR2_PACKAGE_LIBIQRF is not set
# BR2_PACKAGE_LIBNFC is not set
# BR2_PACKAGE_LIBNFC_LLCP is not set
# BR2_PACKAGE_LIBUSB is not set
# BR2_PACKAGE_LIBV4L is not set
#
# Javascript
#
# BR2_PACKAGE_EXPLORERCANVAS is not set
# BR2_PACKAGE_FLOT is not set
# BR2_PACKAGE_JQUERY is not set
# BR2_PACKAGE_JQUERY_SPARKLINE is not set
# BR2_PACKAGE_JQUERY_VALIDATION is not set
# BR2_PACKAGE_JSMIN is not set
#
# Multimedia
#
# BR2_PACKAGE_LIBDVDREAD is not set
# BR2_PACKAGE_LIBDVDNAV is not set
# BR2_PACKAGE_LIBMMS is not set
# BR2_PACKAGE_LIBMPEG2 is not set
# BR2_PACKAGE_LIBOGG is not set
# BR2_PACKAGE_LIBPLAYER is not set
# BR2_PACKAGE_LIBTHEORA is not set
#
# Live555 needs C++ compiler
#
#
# mediastreamer requires a toolchain with C++ support enabled
#
#
# Networking
#
# BR2_PACKAGE_GLIB_NETWORKING is not set
# BR2_PACKAGE_LIBCGI is not set
#
# libcgicc requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_LIBCURL is not set
# BR2_PACKAGE_LIBDNET is not set
# BR2_PACKAGE_LIBESMTP is not set
# BR2_PACKAGE_LIBEXOSIP2 is not set
# BR2_PACKAGE_LIBFCGI is not set
# BR2_PACKAGE_LIBIDN is not set
# BR2_PACKAGE_LIBOAUTH is not set
# BR2_PACKAGE_LIBMICROHTTPD is not set
# BR2_PACKAGE_NEON is not set
# BR2_PACKAGE_LIBMNL is not set
# BR2_PACKAGE_LIBMODBUS is not set
# BR2_PACKAGE_LIBMBUS is not set
# BR2_PACKAGE_LIBNETFILTER_CONNTRACK is not set
# BR2_PACKAGE_LIBNETFILTER_CTTIMEOUT is not set
# BR2_PACKAGE_LIBNFNETLINK is not set
# BR2_PACKAGE_LIBNL is not set
#
# liboping requires a toolchain with IPv6 support enabled
#
# BR2_PACKAGE_LIBPCAP is not set
# BR2_PACKAGE_LIBOSIP2 is not set
# BR2_PACKAGE_LIBRSYNC is not set
# BR2_PACKAGE_LIBSOUP is not set
#
# libtorrent requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_LIBUPNP is not set
# BR2_PACKAGE_LIBVNCSERVER is not set
# BR2_PACKAGE_ORTP is not set
#
# zeromq requires a toolchain with C++, LARGEFILE + WCHAR support
#
#
# Other
#
# BR2_PACKAGE_FFTW is not set
# BR2_PACKAGE_LIBARGTABLE2 is not set
# BR2_PACKAGE_ARGP_STANDALONE is not set
#
# boost requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_LIBATOMIC_OPS is not set
# BR2_PACKAGE_LIBCAP is not set
# BR2_PACKAGE_LIBCAP_NG is not set
# BR2_PACKAGE_LIBDAEMON is not set
# BR2_PACKAGE_LIBELF is not set
# BR2_PACKAGE_LIBEVENT is not set
# BR2_PACKAGE_LIBEV is not set
# BR2_PACKAGE_LIBFFI is not set
# BR2_PACKAGE_LIBGLIB2 is not set
# BR2_PACKAGE_LIBICAL is not set
# BR2_PACKAGE_LIBNSPR is not set
#
# libsigc++ requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_LIBTPL is not set
# BR2_PACKAGE_LIBURCU is not set
# BR2_PACKAGE_LTTNG_LIBUST is not set
# BR2_PACKAGE_ORC is not set
#
# poco requires a toolchain with WCHAR and C++ support
#
#
# protobuf requires a toolchain with C++ support enabled
#
#
# Text and terminal handling
#
#
# enchant requires a toolchain with C++ and WCHAR support enabled
#
#
# icu requires a toolchain with C++ support and WCHAR enabled
#
# BR2_PACKAGE_LIBICONV is not set
BR2_PACKAGE_NCURSES=y
# BR2_PACKAGE_NCURSES_TARGET_PANEL is not set
# BR2_PACKAGE_NCURSES_TARGET_FORM is not set
# BR2_PACKAGE_NCURSES_TARGET_MENU is not set
# BR2_PACKAGE_NEWT is not set
# BR2_PACKAGE_PCRE is not set
# BR2_PACKAGE_POPT is not set
# BR2_PACKAGE_READLINE is not set
# BR2_PACKAGE_SLANG is not set
#
# JSON/XML
#
# BR2_PACKAGE_CJSON is not set
# BR2_PACKAGE_EXPAT is not set
# BR2_PACKAGE_EZXML is not set
# BR2_PACKAGE_JSON_C is not set
# BR2_PACKAGE_LIBROXML is not set
# BR2_PACKAGE_LIBXML2 is not set
# BR2_PACKAGE_LIBXSLT is not set
# BR2_PACKAGE_LIBYAML is not set
# BR2_PACKAGE_MXML is not set
#
# xerces-c++ requires a toolchain with C++ and WCHAR support enabled
#
# BR2_PACKAGE_YAJL is not set
#
# Miscellaneous
#
# BR2_PACKAGE_COLLECTD is not set
# BR2_PACKAGE_EMPTY is not set
# BR2_PACKAGE_MOBILE_BROADBAND_PROVIDER_INFO is not set
# BR2_PACKAGE_SHARED_MIME_INFO is not set
# BR2_PACKAGE_SOUND_THEME_BOREALIS is not set
# BR2_PACKAGE_SOUND_THEME_FREEDESKTOP is not set
#
# Networking applications
#
# BR2_PACKAGE_ARGUS is not set
# BR2_PACKAGE_AVAHI is not set
# BR2_PACKAGE_AXEL is not set
# BR2_PACKAGE_BLUEZ_UTILS is not set
#
# bmon requires a toolchain with IPv6 support
#
# BR2_PACKAGE_BRIDGE_UTILS is not set
# BR2_PACKAGE_CAN_UTILS is not set
#
# connman needs a toolchain with IPv6, WCHAR, thread and resolver support
#
#
# ctorrent requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_CIFS_UTILS is not set
#
# conntrack-tools requires a toolchain with IPV6 and LARGEFILE support
#
# BR2_PACKAGE_CUPS is not set
# BR2_PACKAGE_DHCPDUMP is not set
# BR2_PACKAGE_DNSMASQ is not set
# BR2_PACKAGE_DROPBEAR is not set
#
# ebtables requires a toolchain with IPv6 support
#
# BR2_PACKAGE_ETHTOOL is not set
# BR2_PACKAGE_HEIRLOOM_MAILX is not set
# BR2_PACKAGE_HOSTAPD is not set
# BR2_PACKAGE_INADYN is not set
#
# iperf requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_IPROUTE2 is not set
# BR2_PACKAGE_IPSEC_TOOLS is not set
# BR2_PACKAGE_IPSET is not set
# BR2_PACKAGE_IPTABLES is not set
# BR2_PACKAGE_IW is not set
#
# Kismet requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_LINKS is not set
#
# linphone requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_LRZSZ is not set
# BR2_PACKAGE_MII_DIAG is not set
# BR2_PACKAGE_MROUTED is not set
# BR2_PACKAGE_MSMTP is not set
# BR2_PACKAGE_MUTT is not set
# BR2_PACKAGE_NBD is not set
# BR2_PACKAGE_NCFTP is not set
#
# ndisc6 requires a toolchain with IPv6 support
#
# BR2_PACKAGE_NETATALK is not set
# BR2_PACKAGE_NETPLUG is not set
# BR2_PACKAGE_NETSNMP is not set
# BR2_PACKAGE_NETSTAT_NAT is not set
#
# NetworkManager requires a toolchain with IPV6, LARGEFILE, WCHAR and thread support
#
# BR2_PACKAGE_NOIP is not set
#
# nfs-utils requires a toolchain with RPC and LARGEFILE support
#
# BR2_PACKAGE_NGIRCD is not set
# BR2_PACKAGE_NGREP is not set
# BR2_PACKAGE_NTP is not set
# BR2_PACKAGE_NUTTCP is not set
#
# olsr requires a toolchain with IPv6 support
#
# BR2_PACKAGE_OPENNTPD is not set
# BR2_PACKAGE_OPENSSH is not set
# BR2_PACKAGE_OPENSWAN is not set
# BR2_PACKAGE_OPENVPN is not set
#
# portmap requires a toolchain with RPC support
#
# BR2_PACKAGE_PPPD is not set
# BR2_PACKAGE_PPTP_LINUX is not set
# BR2_PACKAGE_PROFTPD is not set
# BR2_PACKAGE_QUAGGA is not set
#
# radvd requires a toolchain with IPV6 support
#
# BR2_PACKAGE_RSH_REDONE is not set
# BR2_PACKAGE_RSYNC is not set
#
# rtorrent requires a toolchain with C++ and WCHAR support
#
# BR2_PACKAGE_SAMBA is not set
# BR2_PACKAGE_SER2NET is not set
# BR2_PACKAGE_SOCAT is not set
# BR2_PACKAGE_SOCKETCAND is not set
# BR2_PACKAGE_SPAWN_FCGI is not set
#
# Squid requires a toolchain with C++ and IPv6 support enabled
#
# BR2_PACKAGE_STUNNEL is not set
# BR2_PACKAGE_TCPDUMP is not set
# BR2_PACKAGE_TCPREPLAY is not set
# BR2_PACKAGE_TN5250 is not set
#
# Transmission requires a toolchain with IPv6 support
#
# BR2_PACKAGE_UDPCAST is not set
# BR2_PACKAGE_USHARE is not set
# BR2_PACKAGE_VPNC is not set
# BR2_PACKAGE_VSFTPD is not set
# BR2_PACKAGE_VTUN is not set
# BR2_PACKAGE_WIRELESS_TOOLS is not set
# BR2_PACKAGE_WPA_SUPPLICANT is not set
# BR2_PACKAGE_XINETD is not set
# BR2_PACKAGE_XL2TP is not set
#
# Package managers
#
# BR2_PACKAGE_IPKG is not set
# BR2_PACKAGE_OPKG is not set
#
# Real-Time
#
# BR2_PACKAGE_XENOMAI is not set
#
# Shell and utilities
#
# BR2_PACKAGE_AT is not set
# BR2_PACKAGE_DIALOG is not set
BR2_PACKAGE_FILE=y
# BR2_PACKAGE_INOTIFY_TOOLS is not set
# BR2_PACKAGE_LOCKFILE_PROGS is not set
# BR2_PACKAGE_LOGROTATE is not set
# BR2_PACKAGE_LOGSURFER is not set
# BR2_PACKAGE_SCREEN is not set
# BR2_PACKAGE_SUDO is not set
# BR2_PACKAGE_XMLSTARLET is not set
#
# System tools
#
# BR2_PACKAGE_ACL is not set
# BR2_PACKAGE_ATTR is not set
# BR2_PACKAGE_BWM_NG is not set
# BR2_PACKAGE_HTOP is not set
# BR2_PACKAGE_KMOD is not set
# BR2_PACKAGE_MONIT is not set
#
# quota requires a toolchain with RPC + LARGEFILE + WCHAR support
#
#
# systemd not available (depends on /dev management with udev and ipv6 support, and thread support in toolchain)
#
# BR2_PACKAGE_UTIL_LINUX is not set
#
# Text editors and viewers
#
# BR2_PACKAGE_ED is not set
BR2_PACKAGE_NANO=y
BR2_PACKAGE_NANO_TINY=y
# BR2_PACKAGE_UEMACS is not set
#
# Host utilities
#
# BR2_PACKAGE_HOST_DFU_UTIL is not set
# BR2_PACKAGE_HOST_LPC3250LOADER is not set
# BR2_PACKAGE_HOST_OPENOCD is not set
# BR2_PACKAGE_HOST_SAM_BA is not set
# BR2_PACKAGE_HOST_UBOOT_TOOLS is not set
#
# Filesystem images
#
# BR2_TARGET_ROOTFS_CRAMFS is not set
# BR2_TARGET_ROOTFS_CLOOP is not set
BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_BLOCKS=0
BR2_TARGET_ROOTFS_EXT2_INODES=0
BR2_TARGET_ROOTFS_EXT2_RESBLKS=0
BR2_TARGET_ROOTFS_EXT2_NONE=y
# BR2_TARGET_ROOTFS_EXT2_GZIP is not set
# BR2_TARGET_ROOTFS_EXT2_BZIP2 is not set
# BR2_TARGET_ROOTFS_EXT2_LZMA is not set
# BR2_TARGET_ROOTFS_JFFS2 is not set
# BR2_TARGET_ROOTFS_UBIFS is not set
# BR2_TARGET_ROOTFS_SQUASHFS is not set
BR2_TARGET_ROOTFS_TAR=y
BR2_TARGET_ROOTFS_TAR_NONE=y
# BR2_TARGET_ROOTFS_TAR_GZIP is not set
# BR2_TARGET_ROOTFS_TAR_BZIP2 is not set
# BR2_TARGET_ROOTFS_TAR_LZMA is not set
BR2_TARGET_ROOTFS_TAR_OPTIONS=""
# BR2_TARGET_ROOTFS_CPIO is not set
#
# iso image requires a Linux kernel to be built
#
#
# initramfs requires a Linux kernel to be built
#
# BR2_TARGET_ROOTFS_ROMFS is not set
#
# Bootloaders
#
# BR2_TARGET_BAREBOX is not set
# BR2_TARGET_GRUB is not set
# BR2_TARGET_SYSLINUX is not set
# BR2_TARGET_UBOOT is not set
#
# Kernel
#
# BR2_LINUX_KERNEL is not set
-------------- next part --------------
#
# Automatically generated make config: don't edit
# Busybox version: 1.20.2
# Wed Oct 31 15:38:17 2012
#
CONFIG_HAVE_DOT_CONFIG=y
#
# Busybox Settings
#
#
# General Configuration
#
CONFIG_DESKTOP=y
# CONFIG_EXTRA_COMPAT is not set
CONFIG_INCLUDE_SUSv2=y
# CONFIG_USE_PORTABLE_CODE is not set
CONFIG_PLATFORM_LINUX=y
CONFIG_FEATURE_BUFFERS_USE_MALLOC=y
# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set
# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set
CONFIG_SHOW_USAGE=y
CONFIG_FEATURE_VERBOSE_USAGE=y
CONFIG_FEATURE_COMPRESS_USAGE=y
CONFIG_FEATURE_INSTALLER=y
# CONFIG_INSTALL_NO_USR is not set
# CONFIG_LOCALE_SUPPORT is not set
CONFIG_UNICODE_SUPPORT=y
# CONFIG_UNICODE_USING_LOCALE is not set
# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set
CONFIG_SUBST_WCHAR=63
CONFIG_LAST_SUPPORTED_WCHAR=767
# CONFIG_UNICODE_COMBINING_WCHARS is not set
# CONFIG_UNICODE_WIDE_WCHARS is not set
# CONFIG_UNICODE_BIDI_SUPPORT is not set
# CONFIG_UNICODE_NEUTRAL_TABLE is not set
# CONFIG_UNICODE_PRESERVE_BROKEN is not set
CONFIG_LONG_OPTS=y
CONFIG_FEATURE_DEVPTS=y
# CONFIG_FEATURE_CLEAN_UP is not set
CONFIG_FEATURE_UTMP=y
CONFIG_FEATURE_WTMP=y
CONFIG_FEATURE_PIDFILE=y
CONFIG_FEATURE_SUID=y
CONFIG_FEATURE_SUID_CONFIG=y
CONFIG_FEATURE_SUID_CONFIG_QUIET=y
# CONFIG_SELINUX is not set
# CONFIG_FEATURE_PREFER_APPLETS is not set
CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe"
CONFIG_FEATURE_SYSLOG=y
# CONFIG_FEATURE_HAVE_RPC is not set
#
# Build Options
#
CONFIG_STATIC=y
# CONFIG_PIE is not set
# CONFIG_NOMMU is not set
# CONFIG_BUILD_LIBBUSYBOX is not set
# CONFIG_FEATURE_INDIVIDUAL is not set
# CONFIG_FEATURE_SHARED_BUSYBOX is not set
CONFIG_LFS=y
CONFIG_CROSS_COMPILER_PREFIX=""
CONFIG_SYSROOT=""
CONFIG_EXTRA_CFLAGS=""
CONFIG_EXTRA_LDFLAGS=""
CONFIG_EXTRA_LDLIBS=""
#
# Debugging Options
#
# CONFIG_DEBUG is not set
# CONFIG_DEBUG_PESSIMIZE is not set
# CONFIG_WERROR is not set
CONFIG_NO_DEBUG_LIB=y
# CONFIG_DMALLOC is not set
# CONFIG_EFENCE is not set
#
# Installation Options ("make install" behavior)
#
CONFIG_INSTALL_APPLET_SYMLINKS=y
# CONFIG_INSTALL_APPLET_HARDLINKS is not set
# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set
# CONFIG_INSTALL_APPLET_DONT is not set
# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set
# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set
# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set
CONFIG_PREFIX="./_install"
#
# Busybox Library Tuning
#
# CONFIG_FEATURE_SYSTEMD is not set
CONFIG_FEATURE_RTMINMAX=y
CONFIG_PASSWORD_MINLEN=6
CONFIG_MD5_SMALL=1
CONFIG_FEATURE_FAST_TOP=y
# CONFIG_FEATURE_ETC_NETWORKS is not set
CONFIG_FEATURE_USE_TERMIOS=y
CONFIG_FEATURE_EDITING=y
CONFIG_FEATURE_EDITING_MAX_LEN=1024
# CONFIG_FEATURE_EDITING_VI is not set
CONFIG_FEATURE_EDITING_HISTORY=255
CONFIG_FEATURE_EDITING_SAVEHISTORY=y
# CONFIG_FEATURE_EDITING_SAVE_ON_EXIT is not set
CONFIG_FEATURE_REVERSE_SEARCH=y
CONFIG_FEATURE_TAB_COMPLETION=y
# CONFIG_FEATURE_USERNAME_COMPLETION is not set
CONFIG_FEATURE_EDITING_FANCY_PROMPT=y
# CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set
CONFIG_FEATURE_NON_POSIX_CP=y
# CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set
CONFIG_FEATURE_COPYBUF_KB=4
CONFIG_FEATURE_SKIP_ROOTFS=y
# CONFIG_MONOTONIC_SYSCALL is not set
CONFIG_IOCTL_HEX2STR_ERROR=y
CONFIG_FEATURE_HWIB=y
#
# Applets
#
#
# Archival Utilities
#
CONFIG_FEATURE_SEAMLESS_XZ=y
CONFIG_FEATURE_SEAMLESS_LZMA=y
CONFIG_FEATURE_SEAMLESS_BZ2=y
CONFIG_FEATURE_SEAMLESS_GZ=y
# CONFIG_FEATURE_SEAMLESS_Z is not set
# CONFIG_AR is not set
# CONFIG_FEATURE_AR_LONG_FILENAMES is not set
# CONFIG_FEATURE_AR_CREATE is not set
CONFIG_BUNZIP2=y
CONFIG_BZIP2=y
CONFIG_CPIO=y
CONFIG_FEATURE_CPIO_O=y
CONFIG_FEATURE_CPIO_P=y
# CONFIG_DPKG is not set
# CONFIG_DPKG_DEB is not set
# CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY is not set
CONFIG_GUNZIP=y
CONFIG_GZIP=y
CONFIG_FEATURE_GZIP_LONG_OPTIONS=y
CONFIG_GZIP_FAST=0
CONFIG_LZOP=y
# CONFIG_LZOP_COMPR_HIGH is not set
CONFIG_RPM2CPIO=y
CONFIG_RPM=y
CONFIG_TAR=y
CONFIG_FEATURE_TAR_CREATE=y
CONFIG_FEATURE_TAR_AUTODETECT=y
CONFIG_FEATURE_TAR_FROM=y
CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y
CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY=y
CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y
CONFIG_FEATURE_TAR_LONG_OPTIONS=y
CONFIG_FEATURE_TAR_TO_COMMAND=y
CONFIG_FEATURE_TAR_UNAME_GNAME=y
CONFIG_FEATURE_TAR_NOPRESERVE_TIME=y
# CONFIG_FEATURE_TAR_SELINUX is not set
# CONFIG_UNCOMPRESS is not set
CONFIG_UNLZMA=y
# CONFIG_FEATURE_LZMA_FAST is not set
CONFIG_LZMA=y
CONFIG_UNXZ=y
CONFIG_XZ=y
CONFIG_UNZIP=y
#
# Coreutils
#
CONFIG_BASENAME=y
CONFIG_CAT=y
CONFIG_DATE=y
CONFIG_FEATURE_DATE_ISOFMT=y
# CONFIG_FEATURE_DATE_NANO is not set
CONFIG_FEATURE_DATE_COMPAT=y
CONFIG_HOSTID=y
CONFIG_ID=y
CONFIG_GROUPS=y
CONFIG_TEST=y
CONFIG_FEATURE_TEST_64=y
CONFIG_TOUCH=y
CONFIG_FEATURE_TOUCH_SUSV3=y
CONFIG_TR=y
CONFIG_FEATURE_TR_CLASSES=y
CONFIG_FEATURE_TR_EQUIV=y
CONFIG_BASE64=y
CONFIG_WHO=y
CONFIG_USERS=y
CONFIG_CAL=y
CONFIG_CATV=y
CONFIG_CHGRP=y
CONFIG_CHMOD=y
CONFIG_CHOWN=y
CONFIG_FEATURE_CHOWN_LONG_OPTIONS=y
CONFIG_CHROOT=y
CONFIG_CKSUM=y
CONFIG_COMM=y
CONFIG_CP=y
CONFIG_FEATURE_CP_LONG_OPTIONS=y
CONFIG_CUT=y
CONFIG_DD=y
CONFIG_FEATURE_DD_SIGNAL_HANDLING=y
CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y
CONFIG_FEATURE_DD_IBS_OBS=y
CONFIG_DF=y
CONFIG_FEATURE_DF_FANCY=y
CONFIG_DIRNAME=y
CONFIG_DOS2UNIX=y
CONFIG_UNIX2DOS=y
CONFIG_DU=y
CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y
CONFIG_ECHO=y
CONFIG_FEATURE_FANCY_ECHO=y
CONFIG_ENV=y
CONFIG_FEATURE_ENV_LONG_OPTIONS=y
CONFIG_EXPAND=y
CONFIG_FEATURE_EXPAND_LONG_OPTIONS=y
CONFIG_EXPR=y
CONFIG_EXPR_MATH_SUPPORT_64=y
CONFIG_FALSE=y
CONFIG_FOLD=y
CONFIG_FSYNC=y
CONFIG_HEAD=y
CONFIG_FEATURE_FANCY_HEAD=y
CONFIG_INSTALL=y
CONFIG_FEATURE_INSTALL_LONG_OPTIONS=y
CONFIG_LN=y
CONFIG_LOGNAME=y
CONFIG_LS=y
CONFIG_FEATURE_LS_FILETYPES=y
CONFIG_FEATURE_LS_FOLLOWLINKS=y
CONFIG_FEATURE_LS_RECURSIVE=y
CONFIG_FEATURE_LS_SORTFILES=y
CONFIG_FEATURE_LS_TIMESTAMPS=y
CONFIG_FEATURE_LS_USERNAME=y
CONFIG_FEATURE_LS_COLOR=y
CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y
CONFIG_MD5SUM=y
CONFIG_MKDIR=y
CONFIG_FEATURE_MKDIR_LONG_OPTIONS=y
CONFIG_MKFIFO=y
CONFIG_MKNOD=y
CONFIG_MV=y
CONFIG_FEATURE_MV_LONG_OPTIONS=y
CONFIG_NICE=y
CONFIG_NOHUP=y
CONFIG_OD=y
CONFIG_PRINTENV=y
CONFIG_PRINTF=y
CONFIG_PWD=y
CONFIG_READLINK=y
CONFIG_FEATURE_READLINK_FOLLOW=y
CONFIG_REALPATH=y
CONFIG_RM=y
CONFIG_RMDIR=y
CONFIG_FEATURE_RMDIR_LONG_OPTIONS=y
CONFIG_SEQ=y
CONFIG_SHA1SUM=y
CONFIG_SHA256SUM=y
CONFIG_SHA512SUM=y
CONFIG_SLEEP=y
CONFIG_FEATURE_FANCY_SLEEP=y
CONFIG_FEATURE_FLOAT_SLEEP=y
CONFIG_SORT=y
CONFIG_FEATURE_SORT_BIG=y
CONFIG_SPLIT=y
CONFIG_FEATURE_SPLIT_FANCY=y
CONFIG_STAT=y
CONFIG_FEATURE_STAT_FORMAT=y
CONFIG_STTY=y
CONFIG_SUM=y
CONFIG_SYNC=y
CONFIG_TAC=y
CONFIG_TAIL=y
CONFIG_FEATURE_FANCY_TAIL=y
CONFIG_TEE=y
CONFIG_FEATURE_TEE_USE_BLOCK_IO=y
CONFIG_TRUE=y
CONFIG_TTY=y
CONFIG_UNAME=y
CONFIG_UNEXPAND=y
CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS=y
CONFIG_UNIQ=y
CONFIG_USLEEP=y
CONFIG_UUDECODE=y
CONFIG_UUENCODE=y
CONFIG_WC=y
CONFIG_FEATURE_WC_LARGE=y
CONFIG_WHOAMI=y
CONFIG_YES=y
#
# Common options for cp and mv
#
CONFIG_FEATURE_PRESERVE_HARDLINKS=y
#
# Common options for ls, more and telnet
#
CONFIG_FEATURE_AUTOWIDTH=y
#
# Common options for df, du, ls
#
CONFIG_FEATURE_HUMAN_READABLE=y
#
# Common options for md5sum, sha1sum, sha256sum, sha512sum
#
CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y
#
# Console Utilities
#
CONFIG_CHVT=y
CONFIG_FGCONSOLE=y
CONFIG_CLEAR=y
CONFIG_DEALLOCVT=y
CONFIG_DUMPKMAP=y
CONFIG_KBD_MODE=y
CONFIG_LOADFONT=y
CONFIG_LOADKMAP=y
CONFIG_OPENVT=y
CONFIG_RESET=y
CONFIG_RESIZE=y
CONFIG_FEATURE_RESIZE_PRINT=y
CONFIG_SETCONSOLE=y
CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS=y
CONFIG_SETFONT=y
CONFIG_FEATURE_SETFONT_TEXTUAL_MAP=y
CONFIG_DEFAULT_SETFONT_DIR=""
CONFIG_SETKEYCODES=y
CONFIG_SETLOGCONS=y
CONFIG_SHOWKEY=y
#
# Common options for loadfont and setfont
#
CONFIG_FEATURE_LOADFONT_PSF2=y
CONFIG_FEATURE_LOADFONT_RAW=y
#
# Debian Utilities
#
CONFIG_MKTEMP=y
CONFIG_PIPE_PROGRESS=y
CONFIG_RUN_PARTS=y
CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS=y
CONFIG_FEATURE_RUN_PARTS_FANCY=y
CONFIG_START_STOP_DAEMON=y
CONFIG_FEATURE_START_STOP_DAEMON_FANCY=y
CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS=y
CONFIG_WHICH=y
#
# Editors
#
CONFIG_PATCH=y
CONFIG_VI=y
CONFIG_FEATURE_VI_MAX_LEN=4096
# CONFIG_FEATURE_VI_8BIT is not set
CONFIG_FEATURE_VI_COLON=y
CONFIG_FEATURE_VI_YANKMARK=y
CONFIG_FEATURE_VI_SEARCH=y
# CONFIG_FEATURE_VI_REGEX_SEARCH is not set
CONFIG_FEATURE_VI_USE_SIGNALS=y
CONFIG_FEATURE_VI_DOT_CMD=y
CONFIG_FEATURE_VI_READONLY=y
CONFIG_FEATURE_VI_SETOPTS=y
CONFIG_FEATURE_VI_SET=y
CONFIG_FEATURE_VI_WIN_RESIZE=y
CONFIG_FEATURE_VI_ASK_TERMINAL=y
CONFIG_FEATURE_VI_OPTIMIZE_CURSOR=y
CONFIG_AWK=y
CONFIG_FEATURE_AWK_LIBM=y
CONFIG_CMP=y
CONFIG_DIFF=y
CONFIG_FEATURE_DIFF_LONG_OPTIONS=y
CONFIG_FEATURE_DIFF_DIR=y
CONFIG_ED=y
CONFIG_SED=y
CONFIG_FEATURE_ALLOW_EXEC=y
#
# Finding Utilities
#
CONFIG_FIND=y
CONFIG_FEATURE_FIND_PRINT0=y
CONFIG_FEATURE_FIND_MTIME=y
CONFIG_FEATURE_FIND_MMIN=y
CONFIG_FEATURE_FIND_PERM=y
CONFIG_FEATURE_FIND_TYPE=y
CONFIG_FEATURE_FIND_XDEV=y
CONFIG_FEATURE_FIND_MAXDEPTH=y
CONFIG_FEATURE_FIND_NEWER=y
CONFIG_FEATURE_FIND_INUM=y
CONFIG_FEATURE_FIND_EXEC=y
CONFIG_FEATURE_FIND_USER=y
CONFIG_FEATURE_FIND_GROUP=y
CONFIG_FEATURE_FIND_NOT=y
CONFIG_FEATURE_FIND_DEPTH=y
CONFIG_FEATURE_FIND_PAREN=y
CONFIG_FEATURE_FIND_SIZE=y
CONFIG_FEATURE_FIND_PRUNE=y
CONFIG_FEATURE_FIND_DELETE=y
CONFIG_FEATURE_FIND_PATH=y
CONFIG_FEATURE_FIND_REGEX=y
# CONFIG_FEATURE_FIND_CONTEXT is not set
CONFIG_FEATURE_FIND_LINKS=y
CONFIG_GREP=y
CONFIG_FEATURE_GREP_EGREP_ALIAS=y
CONFIG_FEATURE_GREP_FGREP_ALIAS=y
CONFIG_FEATURE_GREP_CONTEXT=y
CONFIG_XARGS=y
CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y
CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y
CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y
CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y
#
# Init Utilities
#
CONFIG_BOOTCHARTD=y
CONFIG_FEATURE_BOOTCHARTD_BLOATED_HEADER=y
CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE=y
CONFIG_HALT=y
# CONFIG_FEATURE_CALL_TELINIT is not set
CONFIG_TELINIT_PATH=""
CONFIG_INIT=y
CONFIG_FEATURE_USE_INITTAB=y
# CONFIG_FEATURE_KILL_REMOVED is not set
CONFIG_FEATURE_KILL_DELAY=0
CONFIG_FEATURE_INIT_SCTTY=y
CONFIG_FEATURE_INIT_SYSLOG=y
CONFIG_FEATURE_EXTRA_QUIET=y
CONFIG_FEATURE_INIT_COREDUMPS=y
CONFIG_FEATURE_INITRD=y
CONFIG_INIT_TERMINAL_TYPE="linux"
CONFIG_MESG=y
CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP=y
#
# Login/Password Management Utilities
#
CONFIG_ADD_SHELL=y
CONFIG_REMOVE_SHELL=y
CONFIG_FEATURE_SHADOWPASSWDS=y
CONFIG_USE_BB_PWD_GRP=y
CONFIG_USE_BB_SHADOW=y
CONFIG_USE_BB_CRYPT=y
CONFIG_USE_BB_CRYPT_SHA=y
CONFIG_ADDUSER=y
CONFIG_FEATURE_ADDUSER_LONG_OPTIONS=y
# CONFIG_FEATURE_CHECK_NAMES is not set
CONFIG_FIRST_SYSTEM_ID=100
CONFIG_LAST_SYSTEM_ID=999
CONFIG_ADDGROUP=y
CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS=y
CONFIG_FEATURE_ADDUSER_TO_GROUP=y
CONFIG_DELUSER=y
CONFIG_DELGROUP=y
CONFIG_FEATURE_DEL_USER_FROM_GROUP=y
CONFIG_GETTY=y
CONFIG_LOGIN=y
# CONFIG_LOGIN_SESSION_AS_CHILD is not set
# CONFIG_PAM is not set
CONFIG_LOGIN_SCRIPTS=y
CONFIG_FEATURE_NOLOGIN=y
CONFIG_FEATURE_SECURETTY=y
CONFIG_PASSWD=y
CONFIG_FEATURE_PASSWD_WEAK_CHECK=y
CONFIG_CRYPTPW=y
CONFIG_CHPASSWD=y
CONFIG_FEATURE_DEFAULT_PASSWD_ALGO="des"
CONFIG_SU=y
CONFIG_FEATURE_SU_SYSLOG=y
CONFIG_FEATURE_SU_CHECKS_SHELLS=y
CONFIG_SULOGIN=y
CONFIG_VLOCK=y
#
# Linux Ext2 FS Progs
#
CONFIG_CHATTR=y
CONFIG_FSCK=y
CONFIG_LSATTR=y
# CONFIG_TUNE2FS is not set
#
# Linux Module Utilities
#
CONFIG_MODINFO=y
CONFIG_MODPROBE_SMALL=y
CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE=y
CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED=y
# CONFIG_INSMOD is not set
# CONFIG_RMMOD is not set
# CONFIG_LSMOD is not set
# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set
# CONFIG_MODPROBE is not set
# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set
# CONFIG_DEPMOD is not set
#
# Options common to multiple modutils
#
# CONFIG_FEATURE_2_4_MODULES is not set
# CONFIG_FEATURE_INSMOD_TRY_MMAP is not set
# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set
# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set
# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set
# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set
# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set
# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set
# CONFIG_FEATURE_MODUTILS_ALIAS is not set
# CONFIG_FEATURE_MODUTILS_SYMBOLS is not set
CONFIG_DEFAULT_MODULES_DIR="/lib/modules"
CONFIG_DEFAULT_DEPMOD_FILE="modules.dep"
#
# Linux System Utilities
#
CONFIG_BLOCKDEV=y
CONFIG_MDEV=y
CONFIG_FEATURE_MDEV_CONF=y
CONFIG_FEATURE_MDEV_RENAME=y
CONFIG_FEATURE_MDEV_RENAME_REGEXP=y
CONFIG_FEATURE_MDEV_EXEC=y
CONFIG_FEATURE_MDEV_LOAD_FIRMWARE=y
CONFIG_REV=y
CONFIG_ACPID=y
CONFIG_FEATURE_ACPID_COMPAT=y
CONFIG_BLKID=y
# CONFIG_FEATURE_BLKID_TYPE is not set
CONFIG_DMESG=y
CONFIG_FEATURE_DMESG_PRETTY=y
CONFIG_FBSET=y
CONFIG_FEATURE_FBSET_FANCY=y
CONFIG_FEATURE_FBSET_READMODE=y
CONFIG_FDFLUSH=y
CONFIG_FDFORMAT=y
CONFIG_FDISK=y
# CONFIG_FDISK_SUPPORT_LARGE_DISKS is not set
CONFIG_FEATURE_FDISK_WRITABLE=y
# CONFIG_FEATURE_AIX_LABEL is not set
# CONFIG_FEATURE_SGI_LABEL is not set
# CONFIG_FEATURE_SUN_LABEL is not set
# CONFIG_FEATURE_OSF_LABEL is not set
# CONFIG_FEATURE_GPT_LABEL is not set
CONFIG_FEATURE_FDISK_ADVANCED=y
CONFIG_FINDFS=y
CONFIG_FLOCK=y
CONFIG_FREERAMDISK=y
CONFIG_FSCK_MINIX=y
CONFIG_MKFS_EXT2=y
CONFIG_MKFS_MINIX=y
CONFIG_FEATURE_MINIX2=y
# CONFIG_MKFS_REISER is not set
CONFIG_MKFS_VFAT=y
CONFIG_GETOPT=y
CONFIG_FEATURE_GETOPT_LONG=y
CONFIG_HEXDUMP=y
CONFIG_FEATURE_HEXDUMP_REVERSE=y
CONFIG_HD=y
CONFIG_HWCLOCK=y
CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS=y
# CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set
CONFIG_IPCRM=y
CONFIG_IPCS=y
CONFIG_LOSETUP=y
CONFIG_LSPCI=y
CONFIG_LSUSB=y
CONFIG_MKSWAP=y
CONFIG_FEATURE_MKSWAP_UUID=y
CONFIG_MORE=y
CONFIG_MOUNT=y
CONFIG_FEATURE_MOUNT_FAKE=y
CONFIG_FEATURE_MOUNT_VERBOSE=y
# CONFIG_FEATURE_MOUNT_HELPERS is not set
CONFIG_FEATURE_MOUNT_LABEL=y
# CONFIG_FEATURE_MOUNT_NFS is not set
CONFIG_FEATURE_MOUNT_CIFS=y
CONFIG_FEATURE_MOUNT_FLAGS=y
CONFIG_FEATURE_MOUNT_FSTAB=y
CONFIG_PIVOT_ROOT=y
CONFIG_RDATE=y
CONFIG_RDEV=y
CONFIG_READPROFILE=y
CONFIG_RTCWAKE=y
CONFIG_SCRIPT=y
CONFIG_SCRIPTREPLAY=y
CONFIG_SETARCH=y
CONFIG_SWAPONOFF=y
CONFIG_FEATURE_SWAPON_PRI=y
CONFIG_SWITCH_ROOT=y
CONFIG_UMOUNT=y
CONFIG_FEATURE_UMOUNT_ALL=y
#
# Common options for mount/umount
#
CONFIG_FEATURE_MOUNT_LOOP=y
CONFIG_FEATURE_MOUNT_LOOP_CREATE=y
# CONFIG_FEATURE_MTAB_SUPPORT is not set
CONFIG_VOLUMEID=y
#
# Filesystem/Volume identification
#
CONFIG_FEATURE_VOLUMEID_EXT=y
CONFIG_FEATURE_VOLUMEID_BTRFS=y
CONFIG_FEATURE_VOLUMEID_REISERFS=y
CONFIG_FEATURE_VOLUMEID_FAT=y
CONFIG_FEATURE_VOLUMEID_HFS=y
CONFIG_FEATURE_VOLUMEID_JFS=y
CONFIG_FEATURE_VOLUMEID_XFS=y
CONFIG_FEATURE_VOLUMEID_NTFS=y
CONFIG_FEATURE_VOLUMEID_ISO9660=y
CONFIG_FEATURE_VOLUMEID_UDF=y
CONFIG_FEATURE_VOLUMEID_LUKS=y
CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y
CONFIG_FEATURE_VOLUMEID_CRAMFS=y
CONFIG_FEATURE_VOLUMEID_ROMFS=y
CONFIG_FEATURE_VOLUMEID_SYSV=y
CONFIG_FEATURE_VOLUMEID_OCFS2=y
CONFIG_FEATURE_VOLUMEID_LINUXRAID=y
#
# Miscellaneous Utilities
#
CONFIG_CONSPY=y
CONFIG_LESS=y
CONFIG_FEATURE_LESS_MAXLINES=9999999
CONFIG_FEATURE_LESS_BRACKETS=y
CONFIG_FEATURE_LESS_FLAGS=y
CONFIG_FEATURE_LESS_MARKS=y
CONFIG_FEATURE_LESS_REGEXP=y
CONFIG_FEATURE_LESS_WINCH=y
CONFIG_FEATURE_LESS_ASK_TERMINAL=y
CONFIG_FEATURE_LESS_DASHCMD=y
CONFIG_FEATURE_LESS_LINENUMS=y
CONFIG_NANDWRITE=y
CONFIG_NANDDUMP=y
CONFIG_SETSERIAL=y
CONFIG_UBIATTACH=y
CONFIG_UBIDETACH=y
CONFIG_UBIMKVOL=y
CONFIG_UBIRMVOL=y
CONFIG_UBIRSVOL=y
CONFIG_UBIUPDATEVOL=y
CONFIG_ADJTIMEX=y
# CONFIG_BBCONFIG is not set
# CONFIG_FEATURE_COMPRESS_BBCONFIG is not set
CONFIG_BEEP=y
CONFIG_FEATURE_BEEP_FREQ=4000
CONFIG_FEATURE_BEEP_LENGTH_MS=30
CONFIG_CHAT=y
CONFIG_FEATURE_CHAT_NOFAIL=y
# CONFIG_FEATURE_CHAT_TTY_HIFI is not set
CONFIG_FEATURE_CHAT_IMPLICIT_CR=y
CONFIG_FEATURE_CHAT_SWALLOW_OPTS=y
CONFIG_FEATURE_CHAT_SEND_ESCAPES=y
CONFIG_FEATURE_CHAT_VAR_ABORT_LEN=y
CONFIG_FEATURE_CHAT_CLR_ABORT=y
CONFIG_CHRT=y
CONFIG_CROND=y
CONFIG_FEATURE_CROND_D=y
CONFIG_FEATURE_CROND_CALL_SENDMAIL=y
CONFIG_FEATURE_CROND_DIR="/var/spool/cron"
CONFIG_CRONTAB=y
CONFIG_DC=y
CONFIG_FEATURE_DC_LIBM=y
# CONFIG_DEVFSD is not set
# CONFIG_DEVFSD_MODLOAD is not set
# CONFIG_DEVFSD_FG_NP is not set
# CONFIG_DEVFSD_VERBOSE is not set
# CONFIG_FEATURE_DEVFS is not set
CONFIG_DEVMEM=y
CONFIG_EJECT=y
CONFIG_FEATURE_EJECT_SCSI=y
CONFIG_FBSPLASH=y
# CONFIG_FLASHCP is not set
# CONFIG_FLASH_LOCK is not set
# CONFIG_FLASH_UNLOCK is not set
# CONFIG_FLASH_ERASEALL is not set
CONFIG_IONICE=y
# CONFIG_INOTIFYD is not set
CONFIG_LAST=y
# CONFIG_FEATURE_LAST_SMALL is not set
CONFIG_FEATURE_LAST_FANCY=y
CONFIG_HDPARM=y
CONFIG_FEATURE_HDPARM_GET_IDENTITY=y
CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=y
CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=y
CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET=y
CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF=y
CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA=y
CONFIG_MAKEDEVS=y
# CONFIG_FEATURE_MAKEDEVS_LEAF is not set
CONFIG_FEATURE_MAKEDEVS_TABLE=y
CONFIG_MAN=y
CONFIG_MICROCOM=y
CONFIG_MOUNTPOINT=y
CONFIG_MT=y
CONFIG_RAIDAUTORUN=y
CONFIG_READAHEAD=y
# CONFIG_RFKILL is not set
CONFIG_RUNLEVEL=y
CONFIG_RX=y
CONFIG_SETSID=y
CONFIG_STRINGS=y
# CONFIG_TASKSET is not set
# CONFIG_FEATURE_TASKSET_FANCY is not set
CONFIG_TIME=y
CONFIG_TIMEOUT=y
CONFIG_TTYSIZE=y
CONFIG_VOLNAME=y
CONFIG_WALL=y
CONFIG_WATCHDOG=y
#
# Networking Utilities
#
CONFIG_NAMEIF=y
CONFIG_FEATURE_NAMEIF_EXTENDED=y
CONFIG_NBDCLIENT=y
CONFIG_NC=y
CONFIG_NC_SERVER=y
CONFIG_NC_EXTRA=y
# CONFIG_NC_110_COMPAT is not set
CONFIG_PING=y
# CONFIG_PING6 is not set
CONFIG_FEATURE_FANCY_PING=y
CONFIG_WHOIS=y
# CONFIG_FEATURE_IPV6 is not set
# CONFIG_FEATURE_UNIX_LOCAL is not set
# CONFIG_FEATURE_PREFER_IPV4_ADDRESS is not set
# CONFIG_VERBOSE_RESOLUTION_ERRORS is not set
CONFIG_ARP=y
CONFIG_ARPING=y
CONFIG_BRCTL=y
CONFIG_FEATURE_BRCTL_FANCY=y
CONFIG_FEATURE_BRCTL_SHOW=y
CONFIG_DNSD=y
CONFIG_ETHER_WAKE=y
CONFIG_FAKEIDENTD=y
CONFIG_FTPD=y
CONFIG_FEATURE_FTP_WRITE=y
CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST=y
CONFIG_FTPGET=y
CONFIG_FTPPUT=y
CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS=y
CONFIG_HOSTNAME=y
CONFIG_HTTPD=y
CONFIG_FEATURE_HTTPD_RANGES=y
CONFIG_FEATURE_HTTPD_USE_SENDFILE=y
CONFIG_FEATURE_HTTPD_SETUID=y
CONFIG_FEATURE_HTTPD_BASIC_AUTH=y
CONFIG_FEATURE_HTTPD_AUTH_MD5=y
CONFIG_FEATURE_HTTPD_CGI=y
CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR=y
CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV=y
CONFIG_FEATURE_HTTPD_ENCODE_URL_STR=y
CONFIG_FEATURE_HTTPD_ERROR_PAGES=y
CONFIG_FEATURE_HTTPD_PROXY=y
CONFIG_FEATURE_HTTPD_GZIP=y
CONFIG_IFCONFIG=y
CONFIG_FEATURE_IFCONFIG_STATUS=y
CONFIG_FEATURE_IFCONFIG_SLIP=y
CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ=y
CONFIG_FEATURE_IFCONFIG_HW=y
CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y
CONFIG_IFENSLAVE=y
CONFIG_IFPLUGD=y
CONFIG_IFUPDOWN=y
CONFIG_IFUPDOWN_IFSTATE_PATH="/var/run/ifstate"
CONFIG_FEATURE_IFUPDOWN_IP=y
CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN=y
# CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set
CONFIG_FEATURE_IFUPDOWN_IPV4=y
# CONFIG_FEATURE_IFUPDOWN_IPV6 is not set
CONFIG_FEATURE_IFUPDOWN_MAPPING=y
# CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set
# CONFIG_INETD is not set
# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set
# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set
# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set
# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set
# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set
# CONFIG_FEATURE_INETD_RPC is not set
CONFIG_IP=y
CONFIG_FEATURE_IP_ADDRESS=y
CONFIG_FEATURE_IP_LINK=y
CONFIG_FEATURE_IP_ROUTE=y
CONFIG_FEATURE_IP_TUNNEL=y
CONFIG_FEATURE_IP_RULE=y
CONFIG_FEATURE_IP_SHORT_FORMS=y
# CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set
CONFIG_IPADDR=y
CONFIG_IPLINK=y
CONFIG_IPROUTE=y
CONFIG_IPTUNNEL=y
CONFIG_IPRULE=y
CONFIG_IPCALC=y
CONFIG_FEATURE_IPCALC_FANCY=y
CONFIG_FEATURE_IPCALC_LONG_OPTIONS=y
CONFIG_NETSTAT=y
CONFIG_FEATURE_NETSTAT_WIDE=y
CONFIG_FEATURE_NETSTAT_PRG=y
CONFIG_NSLOOKUP=y
CONFIG_NTPD=y
CONFIG_FEATURE_NTPD_SERVER=y
CONFIG_PSCAN=y
CONFIG_ROUTE=y
CONFIG_SLATTACH=y
CONFIG_TCPSVD=y
CONFIG_TELNET=y
CONFIG_FEATURE_TELNET_TTYPE=y
CONFIG_FEATURE_TELNET_AUTOLOGIN=y
CONFIG_TELNETD=y
CONFIG_FEATURE_TELNETD_STANDALONE=y
CONFIG_FEATURE_TELNETD_INETD_WAIT=y
CONFIG_TFTP=y
CONFIG_TFTPD=y
#
# Common options for tftp/tftpd
#
CONFIG_FEATURE_TFTP_GET=y
CONFIG_FEATURE_TFTP_PUT=y
CONFIG_FEATURE_TFTP_BLOCKSIZE=y
CONFIG_FEATURE_TFTP_PROGRESS_BAR=y
# CONFIG_TFTP_DEBUG is not set
CONFIG_TRACEROUTE=y
# CONFIG_TRACEROUTE6 is not set
CONFIG_FEATURE_TRACEROUTE_VERBOSE=y
# CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE is not set
# CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set
CONFIG_TUNCTL=y
CONFIG_FEATURE_TUNCTL_UG=y
# CONFIG_UDHCPC6 is not set
CONFIG_UDHCPD=y
CONFIG_DHCPRELAY=y
CONFIG_DUMPLEASES=y
CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY=y
# CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set
CONFIG_DHCPD_LEASES_FILE="/var/lib/misc/udhcpd.leases"
CONFIG_UDHCPC=y
CONFIG_FEATURE_UDHCPC_ARPING=y
# CONFIG_FEATURE_UDHCP_PORT is not set
CONFIG_UDHCP_DEBUG=9
CONFIG_FEATURE_UDHCP_RFC3397=y
CONFIG_FEATURE_UDHCP_8021Q=y
CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script"
CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80
CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n"
CONFIG_UDPSVD=y
CONFIG_VCONFIG=y
CONFIG_WGET=y
CONFIG_FEATURE_WGET_STATUSBAR=y
CONFIG_FEATURE_WGET_AUTHENTICATION=y
CONFIG_FEATURE_WGET_LONG_OPTIONS=y
CONFIG_FEATURE_WGET_TIMEOUT=y
CONFIG_ZCIP=y
#
# Print Utilities
#
CONFIG_LPD=y
CONFIG_LPR=y
CONFIG_LPQ=y
#
# Mail Utilities
#
CONFIG_MAKEMIME=y
CONFIG_FEATURE_MIME_CHARSET="us-ascii"
CONFIG_POPMAILDIR=y
CONFIG_FEATURE_POPMAILDIR_DELIVERY=y
CONFIG_REFORMIME=y
CONFIG_FEATURE_REFORMIME_COMPAT=y
CONFIG_SENDMAIL=y
#
# Process Utilities
#
CONFIG_IOSTAT=y
CONFIG_LSOF=y
CONFIG_MPSTAT=y
CONFIG_NMETER=y
CONFIG_PMAP=y
CONFIG_POWERTOP=y
CONFIG_PSTREE=y
CONFIG_PWDX=y
CONFIG_SMEMCAP=y
CONFIG_UPTIME=y
CONFIG_FEATURE_UPTIME_UTMP_SUPPORT=y
CONFIG_FREE=y
CONFIG_FUSER=y
CONFIG_KILL=y
CONFIG_KILLALL=y
CONFIG_KILLALL5=y
CONFIG_PGREP=y
CONFIG_PIDOF=y
CONFIG_FEATURE_PIDOF_SINGLE=y
CONFIG_FEATURE_PIDOF_OMIT=y
CONFIG_PKILL=y
CONFIG_PS=y
# CONFIG_FEATURE_PS_WIDE is not set
# CONFIG_FEATURE_PS_LONG is not set
CONFIG_FEATURE_PS_TIME=y
CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS=y
# CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set
CONFIG_RENICE=y
CONFIG_BB_SYSCTL=y
CONFIG_TOP=y
CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y
CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y
CONFIG_FEATURE_TOP_SMP_CPU=y
CONFIG_FEATURE_TOP_DECIMALS=y
CONFIG_FEATURE_TOP_SMP_PROCESS=y
CONFIG_FEATURE_TOPMEM=y
CONFIG_FEATURE_SHOW_THREADS=y
CONFIG_WATCH=y
#
# Runit Utilities
#
CONFIG_RUNSV=y
CONFIG_RUNSVDIR=y
# CONFIG_FEATURE_RUNSVDIR_LOG is not set
CONFIG_SV=y
CONFIG_SV_DEFAULT_SERVICE_DIR="/var/service"
CONFIG_SVLOGD=y
CONFIG_CHPST=y
CONFIG_SETUIDGID=y
CONFIG_ENVUIDGID=y
CONFIG_ENVDIR=y
CONFIG_SOFTLIMIT=y
# CONFIG_CHCON is not set
# CONFIG_FEATURE_CHCON_LONG_OPTIONS is not set
# CONFIG_GETENFORCE is not set
# CONFIG_GETSEBOOL is not set
# CONFIG_LOAD_POLICY is not set
# CONFIG_MATCHPATHCON is not set
# CONFIG_RESTORECON is not set
# CONFIG_RUNCON is not set
# CONFIG_FEATURE_RUNCON_LONG_OPTIONS is not set
# CONFIG_SELINUXENABLED is not set
# CONFIG_SETENFORCE is not set
# CONFIG_SETFILES is not set
# CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set
# CONFIG_SETSEBOOL is not set
# CONFIG_SESTATUS is not set
#
# Shells
#
# CONFIG_ASH is not set
# CONFIG_ASH_BASH_COMPAT is not set
# CONFIG_ASH_IDLE_TIMEOUT is not set
# CONFIG_ASH_JOB_CONTROL is not set
# CONFIG_ASH_ALIAS is not set
# CONFIG_ASH_GETOPTS is not set
# CONFIG_ASH_BUILTIN_ECHO is not set
# CONFIG_ASH_BUILTIN_PRINTF is not set
# CONFIG_ASH_BUILTIN_TEST is not set
# CONFIG_ASH_CMDCMD is not set
# CONFIG_ASH_MAIL is not set
# CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set
# CONFIG_ASH_RANDOM_SUPPORT is not set
# CONFIG_ASH_EXPAND_PRMT is not set
# CONFIG_CTTYHACK is not set
CONFIG_HUSH=y
CONFIG_HUSH_BASH_COMPAT=y
CONFIG_HUSH_BRACE_EXPANSION=y
CONFIG_HUSH_HELP=y
CONFIG_HUSH_INTERACTIVE=y
CONFIG_HUSH_SAVEHISTORY=y
CONFIG_HUSH_JOB=y
CONFIG_HUSH_TICK=y
CONFIG_HUSH_IF=y
CONFIG_HUSH_LOOPS=y
CONFIG_HUSH_CASE=y
CONFIG_HUSH_FUNCTIONS=y
CONFIG_HUSH_LOCAL=y
CONFIG_HUSH_RANDOM_SUPPORT=y
CONFIG_HUSH_EXPORT_N=y
CONFIG_HUSH_MODE_X=y
# CONFIG_MSH is not set
# CONFIG_FEATURE_SH_IS_ASH is not set
CONFIG_FEATURE_SH_IS_HUSH=y
# CONFIG_FEATURE_SH_IS_NONE is not set
# CONFIG_FEATURE_BASH_IS_ASH is not set
CONFIG_FEATURE_BASH_IS_HUSH=y
# CONFIG_FEATURE_BASH_IS_NONE is not set
CONFIG_SH_MATH_SUPPORT=y
CONFIG_SH_MATH_SUPPORT_64=y
CONFIG_FEATURE_SH_EXTRA_QUIET=y
# CONFIG_FEATURE_SH_STANDALONE is not set
# CONFIG_FEATURE_SH_NOFORK is not set
CONFIG_FEATURE_SH_HISTFILESIZE=y
#
# System Logging Utilities
#
CONFIG_SYSLOGD=y
CONFIG_FEATURE_ROTATE_LOGFILE=y
CONFIG_FEATURE_REMOTE_LOG=y
CONFIG_FEATURE_SYSLOGD_DUP=y
CONFIG_FEATURE_SYSLOGD_CFG=y
CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=256
CONFIG_FEATURE_IPC_SYSLOG=y
CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=16
CONFIG_LOGREAD=y
CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING=y
CONFIG_KLOGD=y
CONFIG_FEATURE_KLOGD_KLOGCTL=y
CONFIG_LOGGER=y
^ permalink raw reply
* [Buildroot] [PATCH 2/7] support/scripts: add a script to add a new package
From: Arnout Vandecappelle @ 2012-11-01 2:00 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1347234052-10527-3-git-send-email-yann.morin.1998@free.fr>
On 09/10/12 01:40, Yann E. MORIN wrote:
> This script asks a few questions to the user, and creates the skeleton
> files (Config.in and package.mk).
>
> Signed-off-by: "Yann E. MORIN"<yann.morin.1998@free.fr>
> ---
> docs/manual/adding-packages-script.txt | 41 +++++++++
> docs/manual/adding-packages.txt | 2 +
> support/scripts/pkg-new | 151 ++++++++++++++++++++++++++++++++
> 3 files changed, 194 insertions(+), 0 deletions(-)
> create mode 100644 docs/manual/adding-packages-script.txt
> create mode 100755 support/scripts/pkg-new
>
> diff --git a/docs/manual/adding-packages-script.txt b/docs/manual/adding-packages-script.txt
> new file mode 100644
> index 0000000..b19e6ee
> --- /dev/null
> +++ b/docs/manual/adding-packages-script.txt
> @@ -0,0 +1,41 @@
> +Scripted new package
> +--------------------
> +
> +To help you add your new package, Buildroot offers a script that partially
> +automates the creation of a new package: +support/scripts/pkg-new+.
> +
> +When run, this script asks you a few questions about your package, and
> +creates skeleton files for you, so you only have to fill-in the the values
> +for the different variables.
> +
> +----
> +$ ./support/script/pkg-new
> +Name of the package: libfoo
> +
> +1) none
> +2) multimedia
> +3) java
> +4) x11r7
> +5) games
> +Category of your package: 1
I would skip this question and always create it in packages/libfoo. The
subdirectories are rare, we want to get rid of them, and anyway you can
easily move the generated directory to a different place after the fact.
> +
> +1) autotools
> +2) cmake
> +3) generic
> +Build-system your package is using: 1
> +
> +Your package skeleton files have been created; you can now edit these files
> +to complete the creation of the package:
> + package/libfoo/Config.in
> + package/libfoo/libfoo.mk
> +
> +Do not forget to also edit 'package/Config.in' to include
> +package/libfoo/Config.in in the correct location.
> +----
> +
> +Then, you just have to edit the two generated files with appropriate values.
> +Refer to the following sections for each type of build-system:
> +
> +* xref:generic-package-tutorial[]
> +* xref:autotools-package-tutorial[]
> +* xref:cmake-package-tutorial[]
> diff --git a/docs/manual/adding-packages.txt b/docs/manual/adding-packages.txt
> index cb75f2d..1aacaa8 100644
> --- a/docs/manual/adding-packages.txt
> +++ b/docs/manual/adding-packages.txt
> @@ -19,4 +19,6 @@ include::adding-packages-handwritten.txt[]
>
> include::adding-packages-gettext.txt[]
>
> +include::adding-packages-script.txt[]
> +
I would put this before the rest of adding-packages.
> include::adding-packages-conclusion.txt[]
> diff --git a/support/scripts/pkg-new b/support/scripts/pkg-new
> new file mode 100755
> index 0000000..4e1ddac
> --- /dev/null
> +++ b/support/scripts/pkg-new
> @@ -0,0 +1,151 @@
> +#!/bin/bash
Does it have to be bash? Hm, yes, for the arrays... It would be better
if we can avoid relying on bash for new functionality.
> +
> +my_name="${0##*/}"
> +
> +# -----------------------------------------------------------------------------
> +# Ask some questions...
> +#
> +
> +# List of known categories:
> +CAT_LIST=( none multimedia java x11r7 games )
> +# List of known build-systems:
> +BS_LIST=( autotools cmake generic )
> +
> +# --------------------------------------
> +# First, some trivial stuff: what's the package name?
> +if [ -n "${1}" ]; then
> + pkg_name="${1}"
> + printf "Starting addition of new package '%s'\n" "${pkg_name}"
> +else
> + read -p "Name of the package: " pkg_name
> +fi
> +
> +# Check we do not already have this package
> +pkgs="$( find package -type d -name "${pkg_name}" 2>/dev/null )"
> +if [ -n "${pkgs}" ]; then
> + printf "%s: error: package '%s' already exists in:\n" \
> + "${my_name}" "${pkg_name}"
> + for p in ${pkgs}; do
> + printf " %s\n" "${p}"
> + done
> + exit 1
> +fi
> +PKG_NAME="$( tr '[:lower:]-' '[:upper:]_'<<<"${pkg_name}" )"
> +
> +# --------------------------------------
> +# Will it be categorised?
> +printf "\n"
> +PS3="Category of your package: "
> +select pkg_cat in "${CAT_LIST[@]}"; do
> + case "${pkg_cat}" in
> + none) pkg_cat=""; break;;
> + ?*) break;;
> + esac
> + printf "Please enter a number in [1..%d]\n" "${#CAT_LIST[@]}"
> +done
> +
> +pkg_dir="package/${pkg_cat}/${pkg_name}"
> +pkg_dir="${pkg_dir//\/\///}"
> +
> +# --------------------------------------
> +# What kind of build system is it using?
> +printf "\n"
> +PS3="Build-system your package is using: "
> +select pkg_bs in "${BS_LIST[@]}"; do
> + case "${pkg_bs}" in
> + *?) break;;
> + esac
> + printf "Please enter a number in [1..%d]\n" "${#BS_LIST[@]}"
> +done
> +
> +# -----------------------------------------------------------------------------
> +# Now we can create the package
> +#
> +
> +mkdir -p "${pkg_dir}"
> +
> +# --------------------------------------
> +# Can't use 'cat<<-_EOF_', as Config.in uses leading tabs.
I don't think the indented Config.in block is very readable; I'd use a
plain <<_EOF_ with no extra indentation. Then you can use cat after all.
> +sed -r -e 's/^ //;'>"${pkg_dir}/Config.in"<<_EOF_
> + config BR2_PACKAGE_${PKG_NAME}_AVAILABLE
> + def_bool y
> + # Here, add one 'depends on' line for each of your
> + # package's dependencies, eg.:
> + #depends on BR2_PACKAGE_LIBBAR_AVAILABLE
> + #depends on BR2_LARGEFILE
> +
> + # Update this comment to tell why the package is not available:
> + comment "${pkg_name} requires XXX and YYY"
> + depends on !BR2_PACKAGE_${PKG_NAME}_AVAILABLE
> +
> + config BR2_PACKAGE_${PKG_NAME}
> + bool "${pkg_name}"
> + depends on BR2_PACKAGE_${PKG_NAME}_AVAILABLE
> + # Here, add one 'select' line for each package your
> + # package depends on, eg.:
> + #select BR2_PACKAGE_LIBBAR
> + help
> + # Here, add a short description of your package
> + # For example, copy the first few description sentences
> + # from the package's website
> +
> + # Also, add a pointer to the package's website
> +
> + # Here, you may add optional features/options of your package:
# Remove it if it is empty
> + if BR2_PACKAGE_${PKG_NAME}
> + endif # BR2_PACKAGE_${PKG_NAME}
> +_EOF_
> +
> +# --------------------------------------
> +# Create the package.mk file
> +cat>"${pkg_dir}/${pkg_name}.mk"<<-_EOF_
Same here, indentation doesn't look natural to me.
> + #############################################################
> + #
> + # ${pkg_name}
> + #
> + #############################################################
> +
> + ${PKG_NAME}_VERSION =
> + ${PKG_NAME}_SOURCE =
> + ${PKG_NAME}_SITE =
> + ${PKG_NAME}_DEPENDENCIES =
> + ${PKG_NAME}_LICENSE =
> + ${PKG_NAME}_LICENSE_FILES =
> +
> +_EOF_
For autotools-package and cmake-package, _CONF_OPT is also a very useful one.
Maybe also add _INSTALL_STAGING.
> +
> +if [ "${pkg_bs}" = "generic" ]; then
> + cat>>"${pkg_dir}/${pkg_name}.mk"<<-_EOF_
> + # See docs/manual/ for the complete list of actions that can
> + # be defined; only the most common ones are listed below:
> +
> + define ${PKG_NAME}_CONFIGURE_CMDS
> + endef
> +
> + define ${PKG_NAME}_BUILD_CMDS
> + endef
> +
> + define ${PKG_NAME}_INSTALL_TARGET_CMDS
Putting a sample
install -D -m 0644 $(@D)/... $(TARGET_DIR)/...
isn't a bad idea.
> + endef
> +
> + define ${PKG_NAME}_UNINSTALL_TARGET_CMDS
> + endef
> +
> + _EOF_
> +fi
> +
> +printf '$(eval $(%s-package))\n' "${pkg_bs}">>"${pkg_dir}/${pkg_name}.mk"
> +
> +# -----------------------------------------------------------------------------
> +# The End
> +#
> +cat<<-_EOF_
> +
> + Your package skeleton files have been created; you can now edit these files
> + to complete the creation of the package:
> + ${pkg_dir}/Config.in
> + ${pkg_dir}/${pkg_name}.mk
> +
> + Do not forget to also edit '${pkg_dir%/${pkg_name}}/Config.in' to include
> + ${pkg_dir}/Config.in in the correct location.
> +_EOF_
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH 1/7] docs/manual: update 'adding packages' with the new _AVAILABLE symbol
From: Arnout Vandecappelle @ 2012-11-01 1:30 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1347234052-10527-2-git-send-email-yann.morin.1998@free.fr>
On 09/10/12 01:40, Yann E. MORIN wrote:
> Signed-off-by: "Yann E. MORIN"<yann.morin.1998@free.fr>
> ---
> docs/manual/adding-packages-autotools.txt | 48 ++++++--
> docs/manual/adding-packages-directory.txt | 190 +++++++++++++++--------------
> docs/manual/adding-packages-generic.txt | 85 ++++++++-----
> 3 files changed, 191 insertions(+), 132 deletions(-)
>
> diff --git a/docs/manual/adding-packages-autotools.txt b/docs/manual/adding-packages-autotools.txt
> index 9fb0918..0f14489 100644
> --- a/docs/manual/adding-packages-autotools.txt
> +++ b/docs/manual/adding-packages-autotools.txt
> @@ -20,10 +20,24 @@ package, with an example :
> 08: LIBFOO_SITE = http://www.foosoftware.org/download
> 09: LIBFOO_INSTALL_STAGING = YES
> 10: LIBFOO_INSTALL_TARGET = YES
> -11: LIBFOO_CONF_OPT = --enable-shared
> -12: LIBFOO_DEPENDENCIES = libglib2 host-pkg-config
> -13:
> -14: $(eval $(autotools-package))
> +11: LIBFOO_DEPENDENCIES = host-libaaa libbbb
In the Config.in example, it's libbar, not libbb.
> +12:
> +13: ifeq ($(BR2_PACKAGE_LIBFOO_FROBBLE),y)
> +14: LIBFOO_CONF_OPT += --enable-frobble
> +15: else
> +16: LIBFOO_CONF_OPT += --disable-frobble
> +17: endif
> +18:
> +19: LIBFOO_CONF_OPT += --with-gazzle-level=$(BR2_PACKAGE_LIBFOO_GAZZLE_LEVEL)
This one is going a bit too far... And if you keep it, it should
probably have a qstrip.
> +20:
> +21: ifeq ($(BR2_PACKAGE_LIBFOO_GOO),y)
> +22: LIBFOO_DEPENDENCIES += goo
> +23: LIBFOO_CONF_OPT += --enable-goo
> +24: else
> +25: LIBFOO_CONF_OPT += --disable-goo
> +26: endif
While you're at it, an automatic enable/disable example would
be nice too.
> +27:
> +28: $(eval $(autotools-package))
> ------------------------
>
> On line 6, we declare the version of the package.
> @@ -50,16 +64,26 @@ installation is enabled, so in fact, this line is not strictly
> necessary. Also by default, packages are installed in this location
> using the +make install+ command.
>
> -On line 11, we tell Buildroot to pass a custom configure option, that
> -will be passed to the +./configure+ script before configuring
> -and building the package.
> +On line 11, we declare our dependencies, so that they are built before the
> +build process of our package starts.
>
> -On line 12, we declare our dependencies, so that they are built
> -before the build process of our package starts.
> +On lines 13 to 17, if the user selected the option 'frobble'
> ++BR2_PACKAGE_LIBFOO_FROBBLE+, we add the corresponding configure option
> +to enable 'frobble' (line 14), or disable it (line 16), that will be
> +passed to the +./configure+ script before configuring and building the
> +package.
"before configuring and building the package" is redundant.
>
> -Finally, on line line 14, we invoke the +autotools-package+
> -macro that generates all the Makefile rules that actually allows the
> -package to be built.
> +Similarly, on line 19, we add the configure option that defines the
> +'bazzle level' +BR2_PACKAGE_LIBFOO_GAZZLE_LEVEL+.
bazzle -> gazzle.
> +
> +On lines 21 to 26, if user selected the option 'goo' +BR2_PACKAGE_LIBFOO_GOO+,
> +we add a dependency on the package +goo+ (line 22), and add the corresponding
> +configure option to enable 'goo' (line 23); or if 'goo' support is not
> +selected, we pass the configure option to disable it (line 25).
> +
> +Finally, on line line 28, we invoke the +autotools-package+ macro that
> +generates all the Makefile rules that actually allows the package to be
> +built.
>
> [[autotools-package-reference]]
>
> diff --git a/docs/manual/adding-packages-directory.txt b/docs/manual/adding-packages-directory.txt
> index 4a96415..4863332 100644
> --- a/docs/manual/adding-packages-directory.txt
> +++ b/docs/manual/adding-packages-directory.txt
> @@ -12,30 +12,37 @@ one of these categories, then create your package directory in these.
> +Config.in+ file
> ~~~~~~~~~~~~~~~~
>
> -Then, create a file named +Config.in+. This file will contain the
> -option descriptions related to our +libfoo+ software that will be used
> -and displayed in the configuration tool. It should basically contain:
> +Then, create a file named +Config.in+. This file will contain the option
> +descriptions related to our +libfoo+ software that will be used and
> +displayed in the configuration tool. It should basically contain:
>
> ---------------------------
> +config BR2_PACKAGE_LIBFOO_AVAILABLE
> + def_bool y
> +
> config BR2_PACKAGE_LIBFOO
> bool "libfoo"
> + depends on BR2_PACKAGE_LIBFOO_AVAILABLE
> help
> This is a comment that explains what libfoo is.
>
> http://foosoftware.org/libfoo/
> ---------------------------
>
> -The +bool+ line, +help+ line and other meta-informations about the
> -configuration option must be indented with one tab. The help text
> -itself should be indented with one tab and two spaces, and it must
> -mention the upstream URL of the project.
> +*Notes*
> +
> +* This is a very simple example, not really complete, for a very simple
> + package with no dependency.
> +
> +* The syntax of the +Config.in+ file is the same as the one for the kernel
> + Kconfig file. The documentation for this syntax is available at:
> + https://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=blob;f=Documentation/kbuild/kconfig-language.txt[]
http://kernel.org/doc/Documentation/kbuild/kconfig-language.txt
> +
> +* The +bool+ line, +help+ line and other meta-informations about the
> + configuration option must be indented with one tab. The help text
> + itself should be indented with one tab and two spaces, and it must
> + mention the upstream URL of the project.
>
> -Of course, you can add other sub-options into a +if
> -BR2_PACKAGE_LIBFOO...endif+ statement to configure particular things
> -in your software. You can look at examples in other packages. The
> -syntax of the +Config.in+ file is the same as the one for the kernel
> -Kconfig file. The documentation for this syntax is available at
> -http://lxr.free-electrons.com/source/Documentation/kbuild/kconfig-language.txt[]
>
> Finally you have to add your new +libfoo/Config.in+ to
> +package/Config.in+ (or in a category subdirectory if you decided to
> @@ -47,103 +54,108 @@ supposed to contain anything but the 'bare' name of the package.
> source "package/libfoo/Config.in"
> --------------------------
>
> -The +Config.in+ file of your package must also ensure that
> -dependencies are enabled. Typically, Buildroot uses the following
> -rules:
> +The +Config.in+ file for your package must also ensure that its
> +dependencies are available. This is done in four steps:
>
> -* Use a +select+ type of dependency for dependencies on
> - libraries. These dependencies are generally not obvious and it
> - therefore make sense to have the kconfig system ensure that the
> - dependencies are selected. For example, the _libgtk2_ package uses
> - +select BR2_PACKAGE_LIBGLIB2+ to make sure this library is also
> - enabled.
> +1. The +BR2_PACKAGE_LIBFOO_AVAILABLE+ symbol shall +depends on+ any
> +other package's +_AVAILABLE+ symbol. It may also depend on any other
> +symbol, such as toolchain features, but should not directly depend on
> +any package's main symbol.
... except for _XORG7, _PYTHON, etc.
>
> -* Use a +depends on+ type of dependency when the user really needs to
> - be aware of the dependency. Typically, Buildroot uses this type of
> - dependency for dependencies on toolchain options (large file
> - support, RPC support, IPV6 support), or for dependencies on "big"
> - things, such as the X.org system. In some cases, especially
> - dependency on toolchain options, it is recommended to add a
> - +comment+ displayed when the option is not enabled, so that the user
> - knows why the package is not available.
> +1. The main +BR2_PACKAGE_LIBFOO+ symbol should directly +depends
> +on+ it's own +_AVAILABLE+ symbol, +BR2_PACKAGE_LIBFOO_AVAILABLE+, and
> +should not depend on any other symbol.
>
> -An example illustrates both the usage of +select+ and +depends on+.
> +1. For each +_AVAILABLE+ symbol your package's own +_AVAILABLE+
> +symbol depends on, your package's main symbol should +select+ the
> +corresponding package's main symbol.
> +
> +1. Add a +comment+ briefly explaining why your package is not
> +available. That +comment+ shall have a single negative dependency on
> +your package's +_AVAILABLE+ symbol.
> +
> +The example below illustrates this mechanism for our libfoo package:
>
> --------------------------
> -config BR2_PACKAGE_ACL
> - bool "acl"
> - select BR2_PACKAGE_ATTR
> - depends on BR2_LARGEFILE
> - help
> - POSIX Access Control Lists, which are used to define more
> - fine-grained discretionary access rights for files and
> - directories.
> - This package also provides libacl.
> -
> - http://savannah.nongnu.org/projects/acl
> -
> -comment "acl requires a toolchain with LARGEFILE support"
> - depends on !BR2_LARGEFILE
> +config BR2_PACKAGE_LIBFOO_AVAILABLE
> + def_bool y
> + depends on BR2_LARGEFILE
> + depends on BR2_PACKAGE_LIBBAR
> +
> +comment "libfoo requires libbar, and a toolchain with support for LARGEFILEs"
> + depends on !BR2_PACKAGE_LIBFOO_AVAILABLE
> +
> +config BR2_PACKAGE_LIBFOO
> + bool "libfoo"
> + depends on BR2_PACKAGE_LIBFOO_AVAILABLE
> + select BR2_PACKAGE_LIBBAR
> + help
> + This is a comment that explains what libfoo is.
> +
> + http://foosoftware.org/libfoo/
> --------------------------
>
> +*Notes*
> +
> +* Even if your package does not have any dependency, you should anyway
> + add the corresponding +_AVAILABLE+ symbol. This way, other packages can
> + safely use the mechanism above to select your package, even if it is later
> + updated and dependencies are added (eg. a new version of the package is
> + released; or features, initially disabled, are now enabled...)
> +
> +* The symbols and the comment should be in this order, so that the
> + +menuconfig+ will be properly laid out.
> +
> +* The dependencies in +Config.in+ will make sure that your package's
> + dependencies options are also enabled, but they will not necessarily be
> + built before your package. To do so, these dependencies also need to be
> + expressed in the +.mk+ file of the package (see below).
>
> -Note that these two dependency types are only transitive with the
> -dependencies of the same kind.
> +If your package can be fine-tuned, you can add sub-options, enclosed inside
> +an +if BR2_PACKAGE_LIBFOO ... endif+ block. You can even have each option
> +depend on other packages, using the +_AVAILABLE+ and main symbols for
> +those pacakges.
>
> -This means, in the following example:
> +Finally, here's our now-complete example package:
>
> --------------------------
> -config BR2_PACKAGE_A
> - bool "Package A"
> +config BR2_PACKAGE_LIBFOO_AVAILABLE
> + def_bool y
> + depends on BR2_LARGEFILE
> + depends on BR2_PACKAGE_LIBBAR
>
> -config BR2_PACKAGE_B
> - bool "Package B"
> - depends on BR2_PACKAGE_A
> +comment "libfoo requires libbar"
And largefile. Copy the comment from above.
> + depends on !BR2_PACKAGE_LIBFOO_AVAILABLE
>
> -config BR2_PACKAGE_C
> - bool "Package C"
> - depends on BR2_PACKAGE_B
> +config BR2_PACKAGE_LIBFOO
> + bool "libfoo"
> + depends on BR2_PACKAGE_LIBFOO_AVAILABLE
> + select BR2_PACKAGE_LIBBAR
> + help
> + This is a comment that explains what libfoo is.
>
> -config BR2_PACKAGE_D
> - bool "Package D"
> - select BR2_PACKAGE_B
> + http://foosoftware.org/libfoo/
>
> -config BR2_PACKAGE_E
> - bool "Package E"
> - select BR2_PACKAGE_D
> ---------------------------
> +if BR2_PACKAGE_LIBFOO
>
> -* Selecting +Package C+ will be visible if +Package B+ has been
> - selected, which in turn is only visible if +Package A+ has been
> - selected.
> +config BR2_PACKAGE_LIBFOO_FROBBLE
> + bool "Frobble the foo"
>
> -* Selecting +Package E+ will select +Package D+, which will select
> - +Package B+, it will not check for the dependencies of +Package B+,
> - so it will not select +Package A+.
> +config BR2_PACKAGE_LIBFOO_GAZZLE_LEVEL
> + int "Gazzle level"
> + range 0 10
We currently don't have a single range config option, and only one int.
So the example is a bit contrived... If you add an extra example, a string
option that is qstripped in the .mk file is more appropriate.
>
> -* Since +Package B+ is selected but +Package A+ is not, this violates
> - the dependency of +Package B+ on +Package A+. Therefore, in such a
> - situation, the transitive dependency has to be added explicitly:
> +comment "goo option requires package goo"
> + depends on !BR2_PACKAGE_GOO_AVAILABLE
>
> ---------------------------
> -config BR2_PACKAGE_D
> - bool "Package D"
> - select BR2_PACKAGE_B
> - depends on BR2_PACKAGE_A
> -
> -config BR2_PACKAGE_E
> - bool "Package E"
> - select BR2_PACKAGE_D
> - depends on BR2_PACKAGE_A
> ---------------------------
> +config BR2_PACKAGE_LIBFOO_GOO
> + bool "goo"
> + depends on BR2_PACKAGE_GOO_AVAILABLE
> + select BR2_PACKAGE_GOO
>
> -Overall, for package library dependencies, +select+ should be
> -preferred.
> +endif
> +--------------------------
>
> -Note that such dependencies will make sure that the dependency option
> -is also enabled, but not necessarily built before your package. To do
> -so, the dependency also needs to be expressed in the +.mk+ file of the
> -package.
>
> The +.mk+ file
> ~~~~~~~~~~~~~~
> diff --git a/docs/manual/adding-packages-generic.txt b/docs/manual/adding-packages-generic.txt
> index d3a4abb..3e4c864 100644
> --- a/docs/manual/adding-packages-generic.txt
> +++ b/docs/manual/adding-packages-generic.txt
> @@ -23,30 +23,45 @@ system is based on hand-written Makefiles or shell scripts.
> 09: LIBFOO_INSTALL_STAGING = YES
> 10: LIBFOO_DEPENDENCIES = host-libaaa libbbb
libbar
> 11:
> -12: define LIBFOO_BUILD_CMDS
> -13: $(MAKE) CC="$(TARGET_CC)" LD="$(TARGET_LD)" -C $(@D) all
> -14: endef
> +12: ifeq ($(BR2_PACKAGE_LIBFOO_FROBBLE),y)
> +13: LIBFOO_CFLAGS += -DFROBBLE
> +14: endif
> 15:
> -16: define LIBFOO_INSTALL_STAGING_CMDS
> -17: $(INSTALL) -D -m 0755 $(@D)/libfoo.a $(STAGING_DIR)/usr/lib/libfoo.a
> -18: $(INSTALL) -D -m 0644 $(@D)/foo.h $(STAGING_DIR)/usr/include/foo.h
> -19: $(INSTALL) -D -m 0755 $(@D)/libfoo.so* $(STAGING_DIR)/usr/lib
> -20: endef
> -21:
> -22: define LIBFOO_INSTALL_TARGET_CMDS
> -23: $(INSTALL) -D -m 0755 $(@D)/libfoo.so* $(TARGET_DIR)/usr/lib
> -24: $(INSTALL) -d -m 0755 $(TARGET_DIR)/etc/foo.d
> -25: endef
> -26:
> -27: define LIBFOO_DEVICES
> -28: /dev/foo c 666 0 0 42 0 - - -
> +16: LIBFOO_CFLAGS += -DGAZZLE_LEVEL=$(BR2_PACKAGE_LIBFOO_GAZZLE_LEVEL)
> +17:
> +18: ifeq ($(BR2_PACKAGE_LIBFOO_GOO),y)
> +19: LIBFOO_DEPENDENCIES += goo
> +20: LIBFOO_CFLAGS += -DGOO
> +21: LIBFOO_LDFLAGS += -lgoo
> +22: endif
> +23:
> +24: define LIBFOO_BUILD_CMDS
> +25: $(MAKE) -C $(@D) \
> +26: CC="$(TARGET_CC)" CFLAGS="$(LIBFOO_CFLAGS)" \
> +27: LD="$(TARGET_LD)" LDFLAGS="$(LIBFOO_LDFLAGS)" \
> +28: all
> 29: endef
> 30:
> -31: define LIBFOO_PERMISSIONS
> -32: /bin/foo f 4755 0 0 - - - - -
> -33: endef
> -34:
> -35: $(eval $(generic-package))
> +31: define LIBFOO_INSTALL_STAGING_CMDS
> +32: $(INSTALL) -D -m 0755 $(@D)/libfoo.a $(STAGING_DIR)/usr/lib/libfoo.a
> +33: $(INSTALL) -D -m 0644 $(@D)/foo.h $(STAGING_DIR)/usr/include/foo.h
> +34: $(INSTALL) -D -m 0755 $(@D)/libfoo.so* $(STAGING_DIR)/usr/lib
> +35: endef
> +36:
> +37: define LIBFOO_INSTALL_TARGET_CMDS
> +38: $(INSTALL) -D -m 0755 $(@D)/libfoo.so* $(TARGET_DIR)/usr/lib
> +39: $(INSTALL) -d -m 0755 $(TARGET_DIR)/etc/foo.d
> +40: endef
> +41:
> +42: define LIBFOO_DEVICES
> +43: /dev/foo c 666 0 0 42 0 - - -
> +44: endef
> +45:
> +46: define LIBFOO_PERMISSIONS
> +47: /bin/foo f 4755 0 0 - - - - -
> +48: endef
> +49:
> +50: $(eval $(generic-package))
> --------------------------------
>
> The Makefile begins on line 6 to 8 with metadata information: the
> @@ -64,12 +79,20 @@ install header files and other development files in the staging space.
> This will ensure that the commands listed in the
> +LIBFOO_INSTALL_STAGING_CMDS+ variable will be executed.
>
> -On line 10, we specify the list of dependencies this package relies
> -on. These dependencies are listed in terms of lower-case package names,
> -which can be packages for the target (without the +host-+
> -prefix) or packages for the host (with the +host-+) prefix).
> -Buildroot will ensure that all these packages are built and installed
> -'before' the current package starts its configuration.
> +On line 10, we specify the list of dependencies this package relies on.
> +These dependencies are listed in terms of lower-case package names, which
> +can be packages for the target (without the +host-+ prefix) or packages
> +for the host (with the +host-+ prefix). Buildroot will ensure that all
> +these packages are built and installed 'before' the current package starts
> +its configuration.
> +
> +On lines 12 to 14, if the user did select the option
> ++BR2_PACKAGE_LIBFOO_FROBBLE+ (see above, in the +Config.in+), we
> +conditionnally add a value to the +CFLAGS+. On line 16, we add the 'gazzle
conditionally
> +level' +BR2_PACKAGE_LIBFOO_GAZZLE_LEVEL+ to the +CFLAGS+. And on lines 18
> +to 22, if the user selected 'goo' support, +BR2_PACKAGE_LIBFOO_GOO+, we
> +add a dependency on the package +goo+, and add appropriate +CFLAGS+ and
> ++LDFLAGS+.
>
> The rest of the Makefile defines what should be done at the different
> steps of the package configuration, compilation and installation.
> @@ -79,11 +102,11 @@ steps should be performed to install the package in the staging space.
> +LIBFOO_INSTALL_TARGET_CMDS+ tells what steps should be
> performed to install the package in the target space.
Shouldn't _DEVICES and _PERMISSIONS be explained?
>
> -All these steps rely on the +$(@D)+ variable, which
> -contains the directory where the source code of the package has been
> -extracted.
> +All these steps rely on the +$(@D)+ variable, which contains the directory
> +where the source code of the package has been extracted, and where the
> +package is being built.
>
> -Finally, on line 35, we call the +generic-package+ which
> +Finally, on line 50, we call the +generic-package+ which
> generates, according to the variables defined previously, all the
> Makefile code necessary to make your package working.
>
Overall, a very good addition to the doc, regardless of the _AVAILABLE stuff!
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH] pkg-download: Make a shallow clone for git downloads
From: Arnout Vandecappelle @ 2012-11-01 1:21 UTC (permalink / raw)
To: buildroot
When downloading from git, we clone the whole repository and then only
use the latest commit. That's a lot of redundant stuff. So instead,
make a shallow clone. Unfortunately that's only possible when
downloading a branch or tag, so fall back to the old method if git gives
an error.
This speeds up the cloning of a linux git from more than 2 hours to
20 minutes on a 200KB/s link).
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/pkg-download.mk | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/package/pkg-download.mk b/package/pkg-download.mk
index fa9a3e8..6c57244 100644
--- a/package/pkg-download.mk
+++ b/package/pkg-download.mk
@@ -73,10 +73,13 @@ domainseparator=$(if $(1),$(1),/)
# "external dependencies" of a given build configuration.
################################################################################
+# Try a shallow clone - but that only works if the version is a ref (tag or
+# branch). Fall back on a full clone if it's a generic sha1.
define DOWNLOAD_GIT
test -e $(DL_DIR)/$($(PKG)_SOURCE) || \
(pushd $(DL_DIR) > /dev/null && \
- $(GIT) clone --bare $($(PKG)_SITE) $($(PKG)_BASE_NAME) && \
+ ($(GIT) clone --depth 1 -b $($(PKG)_DL_VERSION) --bare $($(PKG)_SITE) $($(PKG)_BASE_NAME) || \
+ $(GIT) clone --bare $($(PKG)_SITE) $($(PKG)_BASE_NAME)) && \
pushd $($(PKG)_BASE_NAME) > /dev/null && \
$(GIT) archive --format=tar --prefix=$($(PKG)_BASE_NAME)/ $($(PKG)_DL_VERSION) | \
gzip -c > $(DL_DIR)/$($(PKG)_SOURCE) && \
--
tg: (29266a3..) t/git-clone-shallow (depends on: master)
^ permalink raw reply related
* [Buildroot] [PATCH 1/1] Create a symbolic link to the target kernel directory.
From: Sagaert Johan @ 2012-11-01 1:14 UTC (permalink / raw)
To: buildroot
In-Reply-To: <5091CB65.8070409@mind.be>
Hi Arnout
I always build modules outside of the buildroot system.
Is there another (fast ) way ? I don't like to wait 20 seconds for buildroot tarring the rootfs.
Johan
-----Oorspronkelijk bericht-----
Van: buildroot-bounces at busybox.net [mailto:buildroot-bounces at busybox.net] Namens Arnout Vandecappelle
Verzonden: donderdag 1 november 2012 2:08
Aan: Sagaert Johan
CC: buildroot at busybox.net
Onderwerp: Re: [Buildroot] [PATCH 1/1] Create a symbolic link to the target kernel directory.
On 11/01/12 01:17, Sagaert Johan wrote:
> This symbolic link makes it easier when building kernel modules.
> The makefile for a module no longer has to point to the full directory name of the kernel but can use this symbolic link instead.
> You no longer need to edit the path to the kernel tree in the module's makefiles when changing your target kernel version.
I don't see the point... What's wrong with passing KERNELDIR=$(LINUX_DIR) to the sub-make in the .mk file? Cfr. lttng-modules.
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F _______________________________________________
buildroot mailing list
buildroot at busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot
^ permalink raw reply
* [Buildroot] [PATCH 1/1] Create a symbolic link to the target kernel directory.
From: Arnout Vandecappelle @ 2012-11-01 1:07 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1351729065-31324-1-git-send-email-sagaert.johan@skynet.be>
On 11/01/12 01:17, Sagaert Johan wrote:
> This symbolic link makes it easier when building kernel modules.
> The makefile for a module no longer has to point to the full directory name of the kernel but can use this symbolic link instead.
> You no longer need to edit the path to the kernel tree in the module's makefiles when changing your target kernel version.
I don't see the point... What's wrong with passing KERNELDIR=$(LINUX_DIR) to
the sub-make in the .mk file? Cfr. lttng-modules.
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH 1/1] Create a symbolic link to the target kernel directory.
From: Sagaert Johan @ 2012-11-01 0:17 UTC (permalink / raw)
To: buildroot
This symbolic link makes it easier when building kernel modules.
The makefile for a module no longer has to point to the full directory name of the kernel but can use this symbolic link instead.
You no longer need to edit the path to the kernel tree in the module's makefiles when changing your target kernel version.
Signed-off-by: Sagaert Johan <sagaert.johan@skynet.be>
---
Makefile | 1 +
linux/linux.mk | 2 ++
2 files changed, 3 insertions(+)
diff --git a/Makefile b/Makefile
index 0128839..8356aeb 100644
--- a/Makefile
+++ b/Makefile
@@ -668,6 +668,7 @@ ifeq ($(O),output)
rm -rf $(O)
endif
rm -rf $(CONFIG_DIR)/.config $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/.auto.deps
+ rm -f targetkernel
cross: $(BASE_TARGETS)
diff --git a/linux/linux.mk b/linux/linux.mk
index c4bdf90..4541081 100644
--- a/linux/linux.mk
+++ b/linux/linux.mk
@@ -219,6 +219,8 @@ define LINUX_BUILD_CMDS
fi
$(LINUX_BUILD_DTB)
$(LINUX_APPEND_DTB)
+ rm -f targetkernel
+ ln -s $(LINUX_DIR) targetkernel
endef
--
1.8.0
^ permalink raw reply related
* [Buildroot] buildroot for AM3358 AM3359 with wireless-tools shared library
From: Arnout Vandecappelle @ 2012-10-31 23:06 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1351683059.5576.42.camel@debian.fritz.box>
On 10/31/12 12:30, J?rgen Benjamin Ronshausen wrote:
> logfile1's size is 3MB, to big for pastebin, so i uploaded both to
> github
>
> https://github.com/steven11/the-hunt-for-wireless-tools
gcc-intermediate's config thinks that largefile is enabled... Can you post
output/toolchain/gcc-4.6.3-intermediate/gcc/config.status, config.log and
auto-host.h?
BTW what kind of build machine do you use?
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH buildroot] fs/common: Create initial console device
From: Arnout Vandecappelle @ 2012-10-31 22:46 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1351677232-14959-1-git-send-email-markos.chandras@gmail.com>
On 10/31/12 10:53, Markos Chandras wrote:
> From: Markos Chandras<markos.chandras@imgtec.com>
>
> A /dev/console node must be present in rootfs when the Linux kernel
> boots otherwise the kernel will print the following warning:
> "Warning: unable to open an initial console"
>
> This is because when we use an initramfs along with devtmpfs, the /dev
> directory is not populated at this point. This can cause problems when a
> program (e.g ldso with early debugging enabled) opens a standard file
> descriptor for read/write before these descriptors are actually created by
> the init process later on.
>
> Signed-off-by: Markos Chandras<markos.chandras@imgtec.com>
Good point. However:
- this is also true for mdev/udev;
- it is only relevant in a cpio/initramfs rootfs;
- it's cleaner to use the device table.
So I'd add a device table line to PACKAGES_PERMISSIONS_TABLE in
fs/cpio/cpio.mk, where the init script is also installed.
Regards,
Arnout
> ---
> fs/common.mk | 6 ++++++
> 1 files changed, 6 insertions(+), 0 deletions(-)
>
> diff --git a/fs/common.mk b/fs/common.mk
> index debf7db..d7383d1 100644
> --- a/fs/common.mk
> +++ b/fs/common.mk
> @@ -55,6 +55,12 @@ endif
> echo "$(HOST_DIR)/usr/bin/makedevs -d $(FULL_DEVICE_TABLE) $(TARGET_DIR)">> $(FAKEROOT_SCRIPT)
> endif
> echo "$(ROOTFS_$(2)_CMD)">> $(FAKEROOT_SCRIPT)
> + # create initial console if devtmpfs is used
> +ifeq ($(BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_DEVTMPFS),y)
> + echo -e 'pushd $(TARGET_DIR)/dev/> /dev/null 2>&1'>> $(FAKEROOT_SCRIPT)
> + echo -e '/bin/mknod -m 622 console c 5 1'>> $(FAKEROOT_SCRIPT)
> + echo -e 'popd> /dev/null 2>&1'>> $(FAKEROOT_SCRIPT)
> +endif
> chmod a+x $(FAKEROOT_SCRIPT)
> $(HOST_DIR)/usr/bin/fakeroot -- $(FAKEROOT_SCRIPT)
> - at rm -f $(FAKEROOT_SCRIPT) $(FULL_DEVICE_TABLE)
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] Build gcc debugger for the Target
From: Samuel Martin @ 2012-10-31 22:43 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CABtOAfxuz7Hn+05yeTgGZTExttKFk_w31Pot3e-YSvx+weVpnw@mail.gmail.com>
Hi Alexander,
2012/10/31 Alexander Khryukin <alexander@mezon.ru>
>
> Hello.
> How i can build and package gcc for taget image?
> Looks i need option like "Build gdb debugger for the Target"
> but for gcc.
To enable gcc package on the target you need the enable "Development
files inthe target FS" under the "Build options" menu, then gcc
package will be available in the "Package Selection >> Development
tools" submenu.
>
> Now my image compiles fine, but without gcc on target it
> worthless
Note that gcc on the target is not really tested, so it may not build or work...
Regards,
--
Sam
^ permalink raw reply
* [Buildroot] [PATCH 1/2] libtorrent: bump to version 0.13.3
From: Peter Korsgaard @ 2012-10-31 22:38 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1351704214-11511-1-git-send-email-gustavo@zacarias.com.ar>
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Committed both, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox