Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v4 6/6] Add config file for the snowball board
From: Gregory Hermant @ 2012-11-26 11:05 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353927919-7250-1-git-send-email-gregory.hermant@calao-systems.com>


Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>
---
 configs/calao_snowball_defconfig |   28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 configs/calao_snowball_defconfig

diff --git a/configs/calao_snowball_defconfig b/configs/calao_snowball_defconfig
new file mode 100644
index 0000000..700be5d
--- /dev/null
+++ b/configs/calao_snowball_defconfig
@@ -0,0 +1,28 @@
+BR2_arm=y
+BR2_cortex_a9=y
+BR2_GCC_VERSION_4_7_X=y
+# BR2_SOFT_FLOAT is not set
+BR2_TOOLCHAIN_BUILDROOT_LARGEFILE=y
+BR2_TOOLCHAIN_BUILDROOT_INET_IPV6=y
+BR2_TOOLCHAIN_BUILDROOT_INET_RPC=y
+BR2_TOOLCHAIN_BUILDROOT_LOCALE=y
+BR2_TOOLCHAIN_BUILDROOT_CXX=y
+BR2_VFP_FLOAT=y
+BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y
+BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA2"
+BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
+BR2_PACKAGE_FBSET=y
+BR2_PACKAGE_SNOWBALL_HDMISERVICE=y
+BR2_PACKAGE_LIBNL=y
+BR2_PACKAGE_SNOWBALL_INIT=y
+BR2_PACKAGE_WPA_SUPPLICANT=y
+BR2_TARGET_ROOTFS_TAR_GZIP=y
+BR2_TARGET_UBOOT=y
+BR2_TARGET_UBOOT_BOARDNAME="snowball"
+BR2_LINUX_KERNEL=y
+BR2_LINUX_KERNEL_CUSTOM_GIT=y
+BR2_LINUX_KERNEL_CUSTOM_GIT_REPO_URL="git://igloocommunity.org/git/kernel/igloo-kernel.git"
+BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION="stable-linux-ux500-3.4"
+BR2_LINUX_KERNEL_PATCH="board/calao/snowball/"
+BR2_LINUX_KERNEL_DEFCONFIG="u8500"
+BR2_LINUX_KERNEL_INSTALL_TARGET=y
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH v4 5/6] bluez-utils: add support for the ST-Ericsson cg2900 combo controller
From: Gregory Hermant @ 2012-11-26 11:05 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353927919-7250-1-git-send-email-gregory.hermant@calao-systems.com>


Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>
---
 ...tils-4.101-enable_cg2900_on_upstream_4.91.patch |  106 ++++++++++++++++++++
 1 file changed, 106 insertions(+)
 create mode 100644 package/bluez_utils/bluez_utils-4.101-enable_cg2900_on_upstream_4.91.patch

