* [Buildroot] [PATCH v2 2/6] ux500-firmware: new package
From: Gregory Hermant @ 2012-11-12 17:41 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352742102-19010-1-git-send-email-gregory.hermant@calao-systems.com>
Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>
---
package/Config.in | 1 +
package/ux500-firmware/Config.in | 7 +++++++
package/ux500-firmware/ux500-firmware.mk | 20 ++++++++++++++++++++
3 files changed, 28 insertions(+)
create mode 100644 package/ux500-firmware/Config.in
create mode 100644 package/ux500-firmware/ux500-firmware.mk
diff --git a/package/Config.in b/package/Config.in
index cb78d2f..6da6e73 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -261,6 +261,7 @@ source "package/usb_modeswitch/Config.in"
source "package/usb_modeswitch_data/Config.in"
source "package/usbmount/Config.in"
source "package/usbutils/Config.in"
+source "package/ux500-firmware/Config.in"
source "package/wipe/Config.in"
endmenu
diff --git a/package/ux500-firmware/Config.in b/package/ux500-firmware/Config.in
new file mode 100644
index 0000000..7e8a94b
--- /dev/null
+++ b/package/ux500-firmware/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_UX500_FIRMWARE
+ bool "ux500-firmware"
+ help
+ This package provides various binary firmware files (closed binary blobs)
+ for the Azurewave AW-NH580 combo module (wifi, bt, gps).
+
+ https://launchpad.net/~igloocommunity-maintainers/+archive/snowball/+files/
diff --git a/package/ux500-firmware/ux500-firmware.mk b/package/ux500-firmware/ux500-firmware.mk
new file mode 100644
index 0000000..522113a
--- /dev/null
+++ b/package/ux500-firmware/ux500-firmware.mk
@@ -0,0 +1,20 @@
+#############################################################
+#
+# ux500-firmware
+#
+#############################################################
+UX500_FIRMWARE_VERSION = 1.1.3-6
+UX500_FIRMWARE_SOURCE = ux500-firmware_$(UX500_FIRMWARE_VERSION)linaro1.tar.gz
+UX500_FIRMWARE_SITE = https://launchpad.net/~igloocommunity-maintainers/+archive/snowball/+files/
+UX500_FIRMWARE_LICENSE = Snowball click-wrap license
+UX500_FIRMWARE_REDISTRIBUTE = NO
+
+define UX500_FIRMWARE_INSTALL_TARGET_CMDS
+ mkdir -p $(TARGET_DIR)/lib/firmware
+ cp -r $(@D)/* $(TARGET_DIR)/lib/firmware/
+ for f in $(TARGET_DIR)/lib/firmware/CG2900* ; do \
+ mv $$f $${f/CG2900/CG29XX}; \
+ done
+endef
+
+$(eval $(generic-package))
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH v2 1/6] hdmiservice: new package
From: Gregory Hermant @ 2012-11-12 17:41 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352742102-19010-1-git-send-email-gregory.hermant@calao-systems.com>
Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>
---
package/Config.in | 1 +
package/hdmiservice/Config.in | 10 +++++++++
package/hdmiservice/hdmiservice.mk | 43 ++++++++++++++++++++++++++++++++++++
3 files changed, 54 insertions(+)
create mode 100644 package/hdmiservice/Config.in
create mode 100644 package/hdmiservice/hdmiservice.mk
diff --git a/package/Config.in b/package/Config.in
index 074e9df..cb78d2f 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -217,6 +217,7 @@ source "package/gadgetfs-test/Config.in"
source "package/gdisk/Config.in"
source "package/gpsd/Config.in"
source "package/gvfs/Config.in"
+source "package/hdmiservice/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/hdparm/Config.in"
endif
diff --git a/package/hdmiservice/Config.in b/package/hdmiservice/Config.in
new file mode 100644
index 0000000..7fb2cf4
--- /dev/null
+++ b/package/hdmiservice/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_HDMISERVICE
+ bool "hdmiservice"
+ depends on BR2_TOOLCHAIN_HAS_THREADS
+ help
+ HDMI userspace control daemon
+
+ This package contains the HDMI userspace control daemon for the
+ snowball board
+
+ http://www.igloocommunity.org
diff --git a/package/hdmiservice/hdmiservice.mk b/package/hdmiservice/hdmiservice.mk
new file mode 100644
index 0000000..7199f1c
--- /dev/null
+++ b/package/hdmiservice/hdmiservice.mk
@@ -0,0 +1,43 @@
+#############################################################
+#
+# hdmiservice
+#
+#############################################################
+HDMISERVICE_VERSION = f75c99d1c52707240a78b4ba78e41d20d3aa3b08
+HDMISERVICE_SITE = git://igloocommunity.org/git/bsp/hdmiservice.git
+HDMISERVICE_LICENSE = MIT
+HDMISERVICE_LICENSE_FILES = debian/copyright
+HDMISERVICE_INSTALL_STAGING = YES
+
+define HDMISERVICE_BUILD_CMDS
+ $(MAKE) CC="$(TARGET_CC)" -C $(@D)
+endef
+
+define HDMISERVICE_INSTALL_STAGING_CMDS
+ $(INSTALL) -D -m 0755 $(@D)/hdmiservice.so $(STAGING_DIR)/usr/lib/hdmiservice.so
+ $(INSTALL) -D -m 0644 $(@D)/include/hdmi_service_api.h $(STAGING_DIR)/usr/include/hdmi_service_api.h
+ $(INSTALL) -D -m 0644 $(@D)/include/hdmi_service_local.h $(STAGING_DIR)/usr/include/hdmi_service_local.h
+endef
+
+define HDMISERVICE_INSTALL_TARGET_CMDS
+ $(INSTALL) -D -m 0755 $(@D)/hdmiservice.so $(TARGET_DIR)/usr/lib/hdmiservice.so
+ $(INSTALL) -D -m 0755 $(@D)/hdmistart $(TARGET_DIR)/usr/bin/hdmistart
+endef
+
+define HDMISERVICE_UNINSTALL_STAGING_CMDS
+ rm -f $(STAGING_DIR)/usr/lib/hdmiservice.so
+ rm -f $(STAGING_DIR)/usr/include/hdmi_service_api.h
+ rm -f $(STAGING_DIR)/usr/include/hdmi_service_local.h
+endef
+
+define HDMISERVICE_UNINSTALL_TARGET_CMDS
+ rm -f $(TARGET_DIR)/usr/lib/hdmiservice.so
+ rm -f $(TARGET_DIR)/usr/bin/hdmistart
+endef
+
+define HDMISERVICE_CLEAN_CMDS
+ $(MAKE) -C $(@D) clean
+endef
+
+
+$(eval $(generic-package))
--
1.7.9.5
^ permalink raw reply related
* [Buildroot] [PATCH v2 0/6] Add support for the snowball board
From: Gregory Hermant @ 2012-11-12 17:41 UTC (permalink / raw)
To: buildroot
Snowball board is a low power, low cost Single Board Computer based
on the ST-Ericsson Nova A9500 processor (Dual Cortex-A9 + MALI 400 GPU).
More info at www.igloocommunity.org
The snowball board boots from eMMC, loads the linux kernel and mounts
its root filesystem either from eMMC or from a microSD card.
The user should prepare a microSD card with two partitions.
On the fist partition he will install the kernel image and on the second
one the root filesystem.
TO DO:
* Add the GPS support.
* Add the possibility to build an eMMC image directly from buildroot.
Gregory Hermant (6):
hdmiservice: new package
ux500-firmware: new package
Add board files for snowball
Add init script files for snowball board
bluez-utils: add cg2900 support for snowball board
Add config file for the snowball board
board/calao/snowball/busybox-1.20.x.config | 1024 ++++++++++++++++++++
board/calao/snowball/linux-3.4.patch | 126 +++
configs/calao_snowball_defconfig | 49 +
package/Config.in | 3 +
...an_patches_enable_cg2900_on_upstream_4.91.patch | 88 ++
package/hdmiservice/Config.in | 10 +
package/hdmiservice/hdmiservice.mk | 43 +
package/snowball-init/Config.in | 10 +
package/snowball-init/snowball-init.mk | 15 +
package/ux500-firmware/Config.in | 7 +
package/ux500-firmware/ux500-firmware.mk | 20 +
11 files changed, 1395 insertions(+)
create mode 100644 board/calao/snowball/busybox-1.20.x.config
create mode 100644 board/calao/snowball/linux-3.4.patch
create mode 100644 configs/calao_snowball_defconfig
create mode 100644 package/bluez_utils/bluez_utils-4.101-debian_patches_enable_cg2900_on_upstream_4.91.patch
create mode 100644 package/hdmiservice/Config.in
create mode 100644 package/hdmiservice/hdmiservice.mk
create mode 100644 package/snowball-init/Config.in
create mode 100644 package/snowball-init/snowball-init.mk
create mode 100644 package/ux500-firmware/Config.in
create mode 100644 package/ux500-firmware/ux500-firmware.mk
--
1.7.9.5
^ permalink raw reply
* [Buildroot] [Bug 5666] Fails to build python 2.7.2 for 2440 arm
From: bugzilla at busybox.net @ 2012-11-12 14:35 UTC (permalink / raw)
To: buildroot
In-Reply-To: <bug-5666-163@https.bugs.busybox.net/>
https://bugs.busybox.net/show_bug.cgi?id=5666
Thomas Petazzoni <thomas.petazzoni@free-electrons.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WORKSFORME
--
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
^ permalink raw reply
* [Buildroot] [Bug 5666] Fails to build python 2.7.2 for 2440 arm
From: bugzilla at busybox.net @ 2012-11-12 14:35 UTC (permalink / raw)
To: buildroot
In-Reply-To: <bug-5666-163@https.bugs.busybox.net/>
https://bugs.busybox.net/show_bug.cgi?id=5666
--- Comment #3 from Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 2012-11-12 14:34:59 UTC ---
Ok. My guess is that:
*) You built once without WCHAR support in the toolchain (BR2_USE_WCHAR not
enabled)
*) You went back in menuconfig, enabled Python. But to do this, you enabled
WCHAR support in the toolchain. And then, instead of doing a complete "make
clean all" cycle that ensures the toolchain gets rebuilt, you just did "make".
So it tried to build Python without rebuilding the toolchain, leading to your
error.
I'm pretty sure that the problem will go away if you do a "make clean all"
cycle. I tested your configuration here and it built just fine.
--
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
^ permalink raw reply
* [Buildroot] [Bug 5666] Fails to build python 2.7.2 for 2440 arm
From: bugzilla at busybox.net @ 2012-11-12 13:04 UTC (permalink / raw)
To: buildroot
In-Reply-To: <bug-5666-163@https.bugs.busybox.net/>
https://bugs.busybox.net/show_bug.cgi?id=5666
--- Comment #2 from hardcorefs <hardcore@hardcoreforensics.com> 2012-11-12 13:04:07 UTC ---
Created attachment 4622
--> https://bugs.busybox.net/attachment.cgi?id=4622
example of broken python build
--
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
^ permalink raw reply
* [Buildroot] [Bug 5666] Fails to build python 2.7.2 for 2440 arm
From: bugzilla at busybox.net @ 2012-11-12 12:38 UTC (permalink / raw)
To: buildroot
In-Reply-To: <bug-5666-163@https.bugs.busybox.net/>
https://bugs.busybox.net/show_bug.cgi?id=5666
--- Comment #1 from Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 2012-11-12 12:38:00 UTC ---
Could you please share your Buildroot .config ?
--
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
^ permalink raw reply
* [Buildroot] [Bug 5666] New: Fails to build python 2.7.2 for 2440 arm
From: bugzilla at busybox.net @ 2012-11-12 12:28 UTC (permalink / raw)
To: buildroot
https://bugs.busybox.net/show_bug.cgi?id=5666
Summary: Fails to build python 2.7.2 for 2440 arm
Product: buildroot
Version: 2012.08
Platform: PC
OS/Version: Linux
Status: NEW
Severity: blocker
Priority: P5
Component: Other
AssignedTo: unassigned at buildroot.uclibc.org
ReportedBy: hardcore at hardcoreforensics.com
CC: buildroot at uclibc.org
Estimated Hours: 0.0
The build process for Python under the samsung cpu 2440 fails to build with
the following error
bob at bob-virtual-machine:~/buildroot-2012.08$ make
>>> python 2.7.2 Building
PATH="/home/bob/buildroot-2012.08/output/host/bin:/home/bob/buildroot-2012.08/output/host/usr/bin:/home/bob/buildroot-2012.08/output/host/usr/sbin/:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"
PERLLIB="/home/bob/buildroot-2012.08/output/host/usr/lib/perl"
PYTHON_MODULES_INCLUDE=/home/bob/buildroot-2012.08/output/host/usr/arm-unknown-linux-uclibcgnueabi/sysroot/usr/include
PYTHON_MODULES_LIB="/home/bob/buildroot-2012.08/output/host/usr/arm-unknown-linux-uclibcgnueabi/sysroot/lib
/home/bob/buildroot-2012.08/output/host/usr/arm-unknown-linux-uclibcgnueabi/sysroot/usr/lib"
/usr/bin/make -j2 -C /home/bob/buildroot-2012.08/output/build/python-2.7.2/
make[1]: Entering directory
`/home/bob/buildroot-2012.08/output/build/python-2.7.2'
/home/bob/buildroot-2012.08/output/host/usr/bin/arm-unknown-linux-uclibcgnueabi-gcc
-c -fno-strict-aliasing -pipe -Os -DNDEBUG -g -fwrapv -O3 -Wall
-Wstrict-prototypes -I. -IInclude -I./Include -fPIC -DPy_BUILD_CORE -o
Modules/python.o ./Modules/python.c
/home/bob/buildroot-2012.08/output/host/usr/bin/arm-unknown-linux-uclibcgnueabi-gcc
-c -fno-strict-aliasing -pipe -Os -DNDEBUG -g -fwrapv -O3 -Wall
-Wstrict-prototypes -I. -IInclude -I./Include -fPIC -DPy_BUILD_CORE -o
Parser/acceler.o Parser/acceler.c
In file included from Include/Python.h:85:0,
from ./Modules/python.c:3:
Include/unicodeobject.h:575:20: warning: type defaults to 'int' in declaration
of 'wchar_t'
Include/unicodeobject.h:575:28: error: expected ';', ',' or ')' before '*'
token
Include/unicodeobject.h:593:14: warning: type defaults to 'int' in declaration
of 'wchar_t'
Include/unicodeobject.h:593:22: error: expected ';', ',' or ')' before '*'
token
In file included from Include/Python.h:85:0,
from Include/pgenheaders.h:10,
from Parser/acceler.c:13:
Include/unicodeobject.h:575:20: warning: type defaults to 'int' in declaration
of 'wchar_t'
Include/unicodeobject.h:575:28: error: expected ';', ',' or ')' before '*'
token
Include/unicodeobject.h:593:14: warning: type defaults to 'int' in declaration
of 'wchar_t'
Include/unicodeobject.h:593:22: error: expected ';', ',' or ')' before '*'
token
make[1]: *** [Modules/python.o] Error 1
make[1]: *** Waiting for unfinished jobs....
make[1]: *** [Parser/acceler.o] Error 1
make[1]: Leaving directory
`/home/bob/buildroot-2012.08/output/build/python-2.7.2'
make: *** [/home/bob/buildroot-2012.08/output/build/python-2.7.2/.stamp_built]
Error 2
bob at bob-virtual-machine:~/buildroot-2012.08$
--
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
^ permalink raw reply
* [Buildroot] mesa3d: "ImportError: No module named libxml2"
From: Will Wagner @ 2012-11-12 11:56 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1531E53627F1F749B4FE809BF2A4EB6703AA459A@wetmex10>
On 12/11/2012 11:39, Vellemans, Noel wrote:
>>> The problem is that libxml2 python bindings are part of libxml2. If
> we want to build them, we would have to make host-libxml2 depend on
>>> host-python...
>>> And that's certainly something we don't want.
>
> NOTE: At this time I did experiment a little with the libxml-2/python
> (in the latest-git-buildroot), in order to get mesa3d working, but I'm
> not 100% happy with it (as Maxime and Thomas an now you told me, and yes
> I do agree, it is not something that looks good, to make host-libxml2
> depend on host-python.)
>
>
>>> BTW, Thomas already told you this on October 12 (though his
> explanation was a bit shorter :-).
>
>
I ported newer X11 to buildroot a while back a posted a link to the
repository. At the time the only comment I got was from Thomas about the
requirement for python/libxml2 which he hated then as well :)
I patched it so that it conditionally build host-libxml2 with the
reuqired support if mesa3d was selected. My patch for this is at
https://gitorious.org/willw-buildroot/willw-buildroot/commit/421b4fd572869b22de11a0f0fad161e284c41bcc
If we want newer mesa3d support I think we are going to have to come up
with some suitable solution for this.
Regards
Will
--
------------------------------------------------------------------------
Will Wagner will_wagner at carallon.com
Development Manager Office Tel: +44 (0)20 7371 2032
Carallon Ltd, Studio G20, Shepherds Building, Rockley Rd, London W14 0DA
------------------------------------------------------------------------
^ permalink raw reply
* [Buildroot] [PATCH] lcdproc: remove patch rejected upstream
From: spdawson at gmail.com @ 2012-11-12 11:47 UTC (permalink / raw)
To: buildroot
From: Simon Dawson <spdawson@gmail.com>
Remove an lcdproc patch which has been rejected upstream. It has been
decided by lcdproc developer Markus Dolze that the behaviour of the
client_add_key command when handling the minus key is "intentional to
some degree."
This patch also takes the opportunity to remove the version number from the
single remaining lcdproc patch.
Signed-off-by: Simon Dawson <spdawson@gmail.com>
---
...cdproc-0.5.5-fix-client_add_key-for-minus.patch | 38 --------------------
...5.5-LCDd.conf.patch => lcdproc-LCDd.conf.patch} | 0
2 files changed, 38 deletions(-)
delete mode 100644 package/lcdproc/lcdproc-0.5.5-fix-client_add_key-for-minus.patch
rename package/lcdproc/{lcdproc-0.5.5-LCDd.conf.patch => lcdproc-LCDd.conf.patch} (100%)
diff --git a/package/lcdproc/lcdproc-0.5.5-fix-client_add_key-for-minus.patch b/package/lcdproc/lcdproc-0.5.5-fix-client_add_key-for-minus.patch
deleted file mode 100644
index c17ee83..0000000
--- a/package/lcdproc/lcdproc-0.5.5-fix-client_add_key-for-minus.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-Calling client_add_key as follows
-
- client_add_key -
-
-will fail. However using an explicit -shared option, like this:
-
- client_add_key -shared -
-
-will succeed. This is caused by a failure to parse the - key token, which is
-mistaken for the first character of an option argument.
-
-The client_add_key command also returns a spurious "success" message when a
-malformed option is supplied.
-
-This patch fixes both issues.
-
-Signed-off-by: Simon Dawson <spdawson@gmail.com>
-
-diff -Nurp a/server/commands/client_commands.c b/server/commands/client_commands.c
---- a/server/commands/client_commands.c 2011-08-14 13:29:16.000000000 +0100
-+++ b/server/commands/client_commands.c 2012-10-05 07:50:40.357795535 +0100
-@@ -181,7 +181,7 @@ client_add_key_func(Client *c, int argc,
- }
-
- argnr = 1;
-- if (argv[argnr][0] == '-') {
-+ if (argv[argnr][0] == '-' && strcmp(argv[argnr], "-") != 0) {
- if (strcmp( argv[argnr], "-shared") == 0) {
- exclusively = 0;
- }
-@@ -190,6 +190,7 @@ client_add_key_func(Client *c, int argc,
- }
- else {
- sock_printf_error(c->sock, "Invalid option: %s\n", argv[argnr]);
-+ return 0;
- }
- argnr++;
- }
diff --git a/package/lcdproc/lcdproc-0.5.5-LCDd.conf.patch b/package/lcdproc/lcdproc-LCDd.conf.patch
similarity index 100%
rename from package/lcdproc/lcdproc-0.5.5-LCDd.conf.patch
rename to package/lcdproc/lcdproc-LCDd.conf.patch
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] mesa3d: "ImportError: No module named libxml2"
From: Vellemans, Noel @ 2012-11-12 11:39 UTC (permalink / raw)
To: buildroot
In-Reply-To: <509DB31C.90903@mind.be>
Hi Arnout,
Thanks for the DETAILED answer.
Maybe I do have to clarify what I'm trying to do.
First of all: I'm using an own-buldroot-branch for my projects (based on
an older buildroot version).
BUT: very often I do test-build (and run) the git-buildroot in order to
test a newer buildroot-version (just for test not for real-production).
{I build and test-run (at this time) for at91, imx53 and occasionally
for geode-pc}
I must say lot of things in buildroot, I'm familiar with, but some parts
are still "black-magic", and I do not always have the time/expertise to
investigate the real-problem in these 'test' git-buildroot-versions.
Further more, it is not that simple to keep up with all the "GOOD"
buildroot-work you guys are doing, and at on some
occasions/trouble-cases, I do "request" some help of the real-buildroot
experts, in order to understand/find-out where it goes wrong.
>> The problem is that libxml2 python bindings are part of libxml2. If
we want to build them, we would have to make host-libxml2 depend on
>> host-python...
>> And that's certainly something we don't want.
NOTE: At this time I did experiment a little with the libxml-2/python
(in the latest-git-buildroot), in order to get mesa3d working, but I'm
not 100% happy with it (as Maxime and Thomas an now you told me, and yes
I do agree, it is not something that looks good, to make host-libxml2
depend on host-python.)
>> BTW, Thomas already told you this on October 12 (though his
explanation was a bit shorter :-).
I do kind of agree, but often we as buildroot-users do not have the same
level of buildroot expertise/knowledge.
What I wonder is, how you guys are so fast in finding the
"real"-problem?
I do understand that a lot of this comes from experience, but I also
understand that it is not that always simple, to find that "real" error.
But as we (developers) know, expertise/knowledge is not written down in
a COOK-BOOK, and the only way to get learn, such things, is to use it.
Or did I not find the magic button "Solve all" :-) ???
Anyway, keep up the good work and many thanks....
Regards,
Noel.
-----Original Message-----
From: Arnout Vandecappelle [mailto:arnout at mind.be]
Sent: 10Nov12 02:51
To: Vellemans, Noel
Cc: buildroot at busybox.net
Subject: Re: [Buildroot] mesa3d: "ImportError: No module named libxml2"
On 11/05/12 10:18, Vellemans, Noel wrote:
> I do end up with this error while building mesa3d" "ImportError: No
> module named libxml2" (ONLY if I do build into a clean-output
> directory!)
>
> The strange thing is that when building for a second time it all
> builds fine.
The problem is that host-python is used, not native python, and
host-python doesn't have libxml2 bindings. python is used to generate
api_exec_es1.c:
python -t -O -O main/es_generator.py -S main/APIspec.xml -V GLES1.1 >
main/api_exec_es1.c When you run it the second time, the file exists
(and is empty), so you won't get an error. But as soon as you try to
use GLES, you'll notice that it doesn't work :-)
The problem is that libxml2 python bindings are part of libxml2. If
we want to build them, we would have to make host-libxml2 depend on
host-python...
And that's certainly something we don't want.
A work-around is to set
MESA3D_CONF_ENV = PYTHON2=/usr/bin/python but that's not something we
want to do in buildroot either, because there is not guarantee that
native python has libxml2, or that the native python is python2, or that
it is in /usr/bin.
The only realistic solution I can think of is to create a blind
BR2_NEED_HOST_LIBXML2_PYTHON_BINDINGS and select this from mesa3d. Then
we can conditionally depend on host-python and build the bindings in
libxml2.mk.
But it is still fairly horrible.
BTW, Thomas already told you this on October 12 (though his
explanation was a bit shorter :-).
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] arm920t Linux implementation
From: Thomas Petazzoni @ 2012-11-12 10:39 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1712712534.322996678.1352716419784.JavaMail.root@zimbra29-e5.priv.proxad.net>
Lionel,
On Mon, 12 Nov 2012 11:33:39 +0100 (CET), lionel.jourdren at free.fr wrote:
> In fact I'm totally new for this kind of things, so as you said, I
> was just asking, at first, to a theoretical confirmation. Every thing
> has been generated so I'm ready to test. I'll keep all Buildroot
> mailing list follwers informed...
Ok.
> PS : not sure I'm responding correctly (regarding email addresses).
> Please tell me if I've done something wrong.
It's mostly correct, except that you shouldn't top-post:
http://en.wikipedia.org/wiki/Posting_style#Top-posting
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] arm920t Linux implementation
From: lionel.jourdren at free.fr @ 2012-11-12 10:33 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121112112416.0e1b9630@skate>
Hi,
In fact I'm totally new for this kind of things, so as you said, I was just asking, at first, to a theoretical confirmation.
Every thing has been generated so I'm ready to test.
I'll keep all Buildroot mailing list follwers informed...
Many thanks for the response,
Best Regards,
Lionel.
PS : not sure I'm responding correctly (regarding email addresses). Please tell me if I've done something wrong.
----- Mail original -----
De: "Thomas Petazzoni" <thomas.petazzoni@free-electrons.com>
?: "lionel jourdren" <lionel.jourdren@free.fr>
Cc: buildroot at busybox.net
Envoy?: Lundi 12 Novembre 2012 11:24:16
Objet: Re: [Buildroot] arm920t Linux implementation
Lionel,
On Mon, 12 Nov 2012 09:01:22 +0100 (CET), lionel.jourdren at free.fr wrote:
> I?m trying to build up a configuration for a card embedding an ARM
> AT91RM9200 processor.
>
> I?d like it to work in little endian mode, and expect to get a zImage
> and initrd file for a linux 2.6.38/uClibC 0.9.31
>
> From what I understood it seems that it?s not necessary to set
> BR2_TARGET_ROOTFS_INITRAMFS (which should embedd initramfs in zImage)
>
> Could someone have a quick look to the configuration below, and see
> if I?ve done something wrong ?
At first sight, nothing looks particularly wrong in your configuration.
But you're not explaining the problem(s) you're facing... so it's hard
to help you. Or are you just seeking a theoretical confirmation that
you configuration looks not too bad?
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] [PATCH] libtool version update 2.4.2
From: Thomas Petazzoni @ 2012-11-12 10:26 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50A0A952.5090001@relinux.de>
Stephan,
On Mon, 12 Nov 2012 08:46:26 +0100, Stephan Hoffmann wrote:
> did you ever think about inventing a kind of "testing" branch with a
> seperate autobuilder running on? That could keep major build problems
> away from the master branch.
Yes, this has been discussed during the Developers Meeting, at least
for the "next" branch that gets created once -rc1 is out, to accumulate
patches for the next release.
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] arm920t Linux implementation
From: Thomas Petazzoni @ 2012-11-12 10:24 UTC (permalink / raw)
To: buildroot
In-Reply-To: <801077173.321754841.1352707282691.JavaMail.root@zimbra29-e5.priv.proxad.net>
Lionel,
On Mon, 12 Nov 2012 09:01:22 +0100 (CET), lionel.jourdren at free.fr wrote:
> I?m trying to build up a configuration for a card embedding an ARM
> AT91RM9200 processor.
>
> I?d like it to work in little endian mode, and expect to get a zImage
> and initrd file for a linux 2.6.38/uClibC 0.9.31
>
> From what I understood it seems that it?s not necessary to set
> BR2_TARGET_ROOTFS_INITRAMFS (which should embedd initramfs in zImage)
>
> Could someone have a quick look to the configuration below, and see
> if I?ve done something wrong ?
At first sight, nothing looks particularly wrong in your configuration.
But you're not explaining the problem(s) you're facing... so it's hard
to help you. Or are you just seeking a theoretical confirmation that
you configuration looks not too bad?
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] [PATCH] libtool version update 2.4.2
From: Alexander Khryukin @ 2012-11-12 10:18 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50A0A952.5090001@relinux.de>
2012/11/12 Stephan Hoffmann <sho@relinux.de>
> Am 11.11.2012 23:05, schrieb Thomas Petazzoni:
> > On Sun, 11 Nov 2012 23:00:56 +0100, Arnout Vandecappelle wrote:
> >> On 11/10/12 10:53, Thomas Petazzoni wrote:
> >>> Alexander,
> >>>
> >>> On Fri, 9 Nov 2012 16:38:52 +0400, Alexander Khryukin wrote:
> >>>
> >>>> -LIBTOOL_VERSION = 2.2.10
> >>>> +LIBTOOL_VERSION = 2.4.2
> >>> How much testing did you give to this version bump? A libtool
> >>> version bump is a very sensitive operation, as host-libtool is used
> >>> to autoreconfigure many packages in Buildroot. Therefore, this
> >>> patch needs a good amount of testing before being committed
> >>> (ideally testing that all packages having<foo>_AUTORECONF = YES
> >>> still build).
> >> Can't we rely on the autobuilders to do that?
> > Sure, we'll certainly rely on the autobuilders for a complete testing.
> Hello,
>
> did you ever think about inventing a kind of "testing" branch with a
> seperate autobuilder running on? That could keep major build problems
> away from the master branch.
>
> Just my 2 cents
>
> Stephan
> > But I wanted to know if it had been tested again 2 packages or 20-40
> > packages, which makes quite a bit of difference :)
> >
> >> That said, I wouldn't do this for 2012.11 anymore...
> > For sure, it should not be part of 2012.11, we already have enough
> > issues to fix.
> >
> > Thomas
>
>
> --
> reLinux - Stephan Hoffmann
> Am Schmidtgrund 124 50765 K?ln
> Tel. +49.221.95595-19 Fax: -64
> www.reLinux.de sho at reLinux.de
>
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>
I tested new libtool for all packages in Develop section + a lot of others.
Also i can share own .config
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121112/a5d7ce44/attachment.html>
^ permalink raw reply
* [Buildroot] [PATCH v4 2/2] neardal: new package
From: spdawson at gmail.com @ 2012-11-12 10:10 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352715001-6673-1-git-send-email-spdawson@gmail.com>
From: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Simon Dawson <spdawson@gmail.com>
---
v4: Incorporate Arnout Vandecappelle's suggested improvements
v3: Remove spurious dependency on neard, add Arnout Vandecappelle's acks
v2: (No v2, bumped entire patch series to v3)
package/Config.in | 1 +
package/neardal/Config.in | 12 ++++++++++++
package/neardal/neardal.mk | 16 ++++++++++++++++
3 files changed, 29 insertions(+)
create mode 100644 package/neardal/Config.in
create mode 100644 package/neardal/neardal.mk
diff --git a/package/Config.in b/package/Config.in
index 6115fb4..0e6970c 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -419,6 +419,7 @@ source "package/libusb/Config.in"
source "package/libusb-compat/Config.in"
source "package/libv4l/Config.in"
source "package/mtdev/Config.in"
+source "package/neardal/Config.in"
source "package/pcsc-lite/Config.in"
endmenu
diff --git a/package/neardal/Config.in b/package/neardal/Config.in
new file mode 100644
index 0000000..990b302
--- /dev/null
+++ b/package/neardal/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_NEARDAL
+ bool "neardal"
+ depends on BR2_USE_WCHAR # glib2
+ select BR2_PACKAGE_DBUS
+ select BR2_PACKAGE_DBUS_GLIB
+ help
+ Provides a simple C API to exchange data with the neard NFC manager daemon.
+
+ https://github.com/connectivity/neardal
+
+comment "neardal requires a toolchain with WCHAR support"
+ depends on !BR2_USE_WCHAR
diff --git a/package/neardal/neardal.mk b/package/neardal/neardal.mk
new file mode 100644
index 0000000..f898df5
--- /dev/null
+++ b/package/neardal/neardal.mk
@@ -0,0 +1,16 @@
+#############################################################
+#
+# neardal
+#
+#############################################################
+NEARDAL_VERSION = 0.7
+NEARDAL_SITE = http://github.com/connectivity/neardal/tarball/$(NEARDAL_VERSION)
+NEARDAL_SOURCE = connectivity-neardal-$(NEARDAL_VERSION).tar.gz
+NEARDAL_INSTALL_STAGING = YES
+NEARDAL_LICENSE = GPLv2
+NEARDAL_LICENSE_FILES = COPYING
+
+NEARDAL_DEPENDENCIES = dbus-glib
+NEARDAL_AUTORECONF = YES
+
+$(eval $(autotools-package))
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] [PATCH v4 1/2] neard: new package
From: spdawson at gmail.com @ 2012-11-12 10:10 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1352715001-6673-1-git-send-email-spdawson@gmail.com>
From: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Simon Dawson <spdawson@gmail.com>
---
v4: No changes; patch series version bumped
v3: Incorporated improvements suggested by Baruch Siach,
add Arnout Vandecappelle's acks
v2: Incorporated improvements suggested by Thomas Petazzoni
package/Config.in | 1 +
package/neard/Config.in | 12 ++++++++++++
package/neard/neard.mk | 14 ++++++++++++++
3 files changed, 27 insertions(+)
create mode 100644 package/neard/Config.in
create mode 100644 package/neard/neard.mk
diff --git a/package/Config.in b/package/Config.in
index 074e9df..6115fb4 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -237,6 +237,7 @@ source "package/mdadm/Config.in"
source "package/memtester/Config.in"
source "package/minicom/Config.in"
source "package/nanocom/Config.in"
+source "package/neard/Config.in"
source "package/ofono/Config.in"
source "package/open2300/Config.in"
source "package/openocd/Config.in"
diff --git a/package/neard/Config.in b/package/neard/Config.in
new file mode 100644
index 0000000..a50dbeb
--- /dev/null
+++ b/package/neard/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_NEARD
+ bool "neard"
+ select BR2_PACKAGE_DBUS
+ select BR2_PACKAGE_LIBGLIB2
+ select BR2_PACKAGE_LIBNL
+ help
+ Near Field Communication (NFC) manager. This userspace daemon is a part
+ of the NFC stack provided by the Linux NFC project.
+
+ http://git.kernel.org/?p=network/nfc/neard.git;a=summary
+
+ https://01.org/linux-nfc/documentation/how-start-linux-nfc-code...
diff --git a/package/neard/neard.mk b/package/neard/neard.mk
new file mode 100644
index 0000000..28bde71
--- /dev/null
+++ b/package/neard/neard.mk
@@ -0,0 +1,14 @@
+#############################################################
+#
+# neard
+#
+#############################################################
+NEARD_VERSION = 0.8
+NEARD_SITE = $(BR2_KERNEL_MIRROR)/linux/network/nfc
+NEARD_LICENSE = GPLv2
+NEARD_LICENSE_FILES = COPYING
+
+NEARD_DEPENDENCIES = dbus libglib2 libnl
+NEARD_CONF_OPT = --disable-traces
+
+$(eval $(autotools-package))
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] [PATCH v4 0/2] Add neard and neardal packages
From: spdawson at gmail.com @ 2012-11-12 10:09 UTC (permalink / raw)
To: buildroot
From: Simon Dawson <spdawson@gmail.com>
This patch set adds the neard and neardal packages for linux-nfc support.
Simon Dawson (2):
neard: new package
neardal: new package
package/Config.in | 2 ++
package/neard/Config.in | 12 ++++++++++++
package/neard/neard.mk | 14 ++++++++++++++
package/neardal/Config.in | 12 ++++++++++++
package/neardal/neardal.mk | 16 ++++++++++++++++
5 files changed, 56 insertions(+)
create mode 100644 package/neard/Config.in
create mode 100644 package/neard/neard.mk
create mode 100644 package/neardal/Config.in
create mode 100644 package/neardal/neardal.mk
--
1.7.10.4
^ permalink raw reply
* [Buildroot] [PATCH] lcdproc: fix autobuilder failures
From: spdawson at gmail.com @ 2012-11-12 9:18 UTC (permalink / raw)
To: buildroot
From: Simon Dawson <spdawson@gmail.com>
The lcdproc version bump to 0.5.6 has resulted in autobuilder failures such as
the following.
http://autobuild.buildroot.org/results/9967bc20a6094e836c4c18ff2cd30edef143bb8e/build-end.log
The 0.5.6 release added a new glcd driver, which requires the freetype and zlib
libraries. This patch makes the lcdproc package depend on freetype and zlib.
Signed-off-by: Simon Dawson <spdawson@gmail.com>
---
package/lcdproc/Config.in | 2 ++
package/lcdproc/lcdproc.mk | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/package/lcdproc/Config.in b/package/lcdproc/Config.in
index 820f4ea..e0afc44 100644
--- a/package/lcdproc/Config.in
+++ b/package/lcdproc/Config.in
@@ -1,6 +1,8 @@
config BR2_PACKAGE_LCDPROC
bool "lcdproc"
+ select BR2_PACKAGE_FREETYPE
select BR2_PACKAGE_NCURSES
+ select BR2_PACKAGE_ZLIB
help
LCD display driver daemon and clients
diff --git a/package/lcdproc/lcdproc.mk b/package/lcdproc/lcdproc.mk
index aa204f1..2a80289 100644
--- a/package/lcdproc/lcdproc.mk
+++ b/package/lcdproc/lcdproc.mk
@@ -16,6 +16,6 @@ ifeq ($(BR2_PACKAGE_LCDPROC_MENUS),y)
LCDPROC_CONF_OPT += --enable-lcdproc-menus
endif
-LCDPROC_DEPENDENCIES = ncurses
+LCDPROC_DEPENDENCIES = freetype ncurses zlib
$(eval $(autotools-package))
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] [PATCH] pkg-infra: rename <pkg>-rsync to <pkg>-extract
From: Stephan Hoffmann @ 2012-11-12 8:27 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1350225704-5693-1-git-send-email-arnout@mind.be>
Am 14.10.2012 16:41, schrieb Arnout Vandecappelle (Essensium/Mind):
> The legal-info target (and possibly others as well) depends on
> <pkg>-extract to make sure the license file is available. However,
> when <PKG>_OVERRIDE_SRCDIR is active, the <pkg>-extract target
> doesn't exist.
>
> To solve this, we just call the target that rsyncs the source
> <pkg>-extract.
>
> While we're at it, also add a <pkg>-patch target (which is equivalent
> to <pkg>-extract). That avoids the same problem in the future if
> something starts depending on <pkg>-patch.
>
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
>
> ---
> package/pkg-generic.mk | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/package/pkg-generic.mk b/package/pkg-generic.mk
> index ffe7dfb..c2c1b06 100644
> --- a/package/pkg-generic.mk
> +++ b/package/pkg-generic.mk
> @@ -378,9 +378,11 @@ else
> $(1)-configure: $(1)-depends \
> $$($(2)_TARGET_CONFIGURE)
>
> -$(1)-depends: $(1)-rsync $$($(2)_DEPENDENCIES)
> +$(1)-depends: $(1)-extract $$($(2)_DEPENDENCIES)
>
> -$(1)-rsync: $$($(2)_TARGET_RSYNC)
> +$(1)-patch: $(1)-extract
> +
> +$(1)-extract: $$($(2)_TARGET_RSYNC)
>
> $(1)-source: $$($(2)_TARGET_RSYNC_SOURCE)
> endif
Hello,
this does not fix my issue, not even after doing a "make clean".
> LANG=C make legal-info
> mkdir -p /home/stephan/Dokumente/BeagleBone/buildroot/output/target
> if ! [ -d
> "/home/stephan/Dokumente/BeagleBone/buildroot/output/target/bin" ]; then \
> if [ -d
> "/home/stephan/Dokumente/BeagleBone/buildroot/fs/skeleton" ]; then \
> cp -fa
> /home/stephan/Dokumente/BeagleBone/buildroot/fs/skeleton/*
> /home/stephan/Dokumente/BeagleBone/buildroot/output/target/; \
> fi; \
> fi
> find /home/stephan/Dokumente/BeagleBone/buildroot/output/target -type
> d -name CVS -print0 -o -name .svn -print0 | xargs -0 rm -rf
> find /home/stephan/Dokumente/BeagleBone/buildroot/output/target -type
> f \( -name .empty -o -name '*~' \) -print0 | xargs -0 rm -rf
> touch /home/stephan/Dokumente/BeagleBone/buildroot/output/build/.root
> >>> Collecting legal info
<snip>
> >>> linux custom Syncing from source dir
> /home/stephan/Dokumente/BeagleBone/kernel/kernel
> rsync -au /home/stephan/Dokumente/BeagleBone/kernel/kernel/
> /home/stephan/Dokumente/BeagleBone/buildroot/output/build/linux-custom
> cp: cannot stat `/home/stephan/Dokumente/dl/linux-custom.tar.gz': No
> such file or directory
> make: *** [linux-legal-info] Error 1
Regards
Stephan
--
reLinux - Stephan Hoffmann
Am Schmidtgrund 124 50765 K?ln
Tel. +49.221.95595-19 Fax: -64
www.reLinux.de sho at reLinux.de
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: defconfig
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121112/c4961bf1/attachment.ksh>
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: local.mk
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121112/c4961bf1/attachment-0001.ksh>
^ permalink raw reply
* [Buildroot] buildroot-2012.08: Handling drm module
From: Arnout Vandecappelle @ 2012-11-12 8:15 UTC (permalink / raw)
To: buildroot
In-Reply-To: <785D21F16C354A27B5E83E9F56FEA59B@ZviVeredPC>
On 11/12/12 04:58, Zvi Vered wrote:
> Hello,
>
> Build is OK.
> The resulting image boots OK.
> But the screen flickers with this image.
> The image was not built with buildroot.
So, why are you asking this on the buildroot mailing list then?
> I built vanilla 3.4.7 downloaded from kernel.org
>
> With knoppix 7.0.4, when I boot with: "knoppix 2" there is no flickering.
> When I boot with "knoppix 2 nodrm" the screen flickers.
>
> Is "nodrm" a boot parameter (like vga=normal) ?
I have no idea - perhaps a question to ask on the knoppix mailing list?
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] arm920t Linux implementation
From: lionel.jourdren at free.fr @ 2012-11-12 8:01 UTC (permalink / raw)
To: buildroot
In-Reply-To: <803750442.321754226.1352707257219.JavaMail.root@zimbra29-e5.priv.proxad.net>
Hi,
I?m trying to build up a configuration for a card embedding an ARM AT91RM9200 processor.
I?d like it to work in little endian mode, and expect to get a zImage and initrd file for a linux 2.6.38/uClibC 0.9.31
From what I understood it seems that it?s not necessary to set BR2_TARGET_ROOTFS_INITRAMFS (which should embedd initramfs in zImage)
Could someone have a quick look to the configuration below, and see if I?ve done something wrong ?
Thanks in advance,
Lionel JOURDREN.
#
# Automatically generated make config: don't edit
# Buildroot 2012.08 Configuration
#
BR2_HAVE_DOT_CONFIG=y
BR2_arm=y
# BR2_armeb is not set
# BR2_avr32 is not set
# BR2_bfin is not set
# BR2_i386 is not set
# 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_generic_arm is not set
# BR2_arm7tdmi is not set
# BR2_arm610 is not set
# BR2_arm710 is not set
# BR2_arm720t is not set
BR2_arm920t=y
# BR2_arm922t is not set
# BR2_arm926t is not set
# BR2_arm10t is not set
# BR2_arm1136jf_s is not set
# BR2_arm1176jz_s is not set
# BR2_arm1176jzf_s is not set
# BR2_cortex_a8 is not set
# BR2_cortex_a9 is not set
# BR2_sa110 is not set
# BR2_sa1100 is not set
# BR2_xscale is not set
# BR2_iwmmxt is not set
BR2_ARM_TYPE="ARM920T"
BR2_ARM_EABI=y
# BR2_ARM_OABI is not set
BR2_ARCH="arm"
BR2_ENDIAN="LITTLE"
BR2_GCC_TARGET_TUNE="arm920t"
BR2_GCC_TARGET_ARCH="armv4t"
BR2_GCC_TARGET_ABI="aapcs-linux"
#
# 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 is not set
# BR2_HAVE_DOCUMENTATION is not set
# BR2_HAVE_DEVFILES is not set
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=y
# BR2_UCLIBC_VERSION_0_9_32 is not set
# BR2_UCLIBC_VERSION_0_9_33 is not set
# BR2_UCLIBC_VERSION_SNAPSHOT is not set
BR2_UCLIBC_VERSION_STRING="0.9.31.1"
BR2_UCLIBC_CONFIG="toolchain/uClibc/uClibc-0.9.31.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=y
BR2_BINUTILS_VERSION="2.21"
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=y
# BR2_GCC_VERSION_4_6_X is not set
# 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.5.4"
BR2_EXTRA_GCC_CONFIG_OPTIONS=""
# BR2_INSTALL_OBJC is not set
# BR2_INSTALL_FORTRAN is not set
BR2_GCC_SHARED_LIBGCC=y
# BR2_GCC_ENABLE_OPENMP is not set
#
# Gdb Options
#
#
# Gdb debugger for the target needs WCHAR support in toolchain
#
# BR2_PACKAGE_GDB_SERVER is not set
# BR2_PACKAGE_GDB_HOST is not set
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_PREFER_SOFT_FLOAT=y
BR2_SOFT_FLOAT=y
BR2_TARGET_OPTIMIZATION="-pipe"
BR2_TARGET_LDFLAGS=""
#
# Toolchain Options
#
# BR2_TOOLCHAIN_BUILDROOT_LARGEFILE is not set
# BR2_TOOLCHAIN_BUILDROOT_INET_IPV6 is not set
# BR2_TOOLCHAIN_BUILDROOT_INET_RPC is not set
# BR2_TOOLCHAIN_BUILDROOT_WCHAR is not set
# 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=y
# BR2_ELF2FLT is not set
#
# 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
#
# udev requires a toolchain with LARGEFILE + WCHAR support
#
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="package/busybox/busybox-1.20.x.config"
# BR2_PACKAGE_BUSYBOX_SHOW_OTHERS is not set
# BR2_PACKAGE_BUSYBOX_WATCHDOG is not set
#
# Audio and video applications
#
#
# alsa-utils requires a toolchain with LARGEFILE support
#
# 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
#
#
# gstreamer requires a toolchain with WCHAR support
#
#
# 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
#
# pulseaudio requires a toolchain with WCHAR support
#
# 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
#
# dstat requires a toolchain with WCHAR support
#
# BR2_PACKAGE_DMALLOC is not set
# BR2_PACKAGE_KEXEC is not set
#
# latencytop requires a toolchain with WCHAR support
#
#
# lmbench requires a toolchain with RPC support
#
# BR2_PACKAGE_LTP_TESTSUITE is not set
# BR2_PACKAGE_LTTNG_MODULES 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
#
# sysprof requires a toolchain with WCHAR support
#
# BR2_PACKAGE_WHETSTONE is not set
# BR2_PACKAGE_PV is not set
#
# Development tools
#
# BR2_PACKAGE_AUTOCONF is not set
# BR2_PACKAGE_AUTOMAKE is not set
# BR2_PACKAGE_BINUTILS is not set
#
# bison requires a toolchain with WCHAR support
#
# BR2_PACKAGE_BSDIFF is not set
# BR2_PACKAGE_CCACHE is not set
#
# cvs requires a toolchain with WCHAR support
#
# BR2_PACKAGE_DISTCC is not set
# BR2_PACKAGE_FLEX is not set
#
# gcc needs development files in target filesystem
#
#
# gettext requires a toolchain with WCHAR support
#
# BR2_PACKAGE_GMP is not set
#
# gperf requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_MAKE is not set
# BR2_PACKAGE_MPC is not set
# BR2_PACKAGE_MPFR is not set
# BR2_PACKAGE_LIBTOOL is not set
#
# m4 requires a toolchain with WCHAR support
#
#
# pkg-config requires a toolchain with WCHAR support
#
# 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
#
#
# rrdtool requires a toolchain with WCHAR support
#
#
# 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_LINUX_FUSION is not set
# BR2_PACKAGE_SDL is not set
#
# other GUIs
#
#
# EFL requires WCHAR support in toolchain
#
#
# qt requires a toolchain with C++ support enabled
#
#
# X.org requires a toolchain with WCHAR support
#
#
# X libraries and helper libraries
#
# BR2_PACKAGE_LIBERATION is not set
#
# X Window managers
#
#
# X applications
#
#
# gob2 requires a toolchain with WCHAR support
#
#
# midori requires C++, WCHAR in toolchain and libgtk2
#
#
# vala requires a toolchain with WCHAR support
#
#
# Hardware handling
#
#
# cdrkit requires a toolchain with LARGEFILE support
#
# BR2_PACKAGE_CRAMFS is not set
# BR2_PACKAGE_DBUS is not set
#
# dmraid requires a toolchain with LARGEFILE support
#
#
# dosfstools requires a toolchain with LARGEFILE support
#
#
# e2fsprogs requires a toolchain with LARGEFILE + WCHAR support
#
# BR2_PACKAGE_EEPROG 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
#
# gvfs requires a toolchain with LARGEFILE and WCHAR support
#
# 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
#
# lvm2 requires a toolchain with LARGEFILE support
#
# BR2_PACKAGE_MAKEDEVS is not set
# BR2_PACKAGE_MDADM is not set
#
# memtester requires a toolchain with LARGEFILE support
#
#
# minicom requires a toolchain with WCHAR support
#
# BR2_PACKAGE_MTD is not set
# BR2_PACKAGE_NANOCOM is not set
#
# ntfs-3g requires a toolchain with LARGEFILE and WCHAR support
#
#
# ofono requires a toolchain with WCHAR and thread support
#
# BR2_PACKAGE_OPEN2300 is not set
# BR2_PACKAGE_OPENOCD is not set
# BR2_PACKAGE_OWL_LINUX is not set
#
# parted requires a toolchain with LARGEFILE+WCHAR support
#
# BR2_PACKAGE_PCIUTILS is not set
# BR2_PACKAGE_PICOCOM 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
#
#
# squashfs requires a toolchain with LARGEFILE and threads support
#
# BR2_PACKAGE_SREDIRD is not set
#
# sshfs requires a toolchain with LARGEFILE and WCHAR support
#
# 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
#
#
# unionfs requires a toolchain with LARGEFILE support
#
# BR2_PACKAGE_USB_MODESWITCH is not set
# BR2_PACKAGE_USBUTILS is not set
# BR2_PACKAGE_WIPE is not set
#
# xfsprogs requires a toolchain with LARGEFILE + WCHAR support
#
#
# 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 is not set
# BR2_PACKAGE_PHP is not set
#
# python requires a toolchain with WCHAR support
#
#
# ruby requires a toolchain with WCHAR support
#
# 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
#
# libmpd requires a toolchain with WCHAR support
#
# 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
#
#
# libarchive requires a toolchain with WCHAR support
#
# BR2_PACKAGE_LZO is not set
# BR2_PACKAGE_ZLIB is not set
#
# Crypto
#
# BR2_PACKAGE_BEECRYPT is not set
#
# gnutls requires a toolchain with WCHAR support
#
# BR2_PACKAGE_LIBGCRYPT is not set
# BR2_PACKAGE_LIBGPG_ERROR is not set
#
# libnss requires a toolchain with LARGEFILE support
#
# 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
#
#
# gamin requires a toolchain with WCHAR support
#
# BR2_PACKAGE_LIBCONFIG is not set
# BR2_PACKAGE_LIBCONFUSE is not set
#
# libfuse requires a toolchain with LARGEFILE support
#
# BR2_PACKAGE_LIBLOCKFILE is not set
# BR2_PACKAGE_LIBSYSFS is not set
#
# Graphics
#
#
# atk requires a toolchain with WCHAR support
#
# 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
#
# 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
#
# libv4l requires a toolchain with LARGEFILE support
#
#
# 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
#
#
# libdvdread requires a toolchain with LARGEFILE support
#
#
# libdvdnav requires a toolchain with LARGEFILE support
#
#
# libmms requires a toolchain with WCHAR support
#
# BR2_PACKAGE_LIBMPEG2 is not set
# BR2_PACKAGE_LIBOGG is not set
#
# libplayer requires a toolchain with LARGEFILE support
#
# BR2_PACKAGE_LIBTHEORA is not set
#
# Live555 needs C++ compiler
#
#
# mediastreamer requires a toolchain with C++ support enabled
#
#
# Networking
#
#
# glib-networking requires a toolchain with WCHAR support
#
# 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
#
# libmnl requires a toolchain with LARGEFILE support
#
# BR2_PACKAGE_LIBMODBUS is not set
# BR2_PACKAGE_LIBMBUS is not set
# BR2_PACKAGE_LIBNETFILTER_CONNTRACK is not set
#
# libnetfilter_cttimout requires a toolchain with LARGEFILE support
#
# 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
#
# libsoup requires a toolchain with WCHAR support
#
#
# libtorrent requires a toolchain with C++ support enabled
#
#
# libupnp requires a toolchain with LARGEFILE support
#
# BR2_PACKAGE_LIBVNCSERVER is not set
# BR2_PACKAGE_ORTP is not set
#
# zeromq requires a toolchain with C++, LARGEFILE + WCHAR support
#
#
# Other
#
# BR2_PACKAGE_APR is not set
# BR2_PACKAGE_APR_UTIL is not set
# 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
#
# libglib2 requires a toolchain with WCHAR support
#
#
# libical requires a toolchain with WCHAR support
#
#
# libnspr requires a toolchain with LARGEFILE support
#
#
# libsigc++ requires a toolchain with C++ support enabled
#
# BR2_PACKAGE_LIBTPL is not set
# BR2_PACKAGE_LIBURCU is not set
#
# lttng-libust needs WCHAR and LARGEFILE support
#
# 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 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
#
# shared-mime-info requires a toolchain with WCHAR support
#
# 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
#
# bluez-utils require a toolchain with WCHAR and thread support
#
#
# bind requires a toolchain with LARGEFILE and IPV6 support
#
#
# 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_IGH_ETHERCAT 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
#
# ipset requires a toolchain with LARGEFILE support
#
# 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
#
# mutt requires a toolchain with WCHAR support
#
#
# nbd requires a toolchain with WCHAR support
#
# 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
#
#
# udpcast requires a toolchain with LARGEFILE support
#
#
# ushare requires a toolchain with LARGEFILE support
#
# 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 is not set
#
# inotify-tools requires a toolchain with LARGEFILE support
#
# BR2_PACKAGE_LOCKFILE_PROGS is not set
#
# logrotate requires a toolchain with WCHAR support
#
# 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
#
#
# acl requires a toolchain with LARGEFILE support
#
#
# attr requires a toolchain with LARGEFILE support
#
# 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)
#
#
# util-linux requires a toolchain with LARGEFILE + WCHAR support
#
#
# Text editors and viewers
#
# BR2_PACKAGE_ED is not set
# BR2_PACKAGE_NANO is not set
# 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_OMAP_U_BOOT_UTILS 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 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 is not set
BR2_TARGET_ROOTFS_CPIO=y
# BR2_TARGET_ROOTFS_CPIO_NONE is not set
BR2_TARGET_ROOTFS_CPIO_GZIP=y
# BR2_TARGET_ROOTFS_CPIO_BZIP2 is not set
# BR2_TARGET_ROOTFS_CPIO_LZMA is not set
# BR2_TARGET_ROOTFS_INITRAMFS is not set
# BR2_TARGET_ROOTFS_ROMFS is not set
#
# Bootloaders
#
# BR2_TARGET_BAREBOX is not set
# BR2_TARGET_MXS_BOOTLETS is not set
# BR2_TARGET_UBOOT is not set
#
# Kernel
#
BR2_LINUX_KERNEL=y
# BR2_LINUX_KERNEL_3_4 is not set
BR2_LINUX_KERNEL_SAME_AS_HEADERS=y
# BR2_LINUX_KERNEL_CUSTOM_VERSION is not set
# BR2_LINUX_KERNEL_CUSTOM_TARBALL is not set
# BR2_LINUX_KERNEL_CUSTOM_GIT is not set
BR2_LINUX_KERNEL_VERSION="2.6.38.8"
BR2_LINUX_KERNEL_PATCH=""
BR2_LINUX_KERNEL_USE_DEFCONFIG=y
# BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG is not set
BR2_LINUX_KERNEL_DEFCONFIG="at91rm9200"
# BR2_LINUX_KERNEL_UIMAGE is not set
# BR2_LINUX_KERNEL_APPENDED_UIMAGE is not set
BR2_LINUX_KERNEL_ZIMAGE=y
# BR2_LINUX_KERNEL_APPENDED_ZIMAGE is not set
# BR2_LINUX_KERNEL_VMLINUX is not set
# BR2_LINUX_KERNEL_IMAGE_TARGET_CUSTOM is not set
# BR2_LINUX_KERNEL_DTS_SUPPORT is not set
# BR2_LINUX_KERNEL_INSTALL_TARGET is not set
#
# Linux Kernel Extensions
#
# BR2_LINUX_KERNEL_EXT_XENOMAI is not set
# BR2_LINUX_KERNEL_EXT_OCF_LINUX is not set
# BR2_LINUX_KERNEL_EXT_RTAI is not set
^ permalink raw reply
* [Buildroot] [PATCH] libtool version update 2.4.2
From: Stephan Hoffmann @ 2012-11-12 7:46 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121111230546.709735e3@skate>
Am 11.11.2012 23:05, schrieb Thomas Petazzoni:
> On Sun, 11 Nov 2012 23:00:56 +0100, Arnout Vandecappelle wrote:
>> On 11/10/12 10:53, Thomas Petazzoni wrote:
>>> Alexander,
>>>
>>> On Fri, 9 Nov 2012 16:38:52 +0400, Alexander Khryukin wrote:
>>>
>>>> -LIBTOOL_VERSION = 2.2.10
>>>> +LIBTOOL_VERSION = 2.4.2
>>> How much testing did you give to this version bump? A libtool
>>> version bump is a very sensitive operation, as host-libtool is used
>>> to autoreconfigure many packages in Buildroot. Therefore, this
>>> patch needs a good amount of testing before being committed
>>> (ideally testing that all packages having<foo>_AUTORECONF = YES
>>> still build).
>> Can't we rely on the autobuilders to do that?
> Sure, we'll certainly rely on the autobuilders for a complete testing.
Hello,
did you ever think about inventing a kind of "testing" branch with a
seperate autobuilder running on? That could keep major build problems
away from the master branch.
Just my 2 cents
Stephan
> But I wanted to know if it had been tested again 2 packages or 20-40
> packages, which makes quite a bit of difference :)
>
>> That said, I wouldn't do this for 2012.11 anymore...
> For sure, it should not be part of 2012.11, we already have enough
> issues to fix.
>
> Thomas
--
reLinux - Stephan Hoffmann
Am Schmidtgrund 124 50765 K?ln
Tel. +49.221.95595-19 Fax: -64
www.reLinux.de sho at reLinux.de
^ permalink raw reply
* [Buildroot] Various problem using buildroot-2012.05
From: Thomas Petazzoni @ 2012-11-12 7:36 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50A03D29.7070608@petroprogram.com>
Stefan,
On Mon, 12 Nov 2012 02:04:57 +0200, Stefan Fr?berg wrote:
> Another "little" difficult case is Python.
>
> Even tought Python uses autotools, it (and Perl) will always be the
> worst cross-compile
> friendly citizens in my book.
> Way back, before buildroot, I tried many times to cross-compile it in
> Mingw32 environment and it was an
> absolute nightmare. With Perl I had even less luck.
So far, Python has been relatively manageable and what have a bunch of
Python modules that work.
> Every time I find an interesting open source project that I would like
> to try and cross-compile,
> I will make an silent prayer to God's of programmers that the build
> system that is revealed from
> tarball will be a GNU autoconf script (or even cmake one for God's
> sake) and not
> some hodge-bodge, custom made, configuration nightmare.
I agree that custom made build systems are a pain. However, from my
(possibly naive and idealist) perspective, the right solution to these
is to fix them rather than workarounding the problem using native
compilation on the target.
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
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