diff --git a/package/bluez_utils/bluez_utils-4.101-enable_cg2900_on_upstream_4.91.patch b/package/bluez_utils/bluez_utils-4.101-enable_cg2900_on_upstream_4.91.patch
new file mode 100644
index 0000000..e80af5f
--- /dev/null
+++ b/package/bluez_utils/bluez_utils-4.101-enable_cg2900_on_upstream_4.91.patch
@@ -0,0 +1,106 @@
+From ac7992081abba87627c9e91735b3309584b48585 Mon Sep 17 00:00:00 2001
+From: Gregory Hermant <gregory.hermant@calao-systems.com>
+Date: Wed, 14 Nov 2012 14:27:02 +0100
+Subject: [PATCH] add support for the ST-Ericsson CG2900 GPS FM Bluetooth
+ combo controller
+
+
+Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>
+---
+ tools/hciattach.c |   22 +++++++++++++++-------
+ tools/hciattach.h |    1 +
+ 2 files changed, 16 insertions(+), 7 deletions(-)
+
+diff --git a/tools/hciattach.c b/tools/hciattach.c
+index e4d5aa1..7f08243 100644
+--- a/tools/hciattach.c
++++ b/tools/hciattach.c
+@@ -1066,6 +1066,11 @@ struct uart_t uart[] = {
+ 	{ "texasalt",   0x0000, 0x0000, HCI_UART_LL,   115200, 115200,
+ 				FLOW_CTL, DISABLE_PM, NULL, texasalt, NULL   },
+ 
++	/* ST-Ericsson CG2900 GPS FM Bluetooth combo controller */
++	{ "cg2900",     0x0000, 0x0000, HCI_UART_STE,  115200, 115200,
++				FLOW_CTL, DISABLE_PM, NULL, NULL     },
++
++
+ 	/* ST Microelectronics minikits based on STLC2410/STLC2415 */
+ 	{ "st",         0x0000, 0x0000, HCI_UART_H4,    57600, 115200,
+ 				FLOW_CTL, DISABLE_PM,  NULL, st       },
+@@ -1157,10 +1162,10 @@ static struct uart_t * get_by_type(char *type)
+ }
+ 
+ /* Initialize UART driver */
+-static int init_uart(char *dev, struct uart_t *u, int send_break, int raw)
++static int init_uart(char *dev, struct uart_t *u, int send_break, int raw, int line_disc)
+ {
+ 	struct termios ti;
+-	int fd, i;
++	int fd;
+ 	unsigned long flags = 0;
+ 
+ 	if (raw)
+@@ -1217,8 +1222,7 @@ static int init_uart(char *dev, struct uart_t *u, int send_break, int raw)
+ 	}
+ 
+ 	/* Set TTY to N_HCI line discipline */
+-	i = N_HCI;
+-	if (ioctl(fd, TIOCSETD, &i) < 0) {
++	if (ioctl(fd, TIOCSETD, &line_disc) < 0) {
+ 		perror("Can't set line discipline");
+ 		return -1;
+ 	}
+@@ -1243,7 +1247,7 @@ static void usage(void)
+ {
+ 	printf("hciattach - HCI UART driver initialization utility\n");
+ 	printf("Usage:\n");
+-	printf("\thciattach [-n] [-p] [-b] [-r] [-t timeout] [-s initial_speed] <tty> <type | id> [speed] [flow|noflow] [bdaddr]\n");
++	printf("\thciattach [-n] [-p] [-a line_disc_nr] [-b] [-r] [-t timeout] [-s initial_speed] <tty> <type | id> [speed] [flow|noflow] [bdaddr]\n");
+ 	printf("\thciattach -l\n");
+ }
+ 
+@@ -1252,6 +1256,7 @@ int main(int argc, char *argv[])
+ 	struct uart_t *u = NULL;
+ 	int detach, printpid, raw, opt, i, n, ld, err;
+ 	int to = 10;
++	int line_disc = N_HCI;
+ 	int init_speed = 0;
+ 	int send_break = 0;
+ 	pid_t pid;
+@@ -1264,8 +1269,11 @@ int main(int argc, char *argv[])
+ 	printpid = 0;
+ 	raw = 0;
+ 
+-	while ((opt=getopt(argc, argv, "bnpt:s:lr")) != EOF) {
++	while ((opt=getopt(argc, argv, "bnpt:s:lra:")) != EOF) {
+ 		switch(opt) {
++		case 'a':
++                        line_disc = atoi(optarg);
++                        break;
+ 		case 'b':
+ 			send_break = 1;
+ 			break;
+@@ -1381,7 +1389,7 @@ int main(int argc, char *argv[])
+ 	alarm(to);
+ 	bcsp_max_retries = to;
+ 
+-	n = init_uart(dev, u, send_break, raw);
++	n = init_uart(dev, u, send_break, raw, line_disc);
+ 	if (n < 0) {
+ 		perror("Can't initialize device");
+ 		exit(1);
+diff --git a/tools/hciattach.h b/tools/hciattach.h
+index fed0d11..09b534d 100644
+--- a/tools/hciattach.h
++++ b/tools/hciattach.h
+@@ -39,6 +39,7 @@
+ #define HCI_UART_H4DS	3
+ #define HCI_UART_LL	4
+ #define HCI_UART_ATH3K  5
++#define HCI_UART_STE	6
+ 
+ #define HCI_UART_RAW_DEVICE	0
+ 
+-- 
+1.7.9.5
+
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH v4 4/6] Add init script files for snowball board
From: Gregory Hermant @ 2012-11-26 11:05 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353927919-7250-1-git-send-email-gregory.hermant@calao-systems.com>


Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>
---
 package/Config.in                      |    1 +
 package/snowball-init/Config.in        |   10 ++++++++++
 package/snowball-init/snowball-init.mk |   15 +++++++++++++++
 3 files changed, 26 insertions(+)
 create mode 100644 package/snowball-init/Config.in
 create mode 100644 package/snowball-init/snowball-init.mk

diff --git a/package/Config.in b/package/Config.in
index d1c197a..69f3056 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -551,6 +551,7 @@ source "package/empty/Config.in"
 source "package/googlefontdirectory/Config.in"
 source "package/mobile-broadband-provider-info/Config.in"
 source "package/shared-mime-info/Config.in"
+source "package/snowball-init/Config.in"
 source "package/sound-theme-borealis/Config.in"
 source "package/sound-theme-freedesktop/Config.in"
 endmenu
diff --git a/package/snowball-init/Config.in b/package/snowball-init/Config.in
new file mode 100644
index 0000000..906ff2d
--- /dev/null
+++ b/package/snowball-init/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_SNOWBALL_INIT
+	bool "snowball-init"
+	# Runtime dependency, needed by snowball startup script
+	select BR2_PACKAGE_BLUEZ_UTILS
+	select BR2_PACKAGE_UX500_FIRMWARE
+	help
+	  Snowball init scripts
+
+	  http://www.igloocommunity.org
+
diff --git a/package/snowball-init/snowball-init.mk b/package/snowball-init/snowball-init.mk
new file mode 100644
index 0000000..278cacb
--- /dev/null
+++ b/package/snowball-init/snowball-init.mk
@@ -0,0 +1,15 @@
+#############################################################
+#
+# snowball-init
+#
+#############################################################
+SNOWBALL_INIT_VERSION = b064be21de25729039e5e54037bbdd2e25cfd5b7
+SNOWBALL_INIT_SITE = git://igloocommunity.org/git/bsp/snowball-init.git
+SNOWBALL_INIT_LICENSE = BSD-4c
+SNOWBALL_INIT_LICENSE_FILES = debian/copyright
+
+define SNOWBALL_INIT_INSTALL_TARGET_CMDS
+	$(INSTALL) -D -m 0755 $(@D)/snowball $(TARGET_DIR)/etc/init.d/S50snowball
+endef
+
+$(eval $(generic-package))
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH v4 3/6] Add board files for snowball
From: Gregory Hermant @ 2012-11-26 11:05 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353927919-7250-1-git-send-email-gregory.hermant@calao-systems.com>


Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>
---
 board/calao/snowball/linux-3.4.patch |   45 ++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)
 create mode 100644 board/calao/snowball/linux-3.4.patch

diff --git a/board/calao/snowball/linux-3.4.patch b/board/calao/snowball/linux-3.4.patch
new file mode 100644
index 0000000..4e6fb51
--- /dev/null
+++ b/board/calao/snowball/linux-3.4.patch
@@ -0,0 +1,45 @@
+From 3d1a9b44b9dcd2c0f5d54c09596c96c0524d8340 Mon Sep 17 00:00:00 2001
+From: Gregory Hermant <gregory.hermant@calao-systems.com>
+Date: Tue, 13 Nov 2012 11:47:41 +0100
+Subject: [PATCH] trace-debug[stm]: Fix for BT/WLAN instability
+
+Pins under mop500_ske_pins array are used for different
+functionalities in snowball. Ex: GPIO161 pin configured
+for keypad here must stay configured as GPIO alternate
+function for operating PMU_EN pin of BT/WLAN chip in snowball.
+So forbid configuring these pins, for snowball
+
+Signed-off-by: Rajanikanth H.V <rajanikanth.hv@stericsson.com>
+Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>
+---
+ arch/arm/mach-ux500/board-mop500-stm.c |    7 +++++--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/arch/arm/mach-ux500/board-mop500-stm.c b/arch/arm/mach-ux500/board-mop500-stm.c
+index 1bef2a0..532fb9e 100644
+--- a/arch/arm/mach-ux500/board-mop500-stm.c
++++ b/arch/arm/mach-ux500/board-mop500-stm.c
+@@ -121,7 +121,9 @@ static int stm_ste_disable_ape_on_mipi60(void)
+ 	if (retval)
+ 		STM_ERR("Failed to disable MIPI60\n");
+ 	else {
+-		retval = nmk_config_pins(ARRAY_AND_SIZE(mop500_ske_pins));
++		if (!machine_is_snowball())
++			retval = nmk_config_pins(
++				ARRAY_AND_SIZE(mop500_ske_pins));
+ 		if (retval)
+ 			STM_ERR("Failed to enable SKE gpio\n");
+ 	}
+@@ -314,7 +316,8 @@ static int stm_ste_connection(enum stm_connection_type con_type)
+ 		/* Enable altC3 on GPIO70-74 (STMMOD) and GPIO75-76 (UARTMOD) */
+ 		prcmu_enable_stm_mod_uart();
+ 		/* Enable APE on MIPI60 */
+-		retval = nmk_config_pins_sleep(ARRAY_AND_SIZE(mop500_ske_pins));
++		if (!machine_is_snowball())
++			retval = nmk_config_pins_sleep(ARRAY_AND_SIZE(mop500_ske_pins));
+ 		if (retval)
+ 			STM_ERR("Failed to disable SKE GPIO\n");
+ 		else {
+-- 
+1.7.9.5
+
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH v4 2/6] ux500-firmware: new package
From: Gregory Hermant @ 2012-11-26 11:05 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353927919-7250-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 |   22 ++++++++++++++++++++++
 3 files changed, 30 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 54cc841..d1c197a 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..d354468
--- /dev/null
+++ b/package/ux500-firmware/ux500-firmware.mk
@@ -0,0 +1,22 @@
+#############################################################
+#
+# 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_LICENSE_FILES = license.txt 
+UX500_FIRMWARE_REDISTRIBUTE = NO
+
+# The CG2900 linux driver has to load firmware named CG29XX_* but the firmware
+# filenames contained in this package are CG2900_* hence the code below
+define UX500_FIRMWARE_INSTALL_TARGET_CMDS
+	$(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
+	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 v4 1/6] snowball-hdmiservice: new package
From: Gregory Hermant @ 2012-11-26 11:05 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353927919-7250-1-git-send-email-gregory.hermant@calao-systems.com>


Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>
---
 package/Config.in                                  |    1 +
 package/snowball-hdmiservice/Config.in             |   10 +++++
 .../snowball-hdmiservice/snowball-hdmiservice.mk   |   41 ++++++++++++++++++++
 3 files changed, 52 insertions(+)
 create mode 100644 package/snowball-hdmiservice/Config.in
 create mode 100644 package/snowball-hdmiservice/snowball-hdmiservice.mk

diff --git a/package/Config.in b/package/Config.in
index 5d9783a..54cc841 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -250,6 +250,7 @@ source "package/sane-backends/Config.in"
 source "package/sdparm/Config.in"
 source "package/setserial/Config.in"
 source "package/smartmontools/Config.in"
+source "package/snowball-hdmiservice/Config.in"
 source "package/sredird/Config.in"
 source "package/statserial/Config.in"
 source "package/sysstat/Config.in"
diff --git a/package/snowball-hdmiservice/Config.in b/package/snowball-hdmiservice/Config.in
new file mode 100644
index 0000000..0ea7c81
--- /dev/null
+++ b/package/snowball-hdmiservice/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_SNOWBALL_HDMISERVICE
+	bool "snowball-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/snowball-hdmiservice/snowball-hdmiservice.mk b/package/snowball-hdmiservice/snowball-hdmiservice.mk
new file mode 100644
index 0000000..ebd65df
--- /dev/null
+++ b/package/snowball-hdmiservice/snowball-hdmiservice.mk
@@ -0,0 +1,41 @@
+#############################################################
+#
+# snowball-hdmiservice
+#
+#############################################################
+SNOWBALL_HDMISERVICE_VERSION = f75c99d1c52707240a78b4ba78e41d20d3aa3b08
+SNOWBALL_HDMISERVICE_SITE = git://igloocommunity.org/git/bsp/hdmiservice.git
+SNOWBALL_HDMISERVICE_LICENSE = MIT
+SNOWBALL_HDMISERVICE_LICENSE_FILES = debian/copyright
+SNOWBALL_HDMISERVICE_INSTALL_STAGING = YES
+
+define SNOWBALL_HDMISERVICE_BUILD_CMDS
+	$(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)" 	
+endef
+
+define SNOWBALL_HDMISERVICE_INSTALL_STAGING_CMDS
+	$(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)" DESTDIR=$(STAGING_DIR) install
+endef
+
+define SNOWBALL_HDMISERVICE_INSTALL_TARGET_CMDS
+	$(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)" DESTDIR=$(TARGET_DIR) install
+endef
+
+define SNOWBALL_HDMISERVICE_UNINSTALL_STAGING_CMDS
+	rm -f $(STAGING_DIR)/usr/lib/hdmiservice.so
+	rm -f $(STAGING_DIR)/usr/bin/hdmistart
+	rm -f $(STAGING_DIR)/usr/include/hdmi_service_api.h
+	rm -f $(STAGING_DIR)/usr/include/hdmi_service_local.h
+endef
+
+define SNOWBALL_HDMISERVICE_UNINSTALL_TARGET_CMDS
+	rm -f $(TARGET_DIR)/usr/lib/hdmiservice.so
+	rm -f $(TARGET_DIR)/usr/bin/hdmistart
+endef
+
+define SNOWBALL_HDMISERVICE_CLEAN_CMDS
+	$(MAKE) -C $(@D) clean
+endef
+
+
+$(eval $(generic-package))
-- 
1.7.9.5

^ permalink raw reply related

* [Buildroot] [PATCH v4 0/6] Add support for the snowball board
From: Gregory Hermant @ 2012-11-26 11:05 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.
* Add the riff tool package

Gregory Hermant (6):
  snowball-hdmiservice: new package
  ux500-firmware: new package
  Add board files for snowball
  Add init script files for snowball board
  bluez-utils: add support for the ST-Ericsson cg2900 combo controller
  Add config file for the snowball board

 board/calao/snowball/linux-3.4.patch               |   45 +++++++++
 configs/calao_snowball_defconfig                   |   28 ++++++
 package/Config.in                                  |    3 +
 ...tils-4.101-enable_cg2900_on_upstream_4.91.patch |  106 ++++++++++++++++++++
 package/snowball-hdmiservice/Config.in             |   10 ++
 .../snowball-hdmiservice/snowball-hdmiservice.mk   |   41 ++++++++
 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           |   22 ++++
 10 files changed, 287 insertions(+)
 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-enable_cg2900_on_upstream_4.91.patch
 create mode 100644 package/snowball-hdmiservice/Config.in
 create mode 100644 package/snowball-hdmiservice/snowball-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] Qt mouse, keyboard, touchscreen
From: Stephan Hoffmann @ 2012-11-26  8:17 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353917395.39625.YahooMailNeo@web164603.mail.gq1.yahoo.com>

Am 26.11.2012 09:09, schrieb Zoran Djordjevic:
> I didn't go that way - with make clean (rather tried with deleting
> .stamp files).
> It is because building process is so lengthy. But I will probably try
> that.
My experience is that often "make xxx-reconfigure" is enough. But when
there are strange error messages "make clean" often is worth the waiting.
> What  else is left for me to do.
>  
> Regards
>
> *From:* Stephan Hoffmann <sho@relinux.de>
> *To:* Zoran Djordjevic <djdjdjole@yahoo.com>
> *Sent:* Monday, November 26, 2012 8:58 AM
> *Subject:* Re: [Buildroot] Qt mouse, keyboard, touchscreen
>
> Am 26.11.2012 08:49, schrieb Zoran Djordjevic:
>> OK - now I checked few options regarding Qt drivers in Buildroot
>> menu and try rebuilding, but got error:
>> The tslib functionality test failed!
> Did you try "make clean"?
>> You might need to modify the indluce and library search paths by editing
>> QMAKE_INCDIR and QMAKE_LIBDIR in ....... (name of the config folder).
>> I don't see either of those ones in qmake.conf in folder quoted, and also
>> if I add them, don't know what to quote ?
>>  
>> Regards
>>  
>> *From:* Stephan Hoffmann mailto:sho at relinux.de
>> *To:* buildroot at busybox.net <mailto:buildroot@busybox.net>
>> *Sent:* Saturday, November 24, 2012 10:51 AM
>> *Subject:* Re: [Buildroot] Qt mouse, keyboard, touchscreen
>>
>> Am 24.11.2012 10:19, schrieb Zoran Djordjevic:
>>> Thanks to helpful information you provided, I managed to built
>>> simple Qt application on my ARM board and it works - meaning
>>> I got some window and some simple effect inside. I am using
>>> framebuffer so started program with -qws option.
>>> However mouse, keyboard and touchscreen are dead. In fact they
>>> are probably visible by kernel (ts_calibrate and ts_test for example,
>>> works OK and cat /dev/input/event0 shows "usuall" garbage on
>>> terminal) however I don't know how to start them to work with Qt.
>>> I successfully started them earlier while using TinyX and GTK, by
>>> simply quoting them with xinit command parameters.
>>> But don't know how to do the same with Qt.
>> Hi,
>>
>> there are two things to consider:
>>
>> 1. Check if there are drivers enabled in buildroot config. The
>> default configuration does not include any drivers. I stepped in this
>> trap when I started to use QT.
>>
>> BTW: Shouldn't we change this to some useful default?
>>
>> 2. QT needs environment variables to configure input devices.
>>
>> http://doc.qt.digia.com/4.7/qt-embedded-envvars.html
>>
>> Hope this helps
>>
>> Stephan
>>
>>>  
>>> Regards
>>>
>>>
>>> _______________________________________________
>>> buildroot mailing list
>>> buildroot at busybox.net <mailto:buildroot@busybox.net>
>>> http://lists.busybox.net/mailman/listinfo/buildroot
>>
>>
>> -- 
>> reLinux     -    Stephan Hoffmann
>> Am Schmidtgrund 124    50765 K?ln
>> Tel. +49.221.95595-19    Fax: -64
>> http://www.relinux.de/     sho at reLinux.de <mailto:sho@reLinux.de>
>>
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net <mailto:buildroot@busybox.net>
>> http://lists.busybox.net/mailman/listinfo/buildroot
>>
>
>
> -- 
> reLinux     -    Stephan Hoffmann
> Am Schmidtgrund 124    50765 K?ln
> Tel. +49.221.95595-19    Fax: -64
> http://www.relinux.de/     sho at reLinux.de <mailto:sho@reLinux.de>
>
>
>


-- 
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 HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121126/c957e2d8/attachment-0001.html>

^ permalink raw reply

* [Buildroot] How to regenerate zImage?
From: Thomas Petazzoni @ 2012-11-26  8:02 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAAsE_ud49Ku0NKg-8Ku1mbMXVxkSfLNefvV6pnst2B9GD-4o+A@mail.gmail.com>

Dear Woody Wu,

Please do not reply to me directly: always keep the list Cc'ed.

On Mon, 26 Nov 2012 15:32:52 +0800, Woody Wu wrote:
> > Two solutions:
> >
> >  *) Do the build of the component you're actively working on outside of
> >     Buildroot. Typically, when I do kernel hacking, I do it outside of
> >     Buildroot, and I use Buildroot only as a final integration
> >     mechanism, to make sure that the system build process is
> >     reproducible. But not during development.
> >
> >  *) Use the OVERRIDE_SRCDIR mechanism, as documented in
> >     http://www.elinux.org/images/2/2a/Using-buildroot-real-project.pdf,
> >     slide 41.
> >
> > Best regards,
> >
> > Thomas
> 
> Thanks for the excellent slides.  But I don't understand, where to
> input the "LINUX_OVERRIDE_SRCDIR=/my/path/of/linux".  Did I miss
> something?

You should put it in a file called "local.mk" at the root of the
Buildroot sources directory. Note that "local.mk" is the default
name/location, you can tune that using BR2_PACKAGE_OVERRIDE_FILE.

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] Qt mouse, keyboard, touchscreen
From: Stephan Hoffmann @ 2012-11-26  8:00 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353916198.97471.YahooMailNeo@web164601.mail.gq1.yahoo.com>

Am 26.11.2012 08:49, schrieb Zoran Djordjevic:
> OK - now I checked few options regarding Qt drivers in Buildroot
> menu and try rebuilding, but got error:
> The tslib functionality test failed!
Did you try "make clean"?
> You might need to modify the indluce and library search paths by editing
> QMAKE_INCDIR and QMAKE_LIBDIR in ....... (name of the config folder).
> I don't see either of those ones in qmake.conf in folder quoted, and also
> if I add them, don't know what to quote ?
>  
> Regards
>  
> *From:* Stephan Hoffmann <sho@relinux.de>
> *To:* buildroot at busybox.net
> *Sent:* Saturday, November 24, 2012 10:51 AM
> *Subject:* Re: [Buildroot] Qt mouse, keyboard, touchscreen
>
> Am 24.11.2012 10:19, schrieb Zoran Djordjevic:
>> Thanks to helpful information you provided, I managed to built
>> simple Qt application on my ARM board and it works - meaning
>> I got some window and some simple effect inside. I am using
>> framebuffer so started program with -qws option.
>> However mouse, keyboard and touchscreen are dead. In fact they
>> are probably visible by kernel (ts_calibrate and ts_test for example,
>> works OK and cat /dev/input/event0 shows "usuall" garbage on
>> terminal) however I don't know how to start them to work with Qt.
>> I successfully started them earlier while using TinyX and GTK, by
>> simply quoting them with xinit command parameters.
>> But don't know how to do the same with Qt.
> Hi,
>
> there are two things to consider:
>
> 1. Check if there are drivers enabled in buildroot config. The default
> configuration does not include any drivers. I stepped in this trap
> when I started to use QT.
>
> BTW: Shouldn't we change this to some useful default?
>
> 2. QT needs environment variables to configure input devices.
>
> http://doc.qt.digia.com/4.7/qt-embedded-envvars.html
>
> Hope this helps
>
> Stephan
>
>>  
>> Regards
>>
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net <mailto:buildroot@busybox.net>
>> http://lists.busybox.net/mailman/listinfo/buildroot
>
>
> -- 
> reLinux     -    Stephan Hoffmann
> Am Schmidtgrund 124    50765 K?ln
> Tel. +49.221.95595-19    Fax: -64
> http://www.relinux.de/     sho at reLinux.de <mailto:sho@reLinux.de>
>
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net <mailto:buildroot@busybox.net>
> http://lists.busybox.net/mailman/listinfo/buildroot
>


-- 
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 HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121126/93241c04/attachment.html>

^ permalink raw reply

* [Buildroot] Qt mouse, keyboard, touchscreen
From: Zoran Djordjevic @ 2012-11-26  7:49 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50B09888.9000907@relinux.de>

OK - now I checked few options regarding Qt drivers in Buildroot
menu and try rebuilding, but got error:
The tslib functionality test failed!
You might need to modify the indluce and library search paths by editing
QMAKE_INCDIR and QMAKE_LIBDIR in ....... (name of the config folder).
I don't see either of those ones in qmake.conf in folder quoted, and also
if I add them, don't know what to quote ?
?
Regards? 

________________________________
 From: Stephan Hoffmann <sho@relinux.de>
To: buildroot at busybox.net 
Sent: Saturday, November 24, 2012 10:51 AM
Subject: Re: [Buildroot] Qt mouse, keyboard, touchscreen
  

  
Am 24.11.2012 10:19, schrieb Zoran Djordjevic: 
Thanks to helpful information you provided, I managed to built 
>simple Qt application on my ARM board and it works - meaning 
>I got some window and some simple effect inside. I am using  
>framebuffer so started program with?-qws option. 
>However mouse, keyboard and touchscreen are dead. In fact they  
>are probably visible by kernel (ts_calibrate and ts_test for example, 
>works OK and cat /dev/input/event0 shows "usuall" garbage on  
>terminal) however I don't know how to start them to work with Qt. 
>I successfully started them earlier?while using TinyX and GTK, by 
>simply quoting them?with xinit command parameters. 
>But don't know how to do the same with Qt.  
Hi,

there are two things to consider:

1. Check if there are drivers enabled in buildroot config. The
    default configuration does not include any drivers. I stepped in
    this trap when I started to use QT.

BTW: Shouldn't we change this to some useful default?

2. QT needs environment variables to configure input devices.

http://doc.qt.digia.com/4.7/qt-embedded-envvars.html

Hope this helps

Stephan



>
>Regards  
>
_______________________________________________
buildroot mailing list buildroot at busybox.net http://lists.busybox.net/mailman/listinfo/buildroot  


-- 
reLinux     -    Stephan Hoffmann
Am Schmidtgrund 124    50765 K?ln
Tel. +49.221.95595-19    Fax: -64 http://www.relinux.de/ sho at reLinux.de   
_______________________________________________
buildroot mailing list
buildroot at busybox.net
http://lists.busybox.net/mailman/listinfo/buildroot
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121125/ef2c18dc/attachment.html>

^ permalink raw reply

* [Buildroot] [autobuild.buildroot.net] Build results for 2012-11-25
From: Thomas Petazzoni @ 2012-11-26  7:34 UTC (permalink / raw)
  To: buildroot


Hello,

On 2012-11-25, 151 random build tests have been done and
submitted on autobuild.buildroot.net.
 103 builds have been successful
 48 builds have failed

Below the results of the failed builds. Successful builds are omitted.

Build aeb5a7b904ab2371f2d219f08acf5e8250b212b8
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-25 00:18:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/aeb5a7b904ab2371f2d219f08acf5e8250b212b8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/aeb5a7b904ab2371f2d219f08acf5e8250b212b8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/aeb5a7b904ab2371f2d219f08acf5e8250b212b8/config
Defconfig      : http://autobuild.buildroot.net/results/aeb5a7b904ab2371f2d219f08acf5e8250b212b8/defconfig

Build 6a515263db6cfc3f862ff3c53d4ae68e0c32aeb4
==============================================

Status         : NOK
Failure reason : gdbhost-7.4.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 00:27:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/6a515263db6cfc3f862ff3c53d4ae68e0c32aeb4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6a515263db6cfc3f862ff3c53d4ae68e0c32aeb4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6a515263db6cfc3f862ff3c53d4ae68e0c32aeb4/config
Defconfig      : http://autobuild.buildroot.net/results/6a515263db6cfc3f862ff3c53d4ae68e0c32aeb4/defconfig

Build cef82deabb2a01af2de0a5d6f3c78359d87cb35d
==============================================

Status         : NOK
Failure reason : gdbhost-7.4.1
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 00:41:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/cef82deabb2a01af2de0a5d6f3c78359d87cb35d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cef82deabb2a01af2de0a5d6f3c78359d87cb35d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cef82deabb2a01af2de0a5d6f3c78359d87cb35d/config
Defconfig      : http://autobuild.buildroot.net/results/cef82deabb2a01af2de0a5d6f3c78359d87cb35d/defconfig

Build 8cca7ea4486302ed1b600c11a0bd7b39ae908df8
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 02:39:51
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/8cca7ea4486302ed1b600c11a0bd7b39ae908df8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8cca7ea4486302ed1b600c11a0bd7b39ae908df8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8cca7ea4486302ed1b600c11a0bd7b39ae908df8/config
Defconfig      : http://autobuild.buildroot.net/results/8cca7ea4486302ed1b600c11a0bd7b39ae908df8/defconfig

Build a8b1b1dd5865c48017e19b7f41488e6beeb76049
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 03:16:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/a8b1b1dd5865c48017e19b7f41488e6beeb76049/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a8b1b1dd5865c48017e19b7f41488e6beeb76049/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a8b1b1dd5865c48017e19b7f41488e6beeb76049/config
Defconfig      : http://autobuild.buildroot.net/results/a8b1b1dd5865c48017e19b7f41488e6beeb76049/defconfig

Build eb7bb80e6c5707814692cbca59a5ba8ba83614b1
==============================================

Status         : NOK
Failure reason : libcap-ng-0.6.6
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 03:32:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/eb7bb80e6c5707814692cbca59a5ba8ba83614b1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/eb7bb80e6c5707814692cbca59a5ba8ba83614b1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/eb7bb80e6c5707814692cbca59a5ba8ba83614b1/config
Defconfig      : http://autobuild.buildroot.net/results/eb7bb80e6c5707814692cbca59a5ba8ba83614b1/defconfig

Build 639e86651c54d685fec84d791be3535dff1716bf
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-25 03:37:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/639e86651c54d685fec84d791be3535dff1716bf/build-end.log
Complete log   : http://autobuild.buildroot.net/results/639e86651c54d685fec84d791be3535dff1716bf/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/639e86651c54d685fec84d791be3535dff1716bf/config
Defconfig      : http://autobuild.buildroot.net/results/639e86651c54d685fec84d791be3535dff1716bf/defconfig

Build d9076f64d22daad6b21bb48bddc76640a97f7102
==============================================

Status         : NOK
Failure reason : libcap-ng-0.6.6
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 03:51:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/d9076f64d22daad6b21bb48bddc76640a97f7102/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d9076f64d22daad6b21bb48bddc76640a97f7102/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d9076f64d22daad6b21bb48bddc76640a97f7102/config
Defconfig      : http://autobuild.buildroot.net/results/d9076f64d22daad6b21bb48bddc76640a97f7102/defconfig

Build e7cc7dac85597c66908a0095f085b008fe6f0810
==============================================

Status         : NOK
Failure reason : luajit-2.0.0-beta11
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 04:04:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/e7cc7dac85597c66908a0095f085b008fe6f0810/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e7cc7dac85597c66908a0095f085b008fe6f0810/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e7cc7dac85597c66908a0095f085b008fe6f0810/config
Defconfig      : http://autobuild.buildroot.net/results/e7cc7dac85597c66908a0095f085b008fe6f0810/defconfig

Build a82825bbca3b28f9e645d8b4b0749667d3705fb5
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 04:37:17
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/a82825bbca3b28f9e645d8b4b0749667d3705fb5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a82825bbca3b28f9e645d8b4b0749667d3705fb5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a82825bbca3b28f9e645d8b4b0749667d3705fb5/config
Defconfig      : http://autobuild.buildroot.net/results/a82825bbca3b28f9e645d8b4b0749667d3705fb5/defconfig

Build a4ee847017f714a75184c47660d4b5b3d5dbf8f0
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 04:48:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/a4ee847017f714a75184c47660d4b5b3d5dbf8f0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a4ee847017f714a75184c47660d4b5b3d5dbf8f0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a4ee847017f714a75184c47660d4b5b3d5dbf8f0/config
Defconfig      : http://autobuild.buildroot.net/results/a4ee847017f714a75184c47660d4b5b3d5dbf8f0/defconfig

Build e8093e3c2c8030f96a937ce3555dedbe48f21125
==============================================

Status         : NOK
Failure reason : berkeleydb-5.3.21
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 05:03:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/e8093e3c2c8030f96a937ce3555dedbe48f21125/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e8093e3c2c8030f96a937ce3555dedbe48f21125/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e8093e3c2c8030f96a937ce3555dedbe48f21125/config
Defconfig      : http://autobuild.buildroot.net/results/e8093e3c2c8030f96a937ce3555dedbe48f21125/defconfig

Build ca54193af58f457f0311187e060a837ab70b3380
==============================================

Status         : NOK
Failure reason : lcdproc-0.5.6
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-25 05:10:22
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/ca54193af58f457f0311187e060a837ab70b3380/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ca54193af58f457f0311187e060a837ab70b3380/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ca54193af58f457f0311187e060a837ab70b3380/config
Defconfig      : http://autobuild.buildroot.net/results/ca54193af58f457f0311187e060a837ab70b3380/defconfig

Build b906e2aa49b9aa09816f289fe2587c78b86602bf
==============================================

Status         : NOK
Failure reason : libhid-0.2.16
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 06:12:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/b906e2aa49b9aa09816f289fe2587c78b86602bf/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b906e2aa49b9aa09816f289fe2587c78b86602bf/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b906e2aa49b9aa09816f289fe2587c78b86602bf/config
Defconfig      : http://autobuild.buildroot.net/results/b906e2aa49b9aa09816f289fe2587c78b86602bf/defconfig

Build 2e6a7fd9c7e739a0e9f9e049b67ffcbca63154a9
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-25 06:55:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/2e6a7fd9c7e739a0e9f9e049b67ffcbca63154a9/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2e6a7fd9c7e739a0e9f9e049b67ffcbca63154a9/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2e6a7fd9c7e739a0e9f9e049b67ffcbca63154a9/config
Defconfig      : http://autobuild.buildroot.net/results/2e6a7fd9c7e739a0e9f9e049b67ffcbca63154a9/defconfig

Build 269e69db4467a1f9c19683fff6d472e062381182
==============================================

Status         : NOK
Failure reason : acl-2.2.51
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 07:24:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/269e69db4467a1f9c19683fff6d472e062381182/build-end.log
Complete log   : http://autobuild.buildroot.net/results/269e69db4467a1f9c19683fff6d472e062381182/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/269e69db4467a1f9c19683fff6d472e062381182/config
Defconfig      : http://autobuild.buildroot.net/results/269e69db4467a1f9c19683fff6d472e062381182/defconfig

Build c4fa391affa6ffdc54224693fa00cf3a6d81d78b
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-25 07:46:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/c4fa391affa6ffdc54224693fa00cf3a6d81d78b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c4fa391affa6ffdc54224693fa00cf3a6d81d78b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c4fa391affa6ffdc54224693fa00cf3a6d81d78b/config
Defconfig      : http://autobuild.buildroot.net/results/c4fa391affa6ffdc54224693fa00cf3a6d81d78b/defconfig

Build 16d4865e1971e68b0a19af06a065181518d75eab
==============================================

Status         : NOK
Failure reason : ccache-3.1.7
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 08:28:17
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/16d4865e1971e68b0a19af06a065181518d75eab/build-end.log
Complete log   : http://autobuild.buildroot.net/results/16d4865e1971e68b0a19af06a065181518d75eab/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/16d4865e1971e68b0a19af06a065181518d75eab/config
Defconfig      : http://autobuild.buildroot.net/results/16d4865e1971e68b0a19af06a065181518d75eab/defconfig

Build 622b7da10be751c725ba25eb40102269790b4b03
==============================================

Status         : NOK
Failure reason : lcdproc-0.5.6
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-25 08:49:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/622b7da10be751c725ba25eb40102269790b4b03/build-end.log
Complete log   : http://autobuild.buildroot.net/results/622b7da10be751c725ba25eb40102269790b4b03/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/622b7da10be751c725ba25eb40102269790b4b03/config
Defconfig      : http://autobuild.buildroot.net/results/622b7da10be751c725ba25eb40102269790b4b03/defconfig

Build 348f0879168f9d4fec5125ee03f57badfaa03467
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-25 09:01:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/348f0879168f9d4fec5125ee03f57badfaa03467/build-end.log
Complete log   : http://autobuild.buildroot.net/results/348f0879168f9d4fec5125ee03f57badfaa03467/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/348f0879168f9d4fec5125ee03f57badfaa03467/config
Defconfig      : http://autobuild.buildroot.net/results/348f0879168f9d4fec5125ee03f57badfaa03467/defconfig

Build efb9f36ad0e23643617288c1f7fbee27affdc75a
==============================================

Status         : NOK
Failure reason : kismet-2011-03-R2
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 09:23:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/efb9f36ad0e23643617288c1f7fbee27affdc75a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/efb9f36ad0e23643617288c1f7fbee27affdc75a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/efb9f36ad0e23643617288c1f7fbee27affdc75a/config
Defconfig      : http://autobuild.buildroot.net/results/efb9f36ad0e23643617288c1f7fbee27affdc75a/defconfig

Build edf1d5fb60d0d88250cd874d825818489e2bb2c8
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 09:56:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/edf1d5fb60d0d88250cd874d825818489e2bb2c8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/edf1d5fb60d0d88250cd874d825818489e2bb2c8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/edf1d5fb60d0d88250cd874d825818489e2bb2c8/config
Defconfig      : http://autobuild.buildroot.net/results/edf1d5fb60d0d88250cd874d825818489e2bb2c8/defconfig

Build 985cbd4e141ff38d89105426fb56514cb4f16612
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-25 12:12:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/985cbd4e141ff38d89105426fb56514cb4f16612/build-end.log
Complete log   : http://autobuild.buildroot.net/results/985cbd4e141ff38d89105426fb56514cb4f16612/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/985cbd4e141ff38d89105426fb56514cb4f16612/config
Defconfig      : http://autobuild.buildroot.net/results/985cbd4e141ff38d89105426fb56514cb4f16612/defconfig

Build 1e2991f54228d138ee6b91665b2b231d069c5243
==============================================

Status         : NOK
Failure reason : icu-4.8.1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 13:03:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/1e2991f54228d138ee6b91665b2b231d069c5243/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1e2991f54228d138ee6b91665b2b231d069c5243/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1e2991f54228d138ee6b91665b2b231d069c5243/config
Defconfig      : http://autobuild.buildroot.net/results/1e2991f54228d138ee6b91665b2b231d069c5243/defconfig

Build 68344287cd3039130948e8f523aed84945842826
==============================================

Status         : NOK
Failure reason : can-utils-836d3cc0122ce31a1b732d369cbd27b690c3110f
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 13:04:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/68344287cd3039130948e8f523aed84945842826/build-end.log
Complete log   : http://autobuild.buildroot.net/results/68344287cd3039130948e8f523aed84945842826/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/68344287cd3039130948e8f523aed84945842826/config
Defconfig      : http://autobuild.buildroot.net/results/68344287cd3039130948e8f523aed84945842826/defconfig

Build e25d56a049752d8901e9359196496c2ed12b0e6d
==============================================

Status         : NOK
Failure reason : libnss-3.12.9
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 13:42:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/e25d56a049752d8901e9359196496c2ed12b0e6d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e25d56a049752d8901e9359196496c2ed12b0e6d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e25d56a049752d8901e9359196496c2ed12b0e6d/config
Defconfig      : http://autobuild.buildroot.net/results/e25d56a049752d8901e9359196496c2ed12b0e6d/defconfig

Build 7aae0cbdc53be0812e8ec3f1289f0cb6c1fb61a4
==============================================

Status         : NOK
Failure reason : luajit-2.0.0-beta11
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 15:05:32
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/7aae0cbdc53be0812e8ec3f1289f0cb6c1fb61a4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7aae0cbdc53be0812e8ec3f1289f0cb6c1fb61a4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7aae0cbdc53be0812e8ec3f1289f0cb6c1fb61a4/config
Defconfig      : http://autobuild.buildroot.net/results/7aae0cbdc53be0812e8ec3f1289f0cb6c1fb61a4/defconfig

Build 7a77671ede5676fda059fb69200c787f3e98cc12
==============================================

Status         : NOK
Failure reason : pv-1.2.0
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 15:26:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/7a77671ede5676fda059fb69200c787f3e98cc12/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7a77671ede5676fda059fb69200c787f3e98cc12/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7a77671ede5676fda059fb69200c787f3e98cc12/config
Defconfig      : http://autobuild.buildroot.net/results/7a77671ede5676fda059fb69200c787f3e98cc12/defconfig

Build fe02858c3a657159d735d3a5043a270d7075f5b3
==============================================

Status         : NOK
Failure reason : gdbhost-7.4.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 16:12:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/fe02858c3a657159d735d3a5043a270d7075f5b3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fe02858c3a657159d735d3a5043a270d7075f5b3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fe02858c3a657159d735d3a5043a270d7075f5b3/config
Defconfig      : http://autobuild.buildroot.net/results/fe02858c3a657159d735d3a5043a270d7075f5b3/defconfig

Build 5438acd3a8cf45d361f5d69aef5b267787b76b59
==============================================

Status         : NOK
Failure reason : host-python-2.7.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 16:57:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/5438acd3a8cf45d361f5d69aef5b267787b76b59/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5438acd3a8cf45d361f5d69aef5b267787b76b59/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5438acd3a8cf45d361f5d69aef5b267787b76b59/config
Defconfig      : http://autobuild.buildroot.net/results/5438acd3a8cf45d361f5d69aef5b267787b76b59/defconfig

Build 337516f2202fae06d09b4ea159ea7474899d2ad3
==============================================

Status         : NOK
Failure reason : lcdproc-0.5.6
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-25 17:06:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/337516f2202fae06d09b4ea159ea7474899d2ad3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/337516f2202fae06d09b4ea159ea7474899d2ad3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/337516f2202fae06d09b4ea159ea7474899d2ad3/config
Defconfig      : http://autobuild.buildroot.net/results/337516f2202fae06d09b4ea159ea7474899d2ad3/defconfig

Build c828c33449d02c87001566e34b16855d71b900f4
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-25 17:27:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/c828c33449d02c87001566e34b16855d71b900f4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c828c33449d02c87001566e34b16855d71b900f4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c828c33449d02c87001566e34b16855d71b900f4/config
Defconfig      : http://autobuild.buildroot.net/results/c828c33449d02c87001566e34b16855d71b900f4/defconfig

Build fa2c9c567fdc2c399c9b907ab43e28cf37feeb80
==============================================

Status         : NOK
Failure reason : ltrace-0.6.0
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 17:30:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/fa2c9c567fdc2c399c9b907ab43e28cf37feeb80/build-end.log
Complete log   : http://autobuild.buildroot.net/results/fa2c9c567fdc2c399c9b907ab43e28cf37feeb80/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/fa2c9c567fdc2c399c9b907ab43e28cf37feeb80/config
Defconfig      : http://autobuild.buildroot.net/results/fa2c9c567fdc2c399c9b907ab43e28cf37feeb80/defconfig

Build 3e170defad36a9e32a901e8d9db245b5e92a5cdd
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 17:59:50
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/3e170defad36a9e32a901e8d9db245b5e92a5cdd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3e170defad36a9e32a901e8d9db245b5e92a5cdd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3e170defad36a9e32a901e8d9db245b5e92a5cdd/config
Defconfig      : http://autobuild.buildroot.net/results/3e170defad36a9e32a901e8d9db245b5e92a5cdd/defconfig

Build 0b672a6a0c74de0c6b44c8c7e8c17462b707d3c7
==============================================

Status         : NOK
Failure reason : cairo-1.10.2
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 18:01:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/0b672a6a0c74de0c6b44c8c7e8c17462b707d3c7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0b672a6a0c74de0c6b44c8c7e8c17462b707d3c7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0b672a6a0c74de0c6b44c8c7e8c17462b707d3c7/config
Defconfig      : http://autobuild.buildroot.net/results/0b672a6a0c74de0c6b44c8c7e8c17462b707d3c7/defconfig

Build 202b7192bc390fd33992b11d54feada5077562bd
==============================================

Status         : NOK
Failure reason : squid-3.2.3
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 19:15:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/202b7192bc390fd33992b11d54feada5077562bd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/202b7192bc390fd33992b11d54feada5077562bd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/202b7192bc390fd33992b11d54feada5077562bd/config
Defconfig      : http://autobuild.buildroot.net/results/202b7192bc390fd33992b11d54feada5077562bd/defconfig

Build 14d353a768dc1d97a8fae523c8b7d64b3aa571a6
==============================================

Status         : NOK
Failure reason : valgrind-3.7.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 19:16:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/14d353a768dc1d97a8fae523c8b7d64b3aa571a6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/14d353a768dc1d97a8fae523c8b7d64b3aa571a6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/14d353a768dc1d97a8fae523c8b7d64b3aa571a6/config
Defconfig      : http://autobuild.buildroot.net/results/14d353a768dc1d97a8fae523c8b7d64b3aa571a6/defconfig

Build e1d0bcc6d2bb9b7006def9d8f9f97e85cfc9d67e
==============================================

Status         : NOK
Failure reason : rt-tests-0.83
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 19:26:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/e1d0bcc6d2bb9b7006def9d8f9f97e85cfc9d67e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e1d0bcc6d2bb9b7006def9d8f9f97e85cfc9d67e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e1d0bcc6d2bb9b7006def9d8f9f97e85cfc9d67e/config
Defconfig      : http://autobuild.buildroot.net/results/e1d0bcc6d2bb9b7006def9d8f9f97e85cfc9d67e/defconfig

Build 90c75995050e56dea869556cecf9baf92fb79b83
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-25 19:40:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/90c75995050e56dea869556cecf9baf92fb79b83/build-end.log
Complete log   : http://autobuild.buildroot.net/results/90c75995050e56dea869556cecf9baf92fb79b83/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/90c75995050e56dea869556cecf9baf92fb79b83/config
Defconfig      : http://autobuild.buildroot.net/results/90c75995050e56dea869556cecf9baf92fb79b83/defconfig

Build 71af1ce7edfec8ad6ddd84c655fcf25af255be63
==============================================

Status         : NOK
Failure reason : valgrind-3.7.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 20:16:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/71af1ce7edfec8ad6ddd84c655fcf25af255be63/build-end.log
Complete log   : http://autobuild.buildroot.net/results/71af1ce7edfec8ad6ddd84c655fcf25af255be63/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/71af1ce7edfec8ad6ddd84c655fcf25af255be63/config
Defconfig      : http://autobuild.buildroot.net/results/71af1ce7edfec8ad6ddd84c655fcf25af255be63/defconfig

Build bff99dd7db9481e949f89e8b069fed6a89676165
==============================================

Status         : NOK
Failure reason : gdbhost-7.4.1
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 20:19:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/bff99dd7db9481e949f89e8b069fed6a89676165/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bff99dd7db9481e949f89e8b069fed6a89676165/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bff99dd7db9481e949f89e8b069fed6a89676165/config
Defconfig      : http://autobuild.buildroot.net/results/bff99dd7db9481e949f89e8b069fed6a89676165/defconfig

Build 10b5dc4592a7173a9dabc7452fa8b231d9b0a765
==============================================

Status         : NOK
Failure reason : libeXosip2-3.6.0
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 20:19:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/10b5dc4592a7173a9dabc7452fa8b231d9b0a765/build-end.log
Complete log   : http://autobuild.buildroot.net/results/10b5dc4592a7173a9dabc7452fa8b231d9b0a765/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/10b5dc4592a7173a9dabc7452fa8b231d9b0a765/config
Defconfig      : http://autobuild.buildroot.net/results/10b5dc4592a7173a9dabc7452fa8b231d9b0a765/defconfig

Build f950eb19315995afe586e398020fb988ab1f5ef2
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 20:19:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/f950eb19315995afe586e398020fb988ab1f5ef2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f950eb19315995afe586e398020fb988ab1f5ef2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f950eb19315995afe586e398020fb988ab1f5ef2/config
Defconfig      : http://autobuild.buildroot.net/results/f950eb19315995afe586e398020fb988ab1f5ef2/defconfig

Build 774cefda8d71d1047105614cb0a8fd495143f8d6
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-25 21:05:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/774cefda8d71d1047105614cb0a8fd495143f8d6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/774cefda8d71d1047105614cb0a8fd495143f8d6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/774cefda8d71d1047105614cb0a8fd495143f8d6/config
Defconfig      : http://autobuild.buildroot.net/results/774cefda8d71d1047105614cb0a8fd495143f8d6/defconfig

Build cb3d981f2d9ebf055ccd3c531e04b73a27f089ca
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.26
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 22:30:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/cb3d981f2d9ebf055ccd3c531e04b73a27f089ca/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cb3d981f2d9ebf055ccd3c531e04b73a27f089ca/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cb3d981f2d9ebf055ccd3c531e04b73a27f089ca/config
Defconfig      : http://autobuild.buildroot.net/results/cb3d981f2d9ebf055ccd3c531e04b73a27f089ca/defconfig

Build 930c205d1d987b0ab2d5222e9a6362ca7e997dd1
==============================================

Status         : NOK
Failure reason : audiofile-0.3.4
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 22:57:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/930c205d1d987b0ab2d5222e9a6362ca7e997dd1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/930c205d1d987b0ab2d5222e9a6362ca7e997dd1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/930c205d1d987b0ab2d5222e9a6362ca7e997dd1/config
Defconfig      : http://autobuild.buildroot.net/results/930c205d1d987b0ab2d5222e9a6362ca7e997dd1/defconfig

Build 774063492512a334088341c7bbf65c22274286f5
==============================================

Status         : NOK
Failure reason : host-libglib2-2.30.3
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-25 23:04:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/774063492512a334088341c7bbf65c22274286f5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/774063492512a334088341c7bbf65c22274286f5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/774063492512a334088341c7bbf65c22274286f5/config
Defconfig      : http://autobuild.buildroot.net/results/774063492512a334088341c7bbf65c22274286f5/defconfig

Build 5b366881bca45b05d7ac44f32c6b487f7ab393f9
==============================================

Status         : NOK
Failure reason : ltrace-0.6.0
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-25 23:06:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=ade0a8a856e1009210538170cd72d92a07c06233
End of log     : http://autobuild.buildroot.net/results/5b366881bca45b05d7ac44f32c6b487f7ab393f9/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5b366881bca45b05d7ac44f32c6b487f7ab393f9/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5b366881bca45b05d7ac44f32c6b487f7ab393f9/config
Defconfig      : http://autobuild.buildroot.net/results/5b366881bca45b05d7ac44f32c6b487f7ab393f9/defconfig



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] [PATCH 2/2] manual: autogenerate *-list.txt
From: Samuel Martin @ 2012-11-26  5:15 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50B29C3C.5090702@mind.be>

Hi Arnout, all,

2012/11/25 Arnout Vandecappelle <arnout@mind.be>:
> On 22/11/12 01:30, Samuel Martin wrote:
>>
>> I wonder whether the deprecated-list.txt file should be kept under
>> scm; here I've just removed it and auto-generate it whenever the
>> manual is built.
>>
>> It works well because the python script does not miss anything... so far.
>>
>> However, at the end, manual checking is still recommended.
>>
>> OTOH, keeping the deprecated-list.txt file under scm allows us to
>> enforce synchronization between marking something as deprecated and
>> the update of this list.
>
>
>  I think these things should be kept under SCM.  Not just because manual
> checking is recommended, but also because I don't like writing anything
> outside
> the output directory.  Some people may have the buildroot tree in a shared,
> readonly location.

Right, I forgot this use case.
I'll rework it.

Regards,

-- 
Samuel

^ permalink raw reply

* [Buildroot] [PATCH 2/2] manual: autogenerate *-list.txt
From: Arnout Vandecappelle @ 2012-11-25 22:31 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353544211-9308-2-git-send-email-s.martin49@gmail.com>

On 22/11/12 01:30, Samuel Martin wrote:
> I wonder whether the deprecated-list.txt file should be kept under
> scm; here I've just removed it and auto-generate it whenever the
> manual is built.
>
> It works well because the python script does not miss anything... so far.
>
> However, at the end, manual checking is still recommended.
>
> OTOH, keeping the deprecated-list.txt file under scm allows us to
> enforce synchronization between marking something as deprecated and
> the update of this list.

  I think these things should be kept under SCM.  Not just because manual
checking is recommended, but also because I don't like writing anything outside
the output directory.  Some people may have the buildroot tree in a shared,
readonly location.

  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] Passing arguments to the linker when external toolchain is used.
From: Arnout Vandecappelle @ 2012-11-25 22:25 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAMJ=MEcBJR8R_2SsfuLSz1dxheVz-iede6R6wG-xd7RvxAdpTQ@mail.gmail.com>

On 25/11/12 21:56, Ronny Meeus wrote:
> On Sun, Nov 25, 2012 at 9:44 PM, Arnout Vandecappelle<arnout@mind.be>  wrote:
[snip]
>>   In that case, why not just pass them with LDFLAGS?
>>
>
> Our SW is build in 2 parts: the Linux kernel, buildroot and other
> components are build via buildroot itself.
> Next to this we also have other applications that we build in with "a
> private build infrastructure" using the toolchain, include files etc
> of buildroot.
>
> By adding the extra linker parameters with the wrapper construction we
> can transparantly introduce a new toolchain (with the required
> parameters) in that environment without impact on our build
> infrastructure. The big advantage is that the complete toolchain
> selection (CPU,ABI etc) only needs to be done in buildroot.

  Yes, sounds like a valid use case.

  I also expect that the LDFLAGS are not passed reliably for all packages:
they are hardly ever used, and there are no autobuilder configurations with
any LDFLAGS, so errors in passing LDFLAGS can go unnoticed.

  I don't think we have any other architecture currently in buildroot that
requires something to be passed to ld. If this wrapper construction is
added to buildroot, it would be good if we would also have an internal
use case.

  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] Passing arguments to the linker when external toolchain is used.
From: Ronny Meeus @ 2012-11-25 20:56 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50B28348.7090701@mind.be>

On Sun, Nov 25, 2012 at 9:44 PM, Arnout Vandecappelle <arnout@mind.be> wrote:
> On 25/11/12 18:23, Ronny Meeus wrote:
>>>>
>>>> >>  In my application we need to create partially linked objects that
>>>> >> will
>>>> >>  be linked together in a final link step.
>>>> >>  I see that the correct options (ABI etc) are passed to the compiler
>>>> >>  via the ext-toolchain-wrapper construction, but for the linker this
>>>> >>  technique is not used. It is directly invoked without modifying the
>>>> >>  command line. If I want to create this partially linked file, I need
>>>> >>  to pass an extra option the linker to indicate that is needs to use
>>>> >>  the N32 abi (-melf32btsmipn32).
>>>
>>> >
>>> >
>>> >    First of all, I don't understand why ld needs any option that we
>>> > normally
>>> >  pass to the compiler.  Do the -march, -mtune and -mfpu options even
>>> > work
>>> >  in ld?
>>
>> I think you miss-understood my mail.
>> The linker needs a different option (-melf32btsmipn32) while the
>> compiler needs -march, -mtune and -mfpu etc.
>> For the compiler there is no issue, it is the linker for which no
>> options are passed.
>
>
>  In that case, why not just pass them with LDFLAGS?
>

Our SW is build in 2 parts: the Linux kernel, buildroot and other
components are build via buildroot itself.
Next to this we also have other applications that we build in with "a
private build infrastructure" using the toolchain, include files etc
of buildroot.

By adding the extra linker parameters with the wrapper construction we
can transparantly introduce a new toolchain (with the required
parameters) in that environment without impact on our build
infrastructure. The big advantage is that the complete toolchain
selection (CPU,ABI etc) only needs to be done in buildroot.

>
>> If you look to the changes I made to the wrapper, you can see that a
>> completely different set of options can be passed to the linker. The
>> compiler options are passed to the compiler while a different set of
>> options is passed to the linker.
>
>
>  Sorry, I didn't look at the patch in that much detail...
>
>
>
>  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] Passing arguments to the linker when external toolchain is used.
From: Arnout Vandecappelle @ 2012-11-25 20:44 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAMJ=MEfp0Bevk141N4n8KAn2AzbRpEDfLX9513crSDLTxBKkwA@mail.gmail.com>

On 25/11/12 18:23, Ronny Meeus wrote:
>>> >>  In my application we need to create partially linked objects that will
>>> >>  be linked together in a final link step.
>>> >>  I see that the correct options (ABI etc) are passed to the compiler
>>> >>  via the ext-toolchain-wrapper construction, but for the linker this
>>> >>  technique is not used. It is directly invoked without modifying the
>>> >>  command line. If I want to create this partially linked file, I need
>>> >>  to pass an extra option the linker to indicate that is needs to use
>>> >>  the N32 abi (-melf32btsmipn32).
>> >
>> >
>> >    First of all, I don't understand why ld needs any option that we normally
>> >  pass to the compiler.  Do the -march, -mtune and -mfpu options even work
>> >  in ld?
> I think you miss-understood my mail.
> The linker needs a different option (-melf32btsmipn32) while the
> compiler needs -march, -mtune and -mfpu etc.
> For the compiler there is no issue, it is the linker for which no
> options are passed.

  In that case, why not just pass them with LDFLAGS?


> If you look to the changes I made to the wrapper, you can see that a
> completely different set of options can be passed to the linker. The
> compiler options are passed to the compiler while a different set of
> options is passed to the linker.

  Sorry, I didn't look at the patch in that much detail...


  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] List the useful hook points available in buildroot
From: Yann E. MORIN @ 2012-11-25 17:31 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353861817-4570-1-git-send-email-zinosat@tiscali.it>

Davide, All,

On Sunday 25 November 2012 Davide Viti wrote:
> The complete list can be obtained with the following command:
>   grep "_HOOKS[ ]\+?=" package/pkg-generic.mk
> 
> Signed-off-by: Davide Viti <zinosat@tiscali.it>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply

* [Buildroot] [PATCH] List the useful hook points available in buildroot
From: Samuel Martin @ 2012-11-25 17:25 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1353861817-4570-1-git-send-email-zinosat@tiscali.it>

2012/11/25 Davide Viti <zinosat@tiscali.it>:
> The complete list can be obtained with the following command:
>   grep "_HOOKS[ ]\+?=" package/pkg-generic.mk
>
> Signed-off-by: Davide Viti <zinosat@tiscali.it>
Acked-by: Samuel Martin <s.martin49@gmail.com>

-- 
Sam

^ permalink raw reply

* [Buildroot] Passing arguments to the linker when external toolchain is used.
From: Ronny Meeus @ 2012-11-25 17:23 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50B15945.90300@mind.be>

On Sun, Nov 25, 2012 at 12:33 AM, Arnout Vandecappelle <arnout@mind.be> wrote:
> On 23/11/12 14:04, Ronny Meeus wrote:
>>
>> Hello
>>
>> I'm using buildroot to build an environment for MIPS (Cavium).
>> For this I use a 64 bit toolchain provided by Cavium as an external
>> toolchain.
>>
>> My buildroot configuration is as follows:
>> * Buildroot 2012.05
>> * Target Architecture: MIPS (big endian)
>> * Target Architecture Variant: mips 64
>> * Target ABI: n32
>> * glibc
>>
>> In my application we need to create partially linked objects that will
>> be linked together in a final link step.
>> I see that the correct options (ABI etc) are passed to the compiler
>> via the ext-toolchain-wrapper construction, but for the linker this
>> technique is not used. It is directly invoked without modifying the
>> command line. If I want to create this partially linked file, I need
>> to pass an extra option the linker to indicate that is needs to use
>> the N32 abi (-melf32btsmipn32).
>
>
>  First of all, I don't understand why ld needs any option that we normally
> pass to the compiler.  Do the -march, -mtune and -mfpu options even work
> in ld?

I think you miss-understood my mail.
The linker needs a different option (-melf32btsmipn32) while the
compiler needs -march, -mtune and -mfpu etc.
For the compiler there is no issue, it is the linker for which no
options are passed.

If you look to the changes I made to the wrapper, you can see that a
completely different set of options can be passed to the linker. The
compiler options are passed to the compiler while a different set of
options is passed to the linker.

>  That said, if you do need the CFLAGS, then perhaps you should use
> '$(CC) -nostdlib' rather than $(LD) (and of course pass ld-specific
> options using -Wl,...).
>
>>
>> To make this work, I needed to make 2 changes:
>> - make the linker a link to the ext-toolchain-wrapper
>> - change the ext-toolchain-wrapper so that it passes to options to the
>> linker (currently the option is hardcoded but this needs to be changed
>> so that the BR2_TARGET_LDFLAGS are used.
>
>
>  Since not all gcc flags are supported by ld, I think it should be a
> separate toolchain wrapper, specific for ld.  It can be generated from
> the same source code, though (using ifdefs).
>

That is also an option. In my code I look to the name of the program
that is executed, so at runtime the wrapper determines which set of
options need to be used.

>
>  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] List the useful hook points available in buildroot
From: Davide Viti @ 2012-11-25 16:43 UTC (permalink / raw)
  To: buildroot

The complete list can be obtained with the following command:
  grep "_HOOKS[ ]\+?=" package/pkg-generic.mk

Signed-off-by: Davide Viti <zinosat@tiscali.it>
---
 docs/manual/adding-packages-generic.txt |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/docs/manual/adding-packages-generic.txt b/docs/manual/adding-packages-generic.txt
index b05043a..3057074 100644
--- a/docs/manual/adding-packages-generic.txt
+++ b/docs/manual/adding-packages-generic.txt
@@ -357,6 +357,9 @@ userful for generic packages.
 
 The following hook points are available:
 
+* +LIBFOO_POST_DOWNLOAD_HOOKS+
+* +LIBFOO_POST_EXTRACT_HOOKS+
+* +LIBFOO_PRE_PATCH_HOOKS+
 * +LIBFOO_POST_PATCH_HOOKS+
 * +LIBFOO_PRE_CONFIGURE_HOOKS+
 * +LIBFOO_POST_CONFIGURE_HOOKS+
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH] lcdproc: fix autobuild errors
From: spdawson at gmail.com @ 2012-11-25 15:52 UTC (permalink / raw)
  To: buildroot

From: Simon Dawson <spdawson@gmail.com>

The autobuilders are falling over building lcdproc, with failures like the
following.

  http://autobuild.buildroot.net/results/622b7da10be751c725ba25eb40102269790b4b03/build-end.log

As Thomas Petazzoni has pointed out, the compile command lines incorrectly
contain host header and library search paths, such as the following.

  -I/home/peko/scratch/host/usr/include/freetype2
  -L/home/peko/scratch/host/usr/lib -lfreetype

This patch changes the lcdproc package to pass the freetype installation
prefixes on the configure command line.

Signed-off-by: Simon Dawson <spdawson@gmail.com>
---
 package/lcdproc/lcdproc.mk |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/package/lcdproc/lcdproc.mk b/package/lcdproc/lcdproc.mk
index 2a80289..fe88f46 100644
--- a/package/lcdproc/lcdproc.mk
+++ b/package/lcdproc/lcdproc.mk
@@ -10,7 +10,9 @@ LCDPROC_LICENSE = GPLv2+
 LCDPROC_LICENSE_FILES = COPYING
 LCDPROC_MAKE = $(MAKE1)
 
-LCDPROC_CONF_OPT = --enable-drivers=$(BR2_PACKAGE_LCDPROC_DRIVERS)
+LCDPROC_CONF_OPT = --enable-drivers=$(BR2_PACKAGE_LCDPROC_DRIVERS) \
+	--with-ft-prefix="$(STAGING_DIR)/usr" \
+	--with-ft-exec-prefix="$(STAGING_DIR)/usr"
 
 ifeq ($(BR2_PACKAGE_LCDPROC_MENUS),y)
 LCDPROC_CONF_OPT += --enable-lcdproc-menus
-- 
1.7.10.4

^ permalink raw reply related

* [Buildroot] [PATCH] List the useful hook points available in buildroot
From: Davide Viti @ 2012-11-25 13:52 UTC (permalink / raw)
  To: buildroot

The complete list can be obtained with the following command:
  grep "_HOOKS[ ]\+?=" package/pkg-generic.mk
---
 docs/manual/adding-packages-generic.txt |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/docs/manual/adding-packages-generic.txt b/docs/manual/adding-packages-generic.txt
index b05043a..3057074 100644
--- a/docs/manual/adding-packages-generic.txt
+++ b/docs/manual/adding-packages-generic.txt
@@ -357,6 +357,9 @@ userful for generic packages.
 
 The following hook points are available:
 
+* +LIBFOO_POST_DOWNLOAD_HOOKS+
+* +LIBFOO_POST_EXTRACT_HOOKS+
+* +LIBFOO_PRE_PATCH_HOOKS+
 * +LIBFOO_POST_PATCH_HOOKS+
 * +LIBFOO_PRE_CONFIGURE_HOOKS+
 * +LIBFOO_POST_CONFIGURE_HOOKS+
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH] List all the available hook points
From: Davide Viti @ 2012-11-25 12:57 UTC (permalink / raw)
  To: buildroot

The list was obtained with the following command:
  grep "_HOOKS[ ]\+?=" package/pkg-generic.mk
---
 docs/manual/adding-packages-generic.txt |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/docs/manual/adding-packages-generic.txt b/docs/manual/adding-packages-generic.txt
index b05043a..3057074 100644
--- a/docs/manual/adding-packages-generic.txt
+++ b/docs/manual/adding-packages-generic.txt
@@ -357,6 +357,9 @@ userful for generic packages.
 
 The following hook points are available:
 
+* +LIBFOO_POST_DOWNLOAD_HOOKS+
+* +LIBFOO_POST_EXTRACT_HOOKS+
+* +LIBFOO_PRE_PATCH_HOOKS+
 * +LIBFOO_POST_PATCH_HOOKS+
 * +LIBFOO_PRE_CONFIGURE_HOOKS+
 * +LIBFOO_POST_CONFIGURE_HOOKS+
-- 
1.7.2.5

^ permalink raw reply related

* [Buildroot] [PATCH] List all the available hook points
From: Samuel Martin @ 2012-11-25 12:17 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAHXCMMK2UfLJ5LEuky7tkh8fGPa+4cpCTx54UdSod=nbvhwxWw@mail.gmail.com>

Hi Davide, Yann, all,

2012/11/18 Samuel Martin <s.martin49@gmail.com>:
> Hi Davide, all,
>
> 2012/11/18 Davide Viti <zinosat@tiscali.it>:
>> The list was obtained with the following command:
>>   grep "_HOOKS[ ]\+?=" package/pkg-generic.mk
>> ---
>>  docs/manual/adding-packages-generic.txt |    4 ++++
>>  1 files changed, 4 insertions(+), 0 deletions(-)
>>
>> diff --git a/docs/manual/adding-packages-generic.txt b/docs/manual/adding-packages-generic.txt
>> index b05043a..a2f37ec 100644
>> --- a/docs/manual/adding-packages-generic.txt
>> +++ b/docs/manual/adding-packages-generic.txt
>> @@ -357,6 +357,9 @@ userful for generic packages.
>>
>>  The following hook points are available:
>>
>> +* +LIBFOO_POST_DOWNLOAD_HOOKS+
>> +* +LIBFOO_POST_EXTRACT_HOOKS+
>> +* +LIBFOO_PRE_PATCH_HOOKS+
>>  * +LIBFOO_POST_PATCH_HOOKS+
>>  * +LIBFOO_PRE_CONFIGURE_HOOKS+
>>  * +LIBFOO_POST_CONFIGURE_HOOKS+
>> @@ -364,6 +367,7 @@ The following hook points are available:
>>  * +LIBFOO_POST_INSTALL_HOOKS+ (for host packages only)
>>  * +LIBFOO_POST_INSTALL_STAGING_HOOKS+ (for target packages only)
>>  * +LIBFOO_POST_INSTALL_TARGET_HOOKS+ (for target packages only)
>> +* +LIBFOO_POST_INSTALL_IMAGES_HOOKS+
>
> I'm a bit worried about this POST_INSTALL_IMAGES_HOOKS could be
> mis-understood or mis-used...
> Maybe it'd be worth to add few words saying that it's mainly for
> bootloader purpose.

Since the POST_INSTALL_IMAGES_HOOKS seems to be controversial, at
least its presence in the documentation, I think it is not worth to
document it.

My point is the documentation should contain as much information as
possible to safely hack Buildroot; so, avoid documenting things that
may be mis-understood or mis-used.

So Davide, could you repost the patch without the POST_INSTALL_IMAGES_HOOKS?


BTW, this hook is used in cases as special as rare (only used once in
the current Buildroot code base...).
Also, after some talk on the IRC chan, Thomas P. may have a way to not
use it where it is currently used.


Regards,

-- 
Samuel

^ permalink raw reply


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox