Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [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

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


Hello,

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

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

Build 99a507d18a020b568872ddd4e1b853dc72c04534
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 00:06:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/99a507d18a020b568872ddd4e1b853dc72c04534/build-end.log
Complete log   : http://autobuild.buildroot.net/results/99a507d18a020b568872ddd4e1b853dc72c04534/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/99a507d18a020b568872ddd4e1b853dc72c04534/config
Defconfig      : http://autobuild.buildroot.net/results/99a507d18a020b568872ddd4e1b853dc72c04534/defconfig

Build ece117a566497b71761fdf171354099c553ce491
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 00:07:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/ece117a566497b71761fdf171354099c553ce491/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ece117a566497b71761fdf171354099c553ce491/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ece117a566497b71761fdf171354099c553ce491/config
Defconfig      : http://autobuild.buildroot.net/results/ece117a566497b71761fdf171354099c553ce491/defconfig

Build 3dc74d4fb4fb8388f4179dac8d088f5d23d37908
==============================================

Status         : NOK
Failure reason : can-utils-50775159276d896d8b3102b6dbc658a91a2a1d53
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 00:13:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/3dc74d4fb4fb8388f4179dac8d088f5d23d37908/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3dc74d4fb4fb8388f4179dac8d088f5d23d37908/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3dc74d4fb4fb8388f4179dac8d088f5d23d37908/config
Defconfig      : http://autobuild.buildroot.net/results/3dc74d4fb4fb8388f4179dac8d088f5d23d37908/defconfig

Build 2fbca981b1f4df77210579a0dc4e7f39f9411892
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 00:27:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2fbca981b1f4df77210579a0dc4e7f39f9411892/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2fbca981b1f4df77210579a0dc4e7f39f9411892/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2fbca981b1f4df77210579a0dc4e7f39f9411892/config
Defconfig      : http://autobuild.buildroot.net/results/2fbca981b1f4df77210579a0dc4e7f39f9411892/defconfig

Build bf48b6656912c0e00a3bf5a9fa2608d1332d0b11
==============================================

Status         : NOK
Failure reason : boost-1.49.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 00:29:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/bf48b6656912c0e00a3bf5a9fa2608d1332d0b11/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bf48b6656912c0e00a3bf5a9fa2608d1332d0b11/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bf48b6656912c0e00a3bf5a9fa2608d1332d0b11/config
Defconfig      : http://autobuild.buildroot.net/results/bf48b6656912c0e00a3bf5a9fa2608d1332d0b11/defconfig

Build 4548a616b42b6839ab73025cc45814191338004f
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 00:31:02
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/4548a616b42b6839ab73025cc45814191338004f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4548a616b42b6839ab73025cc45814191338004f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4548a616b42b6839ab73025cc45814191338004f/config
Defconfig      : http://autobuild.buildroot.net/results/4548a616b42b6839ab73025cc45814191338004f/defconfig

Build ca06029cd25b75663454ebf326ecf4504995f6ab
==============================================

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

Build 82bf40d47931e4253a05b80d5dde94977a44febd
==============================================

Status         : NOK
Failure reason : flex-2.5.35
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 00:54:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/82bf40d47931e4253a05b80d5dde94977a44febd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/82bf40d47931e4253a05b80d5dde94977a44febd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/82bf40d47931e4253a05b80d5dde94977a44febd/config
Defconfig      : http://autobuild.buildroot.net/results/82bf40d47931e4253a05b80d5dde94977a44febd/defconfig

Build dd7529d862bc781bf1ed31c963f958e96e043321
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : sh4a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 01:06:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/dd7529d862bc781bf1ed31c963f958e96e043321/build-end.log
Complete log   : http://autobuild.buildroot.net/results/dd7529d862bc781bf1ed31c963f958e96e043321/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/dd7529d862bc781bf1ed31c963f958e96e043321/config
Defconfig      : http://autobuild.buildroot.net/results/dd7529d862bc781bf1ed31c963f958e96e043321/defconfig

Build 723cb181968fbbe58e96f258a55b3f95e91294c3
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 01:12:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/723cb181968fbbe58e96f258a55b3f95e91294c3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/723cb181968fbbe58e96f258a55b3f95e91294c3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/723cb181968fbbe58e96f258a55b3f95e91294c3/config
Defconfig      : http://autobuild.buildroot.net/results/723cb181968fbbe58e96f258a55b3f95e91294c3/defconfig

Build 410d7f7054c232bcdf28abdbb37102798f41193b
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 01:14:16
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/410d7f7054c232bcdf28abdbb37102798f41193b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/410d7f7054c232bcdf28abdbb37102798f41193b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/410d7f7054c232bcdf28abdbb37102798f41193b/config
Defconfig      : http://autobuild.buildroot.net/results/410d7f7054c232bcdf28abdbb37102798f41193b/defconfig

Build 4325cb2db8ff224d8b4fece7532cdec554995613
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 01:30:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/4325cb2db8ff224d8b4fece7532cdec554995613/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4325cb2db8ff224d8b4fece7532cdec554995613/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4325cb2db8ff224d8b4fece7532cdec554995613/config
Defconfig      : http://autobuild.buildroot.net/results/4325cb2db8ff224d8b4fece7532cdec554995613/defconfig

Build 06f71bcb76e24c31fd0d62546641644a34ad8250
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 02:05:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/06f71bcb76e24c31fd0d62546641644a34ad8250/build-end.log
Complete log   : http://autobuild.buildroot.net/results/06f71bcb76e24c31fd0d62546641644a34ad8250/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/06f71bcb76e24c31fd0d62546641644a34ad8250/config
Defconfig      : http://autobuild.buildroot.net/results/06f71bcb76e24c31fd0d62546641644a34ad8250/defconfig

Build e90f95e4ab2421c2e0f23ef9c70880368a9c4987
==============================================

Status         : NOK
Failure reason : dbus-1.4.24
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 02:23:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/e90f95e4ab2421c2e0f23ef9c70880368a9c4987/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e90f95e4ab2421c2e0f23ef9c70880368a9c4987/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e90f95e4ab2421c2e0f23ef9c70880368a9c4987/config
Defconfig      : http://autobuild.buildroot.net/results/e90f95e4ab2421c2e0f23ef9c70880368a9c4987/defconfig

Build 22f3676279d4cbad3950344015086bb83c8eafa7
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 02:40:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/22f3676279d4cbad3950344015086bb83c8eafa7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/22f3676279d4cbad3950344015086bb83c8eafa7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/22f3676279d4cbad3950344015086bb83c8eafa7/config
Defconfig      : http://autobuild.buildroot.net/results/22f3676279d4cbad3950344015086bb83c8eafa7/defconfig

Build 617f0aa10b528b9a955225e6697b45d118f1e094
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 03:05:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/617f0aa10b528b9a955225e6697b45d118f1e094/build-end.log
Complete log   : http://autobuild.buildroot.net/results/617f0aa10b528b9a955225e6697b45d118f1e094/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/617f0aa10b528b9a955225e6697b45d118f1e094/config
Defconfig      : http://autobuild.buildroot.net/results/617f0aa10b528b9a955225e6697b45d118f1e094/defconfig

Build 6c6d31dd1ed30e04b89e026d594ce9d48f5d95a1
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 03:16:47
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6c6d31dd1ed30e04b89e026d594ce9d48f5d95a1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6c6d31dd1ed30e04b89e026d594ce9d48f5d95a1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6c6d31dd1ed30e04b89e026d594ce9d48f5d95a1/config
Defconfig      : http://autobuild.buildroot.net/results/6c6d31dd1ed30e04b89e026d594ce9d48f5d95a1/defconfig

Build 15282b6e89ebc7b7c5cb70ed1049e362446b13ef
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 03:18:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/15282b6e89ebc7b7c5cb70ed1049e362446b13ef/build-end.log
Complete log   : http://autobuild.buildroot.net/results/15282b6e89ebc7b7c5cb70ed1049e362446b13ef/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/15282b6e89ebc7b7c5cb70ed1049e362446b13ef/config
Defconfig      : http://autobuild.buildroot.net/results/15282b6e89ebc7b7c5cb70ed1049e362446b13ef/defconfig

Build bc9625a20860720afad314a73829911a6ade89e0
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 03:24:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/bc9625a20860720afad314a73829911a6ade89e0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bc9625a20860720afad314a73829911a6ade89e0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bc9625a20860720afad314a73829911a6ade89e0/config
Defconfig      : http://autobuild.buildroot.net/results/bc9625a20860720afad314a73829911a6ade89e0/defconfig

Build 2ef704d872eb66772dbfecdbe60db22002dd6f30
==============================================

Status         : NOK
Failure reason : lua-5.1.5
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 03:31:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2ef704d872eb66772dbfecdbe60db22002dd6f30/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2ef704d872eb66772dbfecdbe60db22002dd6f30/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2ef704d872eb66772dbfecdbe60db22002dd6f30/config
Defconfig      : http://autobuild.buildroot.net/results/2ef704d872eb66772dbfecdbe60db22002dd6f30/defconfig

Build ecaa0aa241f43f777ec70e4770dad1889cd4836e
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 04:18:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/ecaa0aa241f43f777ec70e4770dad1889cd4836e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ecaa0aa241f43f777ec70e4770dad1889cd4836e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ecaa0aa241f43f777ec70e4770dad1889cd4836e/config
Defconfig      : http://autobuild.buildroot.net/results/ecaa0aa241f43f777ec70e4770dad1889cd4836e/defconfig

Build f3d6e6d2401aab703b170ba0aa3b0c0c67d5959a
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 04:49:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/f3d6e6d2401aab703b170ba0aa3b0c0c67d5959a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f3d6e6d2401aab703b170ba0aa3b0c0c67d5959a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f3d6e6d2401aab703b170ba0aa3b0c0c67d5959a/config
Defconfig      : http://autobuild.buildroot.net/results/f3d6e6d2401aab703b170ba0aa3b0c0c67d5959a/defconfig

Build 65352b80178cec0ede01f3996103a4e81d4fe0f4
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 04:58:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/65352b80178cec0ede01f3996103a4e81d4fe0f4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/65352b80178cec0ede01f3996103a4e81d4fe0f4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/65352b80178cec0ede01f3996103a4e81d4fe0f4/config
Defconfig      : http://autobuild.buildroot.net/results/65352b80178cec0ede01f3996103a4e81d4fe0f4/defconfig

Build 3bfbeb6f7910d17b4c0d9798e41bcbde8d575cb5
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 05:16:57
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/3bfbeb6f7910d17b4c0d9798e41bcbde8d575cb5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3bfbeb6f7910d17b4c0d9798e41bcbde8d575cb5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3bfbeb6f7910d17b4c0d9798e41bcbde8d575cb5/config
Defconfig      : http://autobuild.buildroot.net/results/3bfbeb6f7910d17b4c0d9798e41bcbde8d575cb5/defconfig

Build a458adc5a43665dede47320f2fb7d4a00278f649
==============================================

Status         : NOK
Failure reason : pcsc-lite-1.8.6
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 05:37:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/a458adc5a43665dede47320f2fb7d4a00278f649/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a458adc5a43665dede47320f2fb7d4a00278f649/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a458adc5a43665dede47320f2fb7d4a00278f649/config
Defconfig      : http://autobuild.buildroot.net/results/a458adc5a43665dede47320f2fb7d4a00278f649/defconfig

Build 9adfd7785572af8919d083e829604b0bf6973ef5
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 05:42:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9adfd7785572af8919d083e829604b0bf6973ef5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9adfd7785572af8919d083e829604b0bf6973ef5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9adfd7785572af8919d083e829604b0bf6973ef5/config
Defconfig      : http://autobuild.buildroot.net/results/9adfd7785572af8919d083e829604b0bf6973ef5/defconfig

Build bbabead5d557837d0c8c516f21c2130ad4d65684
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 05:50:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/bbabead5d557837d0c8c516f21c2130ad4d65684/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bbabead5d557837d0c8c516f21c2130ad4d65684/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bbabead5d557837d0c8c516f21c2130ad4d65684/config
Defconfig      : http://autobuild.buildroot.net/results/bbabead5d557837d0c8c516f21c2130ad4d65684/defconfig

Build 950cca5dcabd1611c538771ab70426cfcf0003cd
==============================================

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

Build 2293bbbf3c3702c3d97fffdbf81744c72125abb2
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 06:15:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2293bbbf3c3702c3d97fffdbf81744c72125abb2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2293bbbf3c3702c3d97fffdbf81744c72125abb2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2293bbbf3c3702c3d97fffdbf81744c72125abb2/config
Defconfig      : http://autobuild.buildroot.net/results/2293bbbf3c3702c3d97fffdbf81744c72125abb2/defconfig

Build b405fc0ff333100e0c3239f76e6c912b8a0080b7
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 06:24:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b405fc0ff333100e0c3239f76e6c912b8a0080b7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b405fc0ff333100e0c3239f76e6c912b8a0080b7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b405fc0ff333100e0c3239f76e6c912b8a0080b7/config
Defconfig      : http://autobuild.buildroot.net/results/b405fc0ff333100e0c3239f76e6c912b8a0080b7/defconfig

Build 4aa1f07a175f9a8817eb883831977ffa159a1e98
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 06:27:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/4aa1f07a175f9a8817eb883831977ffa159a1e98/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4aa1f07a175f9a8817eb883831977ffa159a1e98/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4aa1f07a175f9a8817eb883831977ffa159a1e98/config
Defconfig      : http://autobuild.buildroot.net/results/4aa1f07a175f9a8817eb883831977ffa159a1e98/defconfig

Build b1601ee91541daff4cc8606514de9cb0c5ad1d17
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 06:51:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b1601ee91541daff4cc8606514de9cb0c5ad1d17/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b1601ee91541daff4cc8606514de9cb0c5ad1d17/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b1601ee91541daff4cc8606514de9cb0c5ad1d17/config
Defconfig      : http://autobuild.buildroot.net/results/b1601ee91541daff4cc8606514de9cb0c5ad1d17/defconfig

Build 08458085958b2746cf8bb3fe4c84c4bee433386a
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 06:54:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/08458085958b2746cf8bb3fe4c84c4bee433386a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/08458085958b2746cf8bb3fe4c84c4bee433386a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/08458085958b2746cf8bb3fe4c84c4bee433386a/config
Defconfig      : http://autobuild.buildroot.net/results/08458085958b2746cf8bb3fe4c84c4bee433386a/defconfig

Build 3cda371849d980318cb3b19e3701a7e823df6ea2
==============================================

Status         : NOK
Failure reason : qtuio-abe4973ff6
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 07:24:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/3cda371849d980318cb3b19e3701a7e823df6ea2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3cda371849d980318cb3b19e3701a7e823df6ea2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3cda371849d980318cb3b19e3701a7e823df6ea2/config
Defconfig      : http://autobuild.buildroot.net/results/3cda371849d980318cb3b19e3701a7e823df6ea2/defconfig

Build e97643d851254ae426b3bbecb35dbca5fd86905b
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 07:29:00
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/e97643d851254ae426b3bbecb35dbca5fd86905b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e97643d851254ae426b3bbecb35dbca5fd86905b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e97643d851254ae426b3bbecb35dbca5fd86905b/config
Defconfig      : http://autobuild.buildroot.net/results/e97643d851254ae426b3bbecb35dbca5fd86905b/defconfig

Build 3e2e6c96557b74a2dcc6e036095ae7f8d95bd119
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 07:54:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/3e2e6c96557b74a2dcc6e036095ae7f8d95bd119/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3e2e6c96557b74a2dcc6e036095ae7f8d95bd119/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3e2e6c96557b74a2dcc6e036095ae7f8d95bd119/config
Defconfig      : http://autobuild.buildroot.net/results/3e2e6c96557b74a2dcc6e036095ae7f8d95bd119/defconfig

Build 3792f384fc2bd9097c093f3ff6c30808b1892639
==============================================

Status         : NOK
Failure reason : qextserialport-f83b4e7ca922e53
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 08:32:58
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/3792f384fc2bd9097c093f3ff6c30808b1892639/build-end.log
Complete log   : http://autobuild.buildroot.net/results/3792f384fc2bd9097c093f3ff6c30808b1892639/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/3792f384fc2bd9097c093f3ff6c30808b1892639/config
Defconfig      : http://autobuild.buildroot.net/results/3792f384fc2bd9097c093f3ff6c30808b1892639/defconfig

Build 23a927422b041ddd38ae61a504e702851cf253fa
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 08:35:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/23a927422b041ddd38ae61a504e702851cf253fa/build-end.log
Complete log   : http://autobuild.buildroot.net/results/23a927422b041ddd38ae61a504e702851cf253fa/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/23a927422b041ddd38ae61a504e702851cf253fa/config
Defconfig      : http://autobuild.buildroot.net/results/23a927422b041ddd38ae61a504e702851cf253fa/defconfig

Build 74254ccd88e5dd86174cd03d61b40bef99dab6f2
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 08:40:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/74254ccd88e5dd86174cd03d61b40bef99dab6f2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/74254ccd88e5dd86174cd03d61b40bef99dab6f2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/74254ccd88e5dd86174cd03d61b40bef99dab6f2/config
Defconfig      : http://autobuild.buildroot.net/results/74254ccd88e5dd86174cd03d61b40bef99dab6f2/defconfig

Build 43ea1f34a3761634ce262cb74e90bdec3207f907
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 09:10:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/43ea1f34a3761634ce262cb74e90bdec3207f907/build-end.log
Complete log   : http://autobuild.buildroot.net/results/43ea1f34a3761634ce262cb74e90bdec3207f907/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/43ea1f34a3761634ce262cb74e90bdec3207f907/config
Defconfig      : http://autobuild.buildroot.net/results/43ea1f34a3761634ce262cb74e90bdec3207f907/defconfig

Build 02b96de2b929b2c8b7ffb9096f0f0e7272d91520
==============================================

Status         : NOK
Failure reason : nfs-utils-1.2.6
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 09:17:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/02b96de2b929b2c8b7ffb9096f0f0e7272d91520/build-end.log
Complete log   : http://autobuild.buildroot.net/results/02b96de2b929b2c8b7ffb9096f0f0e7272d91520/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/02b96de2b929b2c8b7ffb9096f0f0e7272d91520/config
Defconfig      : http://autobuild.buildroot.net/results/02b96de2b929b2c8b7ffb9096f0f0e7272d91520/defconfig

Build 6272336872b03c1bd4f9101cae5631844522f02b
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 09:26:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6272336872b03c1bd4f9101cae5631844522f02b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6272336872b03c1bd4f9101cae5631844522f02b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6272336872b03c1bd4f9101cae5631844522f02b/config
Defconfig      : http://autobuild.buildroot.net/results/6272336872b03c1bd4f9101cae5631844522f02b/defconfig

Build 9224d5573044230b5f2ec9994d9e65d4c4267e6b
==============================================

Status         : NOK
Failure reason : qextserialport-f83b4e7ca922e53
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 09:45:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9224d5573044230b5f2ec9994d9e65d4c4267e6b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9224d5573044230b5f2ec9994d9e65d4c4267e6b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9224d5573044230b5f2ec9994d9e65d4c4267e6b/config
Defconfig      : http://autobuild.buildroot.net/results/9224d5573044230b5f2ec9994d9e65d4c4267e6b/defconfig

Build b6320a001a6067ed75c61caf2b4871f6c730ae7f
==============================================

Status         : NOK
Failure reason : lua-5.1.5
Architecture   : x86_64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 09:50:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b6320a001a6067ed75c61caf2b4871f6c730ae7f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b6320a001a6067ed75c61caf2b4871f6c730ae7f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b6320a001a6067ed75c61caf2b4871f6c730ae7f/config
Defconfig      : http://autobuild.buildroot.net/results/b6320a001a6067ed75c61caf2b4871f6c730ae7f/defconfig

Build d86cfdde17f7f88352de49cb1e8307d0d37f8ff0
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 10:22:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/d86cfdde17f7f88352de49cb1e8307d0d37f8ff0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d86cfdde17f7f88352de49cb1e8307d0d37f8ff0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d86cfdde17f7f88352de49cb1e8307d0d37f8ff0/config
Defconfig      : http://autobuild.buildroot.net/results/d86cfdde17f7f88352de49cb1e8307d0d37f8ff0/defconfig

Build 9271d259666b2e84bb803b7b40b9c3dfb3f46ec6
==============================================

Status         : NOK
Failure reason : nfs-utils-1.2.6
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 10:25:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9271d259666b2e84bb803b7b40b9c3dfb3f46ec6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9271d259666b2e84bb803b7b40b9c3dfb3f46ec6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9271d259666b2e84bb803b7b40b9c3dfb3f46ec6/config
Defconfig      : http://autobuild.buildroot.net/results/9271d259666b2e84bb803b7b40b9c3dfb3f46ec6/defconfig

Build 6dd94f7bb75cc6d7e940a4833e3e1b935e285477
==============================================

Status         : NOK
Failure reason : alsa-lib-1.0.25
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 10:33:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6dd94f7bb75cc6d7e940a4833e3e1b935e285477/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6dd94f7bb75cc6d7e940a4833e3e1b935e285477/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6dd94f7bb75cc6d7e940a4833e3e1b935e285477/config
Defconfig      : http://autobuild.buildroot.net/results/6dd94f7bb75cc6d7e940a4833e3e1b935e285477/defconfig

Build d8771ef73ac4b64ee684dc1bc0e8e34d34918bd4
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 10:41:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/d8771ef73ac4b64ee684dc1bc0e8e34d34918bd4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d8771ef73ac4b64ee684dc1bc0e8e34d34918bd4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d8771ef73ac4b64ee684dc1bc0e8e34d34918bd4/config
Defconfig      : http://autobuild.buildroot.net/results/d8771ef73ac4b64ee684dc1bc0e8e34d34918bd4/defconfig

Build 251bc5a5ede07dbd00f56ca92f852b85b72ea615
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 10:41:22
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/251bc5a5ede07dbd00f56ca92f852b85b72ea615/build-end.log
Complete log   : http://autobuild.buildroot.net/results/251bc5a5ede07dbd00f56ca92f852b85b72ea615/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/251bc5a5ede07dbd00f56ca92f852b85b72ea615/config
Defconfig      : http://autobuild.buildroot.net/results/251bc5a5ede07dbd00f56ca92f852b85b72ea615/defconfig

Build 6284c062e7c492629d2e487cfaaa77b3bfa770c4
==============================================

Status         : NOK
Failure reason : ltp-testsuite-20101031
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 10:50:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6284c062e7c492629d2e487cfaaa77b3bfa770c4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6284c062e7c492629d2e487cfaaa77b3bfa770c4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6284c062e7c492629d2e487cfaaa77b3bfa770c4/config
Defconfig      : http://autobuild.buildroot.net/results/6284c062e7c492629d2e487cfaaa77b3bfa770c4/defconfig

Build 4ccc547f222f2724c487a9dcd61438f9dc10a323
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 11:00:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/4ccc547f222f2724c487a9dcd61438f9dc10a323/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4ccc547f222f2724c487a9dcd61438f9dc10a323/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4ccc547f222f2724c487a9dcd61438f9dc10a323/config
Defconfig      : http://autobuild.buildroot.net/results/4ccc547f222f2724c487a9dcd61438f9dc10a323/defconfig

Build 58fc9187cafb186069e5c099a7c43bad876fbdd1
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 11:04:31
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/58fc9187cafb186069e5c099a7c43bad876fbdd1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/58fc9187cafb186069e5c099a7c43bad876fbdd1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/58fc9187cafb186069e5c099a7c43bad876fbdd1/config
Defconfig      : http://autobuild.buildroot.net/results/58fc9187cafb186069e5c099a7c43bad876fbdd1/defconfig

Build 142bfebfa66b3e76cd9daecbbf4868a7bf9a4b5c
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 11:11:43
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/142bfebfa66b3e76cd9daecbbf4868a7bf9a4b5c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/142bfebfa66b3e76cd9daecbbf4868a7bf9a4b5c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/142bfebfa66b3e76cd9daecbbf4868a7bf9a4b5c/config
Defconfig      : http://autobuild.buildroot.net/results/142bfebfa66b3e76cd9daecbbf4868a7bf9a4b5c/defconfig

Build cc1151c93392afb3f1c689269fc3b9ab02a8a3ce
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 11:20:49
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/cc1151c93392afb3f1c689269fc3b9ab02a8a3ce/build-end.log
Complete log   : http://autobuild.buildroot.net/results/cc1151c93392afb3f1c689269fc3b9ab02a8a3ce/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/cc1151c93392afb3f1c689269fc3b9ab02a8a3ce/config
Defconfig      : http://autobuild.buildroot.net/results/cc1151c93392afb3f1c689269fc3b9ab02a8a3ce/defconfig

Build f88460c72d7621a155d6b60d0fdb41056a8db19d
==============================================

Status         : NOK
Failure reason : nfs-utils-1.2.6
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 11:42:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/f88460c72d7621a155d6b60d0fdb41056a8db19d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f88460c72d7621a155d6b60d0fdb41056a8db19d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f88460c72d7621a155d6b60d0fdb41056a8db19d/config
Defconfig      : http://autobuild.buildroot.net/results/f88460c72d7621a155d6b60d0fdb41056a8db19d/defconfig

Build 09ead76bf86075ceed3b54bd2769586390846ad0
==============================================

Status         : NOK
Failure reason : qextserialport-f83b4e7ca922e53
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 13:01:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/09ead76bf86075ceed3b54bd2769586390846ad0/build-end.log
Complete log   : http://autobuild.buildroot.net/results/09ead76bf86075ceed3b54bd2769586390846ad0/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/09ead76bf86075ceed3b54bd2769586390846ad0/config
Defconfig      : http://autobuild.buildroot.net/results/09ead76bf86075ceed3b54bd2769586390846ad0/defconfig

Build a7166dd3905187d43f8d5c356d9592686b65e87a
==============================================

Status         : NOK
Failure reason : xlib_libXt-1.0.9
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 13:26:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/a7166dd3905187d43f8d5c356d9592686b65e87a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a7166dd3905187d43f8d5c356d9592686b65e87a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a7166dd3905187d43f8d5c356d9592686b65e87a/config
Defconfig      : http://autobuild.buildroot.net/results/a7166dd3905187d43f8d5c356d9592686b65e87a/defconfig

Build 99a3b8f0d03bd636d667e5d260d263a44f9cfdbb
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 13:51:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/99a3b8f0d03bd636d667e5d260d263a44f9cfdbb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/99a3b8f0d03bd636d667e5d260d263a44f9cfdbb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/99a3b8f0d03bd636d667e5d260d263a44f9cfdbb/config
Defconfig      : http://autobuild.buildroot.net/results/99a3b8f0d03bd636d667e5d260d263a44f9cfdbb/defconfig

Build 0d0893cfa63f12df2151527133f693afaadc4366
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 14:08:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/0d0893cfa63f12df2151527133f693afaadc4366/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0d0893cfa63f12df2151527133f693afaadc4366/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0d0893cfa63f12df2151527133f693afaadc4366/config
Defconfig      : http://autobuild.buildroot.net/results/0d0893cfa63f12df2151527133f693afaadc4366/defconfig

Build 70a990a6cb78cc589ddf9cb6d8c59f0e3b2d62d1
==============================================

Status         : NOK
Failure reason : imagemagick-6.7.8-8
Architecture   : sh4
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 14:29:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/70a990a6cb78cc589ddf9cb6d8c59f0e3b2d62d1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/70a990a6cb78cc589ddf9cb6d8c59f0e3b2d62d1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/70a990a6cb78cc589ddf9cb6d8c59f0e3b2d62d1/config
Defconfig      : http://autobuild.buildroot.net/results/70a990a6cb78cc589ddf9cb6d8c59f0e3b2d62d1/defconfig

Build 9967bc20a6094e836c4c18ff2cd30edef143bb8e
==============================================

Status         : NOK
Failure reason : lcdproc-0.5.6
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 14:32:08
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9967bc20a6094e836c4c18ff2cd30edef143bb8e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9967bc20a6094e836c4c18ff2cd30edef143bb8e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9967bc20a6094e836c4c18ff2cd30edef143bb8e/config
Defconfig      : http://autobuild.buildroot.net/results/9967bc20a6094e836c4c18ff2cd30edef143bb8e/defconfig

Build 47c321bf11588b35a12f9d307bb864eb234d7971
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 14:34:09
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/47c321bf11588b35a12f9d307bb864eb234d7971/build-end.log
Complete log   : http://autobuild.buildroot.net/results/47c321bf11588b35a12f9d307bb864eb234d7971/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/47c321bf11588b35a12f9d307bb864eb234d7971/config
Defconfig      : http://autobuild.buildroot.net/results/47c321bf11588b35a12f9d307bb864eb234d7971/defconfig

Build c52f1d640cc5c2f9eb38bbf0a5ea3e580dba5b00
==============================================

Status         : NOK
Failure reason : collectd-5.1.0
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 14:38:05
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/c52f1d640cc5c2f9eb38bbf0a5ea3e580dba5b00/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c52f1d640cc5c2f9eb38bbf0a5ea3e580dba5b00/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c52f1d640cc5c2f9eb38bbf0a5ea3e580dba5b00/config
Defconfig      : http://autobuild.buildroot.net/results/c52f1d640cc5c2f9eb38bbf0a5ea3e580dba5b00/defconfig

Build ed1f2e4e746ed5c5488fa24f8f0be8981806d239
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 14:55:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/ed1f2e4e746ed5c5488fa24f8f0be8981806d239/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ed1f2e4e746ed5c5488fa24f8f0be8981806d239/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ed1f2e4e746ed5c5488fa24f8f0be8981806d239/config
Defconfig      : http://autobuild.buildroot.net/results/ed1f2e4e746ed5c5488fa24f8f0be8981806d239/defconfig

Build 52b1f751773902794f45c20cda6097c34606a25a
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 15:32:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/52b1f751773902794f45c20cda6097c34606a25a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/52b1f751773902794f45c20cda6097c34606a25a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/52b1f751773902794f45c20cda6097c34606a25a/config
Defconfig      : http://autobuild.buildroot.net/results/52b1f751773902794f45c20cda6097c34606a25a/defconfig

Build d0be241ef80533ab80ade70d2130c74185653fd2
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 15:34:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/d0be241ef80533ab80ade70d2130c74185653fd2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d0be241ef80533ab80ade70d2130c74185653fd2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d0be241ef80533ab80ade70d2130c74185653fd2/config
Defconfig      : http://autobuild.buildroot.net/results/d0be241ef80533ab80ade70d2130c74185653fd2/defconfig

Build 7a32c84ec0f6f4e1faad9296244baf212320b37a
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 15:47:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/7a32c84ec0f6f4e1faad9296244baf212320b37a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7a32c84ec0f6f4e1faad9296244baf212320b37a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7a32c84ec0f6f4e1faad9296244baf212320b37a/config
Defconfig      : http://autobuild.buildroot.net/results/7a32c84ec0f6f4e1faad9296244baf212320b37a/defconfig

Build 0ca1a80c3f8e00ad3a3fa6243cb55626f0944440
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 15:49:35
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/0ca1a80c3f8e00ad3a3fa6243cb55626f0944440/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0ca1a80c3f8e00ad3a3fa6243cb55626f0944440/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0ca1a80c3f8e00ad3a3fa6243cb55626f0944440/config
Defconfig      : http://autobuild.buildroot.net/results/0ca1a80c3f8e00ad3a3fa6243cb55626f0944440/defconfig

Build f71d1f6fc4ad148ab71c3f122e8ed4fdd20afa7d
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 16:23:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/f71d1f6fc4ad148ab71c3f122e8ed4fdd20afa7d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f71d1f6fc4ad148ab71c3f122e8ed4fdd20afa7d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f71d1f6fc4ad148ab71c3f122e8ed4fdd20afa7d/config
Defconfig      : http://autobuild.buildroot.net/results/f71d1f6fc4ad148ab71c3f122e8ed4fdd20afa7d/defconfig

Build aa82e10847fc47e6db9bc87d9f8d9aa1b2685ee4
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 16:28:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/aa82e10847fc47e6db9bc87d9f8d9aa1b2685ee4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/aa82e10847fc47e6db9bc87d9f8d9aa1b2685ee4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/aa82e10847fc47e6db9bc87d9f8d9aa1b2685ee4/config
Defconfig      : http://autobuild.buildroot.net/results/aa82e10847fc47e6db9bc87d9f8d9aa1b2685ee4/defconfig

Build 2a972129964698ea19c221d90a643181682ee94f
==============================================

Status         : NOK
Failure reason : nfs-utils-1.2.6
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 16:42:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2a972129964698ea19c221d90a643181682ee94f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2a972129964698ea19c221d90a643181682ee94f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2a972129964698ea19c221d90a643181682ee94f/config
Defconfig      : http://autobuild.buildroot.net/results/2a972129964698ea19c221d90a643181682ee94f/defconfig

Build 6830e0bd7ecd5cb58b029b4a40d0968a2ae91a85
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 16:56:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6830e0bd7ecd5cb58b029b4a40d0968a2ae91a85/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6830e0bd7ecd5cb58b029b4a40d0968a2ae91a85/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6830e0bd7ecd5cb58b029b4a40d0968a2ae91a85/config
Defconfig      : http://autobuild.buildroot.net/results/6830e0bd7ecd5cb58b029b4a40d0968a2ae91a85/defconfig

Build 1a12b2d67df7a129912d700443d31bdd662bea49
==============================================

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

Build 4c2da4d9c4cded1dc276966c389a3845dd504eb7
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 17:18:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/4c2da4d9c4cded1dc276966c389a3845dd504eb7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4c2da4d9c4cded1dc276966c389a3845dd504eb7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4c2da4d9c4cded1dc276966c389a3845dd504eb7/config
Defconfig      : http://autobuild.buildroot.net/results/4c2da4d9c4cded1dc276966c389a3845dd504eb7/defconfig

Build d5455c810510b5293805cf29213714dc1c8aecf2
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 18:13:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/d5455c810510b5293805cf29213714dc1c8aecf2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d5455c810510b5293805cf29213714dc1c8aecf2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d5455c810510b5293805cf29213714dc1c8aecf2/config
Defconfig      : http://autobuild.buildroot.net/results/d5455c810510b5293805cf29213714dc1c8aecf2/defconfig

Build 840e8213a63fba6f42a1f22580e2f53938958521
==============================================

Status         : NOK
Failure reason : qextserialport-f83b4e7ca922e53
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 18:15:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/840e8213a63fba6f42a1f22580e2f53938958521/build-end.log
Complete log   : http://autobuild.buildroot.net/results/840e8213a63fba6f42a1f22580e2f53938958521/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/840e8213a63fba6f42a1f22580e2f53938958521/config
Defconfig      : http://autobuild.buildroot.net/results/840e8213a63fba6f42a1f22580e2f53938958521/defconfig

Build 4772d93f279e76ed0155a80dfafc5aa8a887a9a3
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 18:50:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/4772d93f279e76ed0155a80dfafc5aa8a887a9a3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4772d93f279e76ed0155a80dfafc5aa8a887a9a3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4772d93f279e76ed0155a80dfafc5aa8a887a9a3/config
Defconfig      : http://autobuild.buildroot.net/results/4772d93f279e76ed0155a80dfafc5aa8a887a9a3/defconfig

Build 9e11de38609da89de55013948fe6842842a4897e
==============================================

Status         : NOK
Failure reason : mplayer-1.1
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 19:05:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9e11de38609da89de55013948fe6842842a4897e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9e11de38609da89de55013948fe6842842a4897e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9e11de38609da89de55013948fe6842842a4897e/config
Defconfig      : http://autobuild.buildroot.net/results/9e11de38609da89de55013948fe6842842a4897e/defconfig

Build 9a008b5f6c83912b2ac8c50c83bc59d4cb945cd5
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 19:15:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9a008b5f6c83912b2ac8c50c83bc59d4cb945cd5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9a008b5f6c83912b2ac8c50c83bc59d4cb945cd5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9a008b5f6c83912b2ac8c50c83bc59d4cb945cd5/config
Defconfig      : http://autobuild.buildroot.net/results/9a008b5f6c83912b2ac8c50c83bc59d4cb945cd5/defconfig

Build 296500aa64983b20f8b814e9c9efe1a7915450fa
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 19:24:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/296500aa64983b20f8b814e9c9efe1a7915450fa/build-end.log
Complete log   : http://autobuild.buildroot.net/results/296500aa64983b20f8b814e9c9efe1a7915450fa/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/296500aa64983b20f8b814e9c9efe1a7915450fa/config
Defconfig      : http://autobuild.buildroot.net/results/296500aa64983b20f8b814e9c9efe1a7915450fa/defconfig

Build 7098a93851d2534231fc1fa104b8b71c6098fc18
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 19:29:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/7098a93851d2534231fc1fa104b8b71c6098fc18/build-end.log
Complete log   : http://autobuild.buildroot.net/results/7098a93851d2534231fc1fa104b8b71c6098fc18/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/7098a93851d2534231fc1fa104b8b71c6098fc18/config
Defconfig      : http://autobuild.buildroot.net/results/7098a93851d2534231fc1fa104b8b71c6098fc18/defconfig

Build bd2a0121c7cfc398a80e5ba62fcb5e0c995aa50d
==============================================

Status         : NOK
Failure reason : quota-4.00
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 19:51:48
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/bd2a0121c7cfc398a80e5ba62fcb5e0c995aa50d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bd2a0121c7cfc398a80e5ba62fcb5e0c995aa50d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bd2a0121c7cfc398a80e5ba62fcb5e0c995aa50d/config
Defconfig      : http://autobuild.buildroot.net/results/bd2a0121c7cfc398a80e5ba62fcb5e0c995aa50d/defconfig

Build c9ba91f5ddd63ffd54c7e80fa3db4d9cdc3c5597
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 20:18:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/c9ba91f5ddd63ffd54c7e80fa3db4d9cdc3c5597/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c9ba91f5ddd63ffd54c7e80fa3db4d9cdc3c5597/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c9ba91f5ddd63ffd54c7e80fa3db4d9cdc3c5597/config
Defconfig      : http://autobuild.buildroot.net/results/c9ba91f5ddd63ffd54c7e80fa3db4d9cdc3c5597/defconfig

Build 8b14dc7d889753f0f058aa3e81673804383f5902
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 20:32:12
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/8b14dc7d889753f0f058aa3e81673804383f5902/build-end.log
Complete log   : http://autobuild.buildroot.net/results/8b14dc7d889753f0f058aa3e81673804383f5902/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/8b14dc7d889753f0f058aa3e81673804383f5902/config
Defconfig      : http://autobuild.buildroot.net/results/8b14dc7d889753f0f058aa3e81673804383f5902/defconfig

Build 08897f6a3313a6448e2d766347af91d7c00b0b21
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 20:44:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/08897f6a3313a6448e2d766347af91d7c00b0b21/build-end.log
Complete log   : http://autobuild.buildroot.net/results/08897f6a3313a6448e2d766347af91d7c00b0b21/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/08897f6a3313a6448e2d766347af91d7c00b0b21/config
Defconfig      : http://autobuild.buildroot.net/results/08897f6a3313a6448e2d766347af91d7c00b0b21/defconfig

Build 06dfb0bcb0e9d92c057339c8cbc87f3afe19bed5
==============================================

Status         : NOK
Failure reason : python-2.7.2
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 21:05:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/06dfb0bcb0e9d92c057339c8cbc87f3afe19bed5/build-end.log
Complete log   : http://autobuild.buildroot.net/results/06dfb0bcb0e9d92c057339c8cbc87f3afe19bed5/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/06dfb0bcb0e9d92c057339c8cbc87f3afe19bed5/config
Defconfig      : http://autobuild.buildroot.net/results/06dfb0bcb0e9d92c057339c8cbc87f3afe19bed5/defconfig

Build 2010d86f6ec3edecd49485eb44535c983912a032
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 21:30:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2010d86f6ec3edecd49485eb44535c983912a032/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2010d86f6ec3edecd49485eb44535c983912a032/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2010d86f6ec3edecd49485eb44535c983912a032/config
Defconfig      : http://autobuild.buildroot.net/results/2010d86f6ec3edecd49485eb44535c983912a032/defconfig

Build 6409a6912714e3d4b7372d41a1b80be981c61877
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 21:32:04
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/6409a6912714e3d4b7372d41a1b80be981c61877/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6409a6912714e3d4b7372d41a1b80be981c61877/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6409a6912714e3d4b7372d41a1b80be981c61877/config
Defconfig      : http://autobuild.buildroot.net/results/6409a6912714e3d4b7372d41a1b80be981c61877/defconfig

Build 656cd51c9c163097ada182e75995858eeb4fc475
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 21:32:10
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/656cd51c9c163097ada182e75995858eeb4fc475/build-end.log
Complete log   : http://autobuild.buildroot.net/results/656cd51c9c163097ada182e75995858eeb4fc475/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/656cd51c9c163097ada182e75995858eeb4fc475/config
Defconfig      : http://autobuild.buildroot.net/results/656cd51c9c163097ada182e75995858eeb4fc475/defconfig

Build 466a595a927457a5ecc1ecb6dbbb5a4b0ebc8c81
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Peter Korsgaard (gcc14)
Submitted at   : 2012-11-11 21:54:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/466a595a927457a5ecc1ecb6dbbb5a4b0ebc8c81/build-end.log
Complete log   : http://autobuild.buildroot.net/results/466a595a927457a5ecc1ecb6dbbb5a4b0ebc8c81/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/466a595a927457a5ecc1ecb6dbbb5a4b0ebc8c81/config
Defconfig      : http://autobuild.buildroot.net/results/466a595a927457a5ecc1ecb6dbbb5a4b0ebc8c81/defconfig

Build 501f068515d1719aa4e64095e63bde92bc1912d4
==============================================

Status         : NOK
Failure reason : xlib_libXt-1.0.9
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 22:00:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/501f068515d1719aa4e64095e63bde92bc1912d4/build-end.log
Complete log   : http://autobuild.buildroot.net/results/501f068515d1719aa4e64095e63bde92bc1912d4/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/501f068515d1719aa4e64095e63bde92bc1912d4/config
Defconfig      : http://autobuild.buildroot.net/results/501f068515d1719aa4e64095e63bde92bc1912d4/defconfig

Build 508beb39631f6bce3d755b59fad33bb6f6c71834
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 22:02:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/508beb39631f6bce3d755b59fad33bb6f6c71834/build-end.log
Complete log   : http://autobuild.buildroot.net/results/508beb39631f6bce3d755b59fad33bb6f6c71834/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/508beb39631f6bce3d755b59fad33bb6f6c71834/config
Defconfig      : http://autobuild.buildroot.net/results/508beb39631f6bce3d755b59fad33bb6f6c71834/defconfig

Build 0b698c04c3467bb3c1456f36bda1f5d058872972
==============================================

Status         : NOK
Failure reason : libtirpc-0.2.2
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 22:40:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/0b698c04c3467bb3c1456f36bda1f5d058872972/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0b698c04c3467bb3c1456f36bda1f5d058872972/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0b698c04c3467bb3c1456f36bda1f5d058872972/config
Defconfig      : http://autobuild.buildroot.net/results/0b698c04c3467bb3c1456f36bda1f5d058872972/defconfig

Build 25de1747885e50e57442594ab8702f87f5de58b1
==============================================

Status         : NOK
Failure reason : host-libffi-3.0.11
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:10:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/25de1747885e50e57442594ab8702f87f5de58b1/build-end.log
Complete log   : http://autobuild.buildroot.net/results/25de1747885e50e57442594ab8702f87f5de58b1/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/25de1747885e50e57442594ab8702f87f5de58b1/config
Defconfig      : http://autobuild.buildroot.net/results/25de1747885e50e57442594ab8702f87f5de58b1/defconfig

Build 82d41aa5260dc2199e6fd87ac1bfed840d9f11be
==============================================

Status         : NOK
Failure reason : host-ccache-3.1.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:10:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/82d41aa5260dc2199e6fd87ac1bfed840d9f11be/build-end.log
Complete log   : http://autobuild.buildroot.net/results/82d41aa5260dc2199e6fd87ac1bfed840d9f11be/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/82d41aa5260dc2199e6fd87ac1bfed840d9f11be/config
Defconfig      : http://autobuild.buildroot.net/results/82d41aa5260dc2199e6fd87ac1bfed840d9f11be/defconfig

Build 22e0cbedb1dfb30ee7edc3de4f42aa4fef5ac779
==============================================

Status         : NOK
Failure reason : host-ccache-3.1.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:10:41
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/22e0cbedb1dfb30ee7edc3de4f42aa4fef5ac779/build-end.log
Complete log   : http://autobuild.buildroot.net/results/22e0cbedb1dfb30ee7edc3de4f42aa4fef5ac779/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/22e0cbedb1dfb30ee7edc3de4f42aa4fef5ac779/config
Defconfig      : http://autobuild.buildroot.net/results/22e0cbedb1dfb30ee7edc3de4f42aa4fef5ac779/defconfig

Build 9ed7527f793fdff3c53e83b907d1daddcdb124b6
==============================================

Status         : NOK
Failure reason : host-ccache-3.1.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:10:56
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/9ed7527f793fdff3c53e83b907d1daddcdb124b6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9ed7527f793fdff3c53e83b907d1daddcdb124b6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9ed7527f793fdff3c53e83b907d1daddcdb124b6/config
Defconfig      : http://autobuild.buildroot.net/results/9ed7527f793fdff3c53e83b907d1daddcdb124b6/defconfig

Build 1516fed767283eece0769c5e869a631352403d8f
==============================================

Status         : NOK
Failure reason : host-ccache-3.1.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:11:11
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/1516fed767283eece0769c5e869a631352403d8f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1516fed767283eece0769c5e869a631352403d8f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1516fed767283eece0769c5e869a631352403d8f/config
Defconfig      : http://autobuild.buildroot.net/results/1516fed767283eece0769c5e869a631352403d8f/defconfig

Build 2c73c8e6e18ec1297f6d0a5f0c5278dedc731c94
==============================================

Status         : NOK
Failure reason : host-ccache-3.1.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:11:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/2c73c8e6e18ec1297f6d0a5f0c5278dedc731c94/build-end.log
Complete log   : http://autobuild.buildroot.net/results/2c73c8e6e18ec1297f6d0a5f0c5278dedc731c94/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/2c73c8e6e18ec1297f6d0a5f0c5278dedc731c94/config
Defconfig      : http://autobuild.buildroot.net/results/2c73c8e6e18ec1297f6d0a5f0c5278dedc731c94/defconfig

Build 0c8ea7f0b31c6bdd710f17531a20bd8f37dff368
==============================================

Status         : NOK
Failure reason : host-ccache-3.1.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-11-11 23:11:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/0c8ea7f0b31c6bdd710f17531a20bd8f37dff368/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0c8ea7f0b31c6bdd710f17531a20bd8f37dff368/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0c8ea7f0b31c6bdd710f17531a20bd8f37dff368/config
Defconfig      : http://autobuild.buildroot.net/results/0c8ea7f0b31c6bdd710f17531a20bd8f37dff368/defconfig

Build 17eaf833360a905f4535112df6b77e44e83e10dd
==============================================

Status         : NOK
Failure reason : grantlee-0.2.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 23:19:55
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/17eaf833360a905f4535112df6b77e44e83e10dd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/17eaf833360a905f4535112df6b77e44e83e10dd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/17eaf833360a905f4535112df6b77e44e83e10dd/config
Defconfig      : http://autobuild.buildroot.net/results/17eaf833360a905f4535112df6b77e44e83e10dd/defconfig

Build 1357be00b01c73d3680bae5c490c72d6b4d16c7c
==============================================

Status         : NOK
Failure reason : rpcbind-0.2.0
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-11-11 23:26:24
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/1357be00b01c73d3680bae5c490c72d6b4d16c7c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1357be00b01c73d3680bae5c490c72d6b4d16c7c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1357be00b01c73d3680bae5c490c72d6b4d16c7c/config
Defconfig      : http://autobuild.buildroot.net/results/1357be00b01c73d3680bae5c490c72d6b4d16c7c/defconfig

Build b0940e8e31d3bbe51793b59b8af52b1a9a2aaec7
==============================================

Status         : NOK
Failure reason : cpanminus-1.5018
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-11-11 23:30:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=234fe4433489bca81b79311239569525cc008d9d
End of log     : http://autobuild.buildroot.net/results/b0940e8e31d3bbe51793b59b8af52b1a9a2aaec7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b0940e8e31d3bbe51793b59b8af52b1a9a2aaec7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b0940e8e31d3bbe51793b59b8af52b1a9a2aaec7/config
Defconfig      : http://autobuild.buildroot.net/results/b0940e8e31d3bbe51793b59b8af52b1a9a2aaec7/defconfig



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] buildroot for AM3358 AM3359 with wireless-tools shared library
From: Arnout Vandecappelle @ 2012-11-12  6:14 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352286268.3710.9.camel@debian.fritz.box>

  Hi Juergen,

  I'm sorry, but I haven't been able to pinpoint the core issue - except that it
looks like gcc is using the host configuration to build crt0, which seems odd.
This code has changed a lot in gcc 4.7, so maybe you can try that?

  Regards,
  Arnout


On 11/07/12 12:04, J?rgen Benjamin Ronshausen wrote:
> sorry it took me so long.
>
> regards J?rgen
>
> output/toolchain/gcc-4.6.3-intermediate/gcc/config.status
>
> http://pastebin.com/fLGkJmKi
>
> config.log
>
> http://pastebin.com/WEZd2w7n
>
> auto-host.h
>
> http://pastebin.com/sJZXZvAN
>
> On Thu, 2012-11-01 at 00:06 +0100, Arnout Vandecappelle wrote:
>> On 10/31/12 12:30, J?rgen Benjamin Ronshausen wrote:
>>> logfile1's size is 3MB, to big for pastebin, so i uploaded both to
>>> github
>>>
>>> https://github.com/steven11/the-hunt-for-wireless-tools
>>
>>    gcc-intermediate's config thinks that largefile is enabled...  Can you post
>> output/toolchain/gcc-4.6.3-intermediate/gcc/config.status, config.log and
>> auto-host.h?
>>
>>    BTW what kind of build machine do you use?
>>
>>    Regards,
>>    Arnout
>
>
>

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] buildroot-2012.08: Handling drm module
From: Zvi Vered @ 2012-11-12  3:58 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A029E0.4020802@mind.be>

Hello,

Build is OK.
The resulting image boots OK.
But the screen flickers with this image.
The image was not built with buildroot.
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)  ?

Thanks,
Zvika

-----Original Message----- 
From: Arnout Vandecappelle
Sent: Monday, November 12, 2012 12:42 AM
To: Zvi Vered
Cc: buildroot at busybox.net
Subject: Re: [Buildroot] buildroot-2012.08: Handling drm module

On 11/11/12 22:05, Zvi Vered wrote:
> Hello,
>
> I just tried buildroot-2012.08
>
> According to .config buildroot does not handle 'drm'. at all.
> Am I right ?
>
> When I booted my PC104 module with 'knoppix 2 nodrm' the text screen 
> flickers.
> With 'knoppix 2' the screen is OK.
>
> Now I want to boot the PC104 with "my" distribution based on vanilla
> 3.4.7, busybox.
> Can you help ?

  Can you explain what your problem is?  Is it that the build fails, or that 
the
resulting image doesn't boot, or that the screen still flickers with the
buildroot image?

  In any case, it is probably a kernel problem.  If you use exactly the same 
kernel
version and kernel configuration as in knoppix, you should get the same 
behaviour.
(You can usually get the configuration of a running kernel from 
/proc/config.gz).
Note that knoppix may have additional kernel patches as well.

  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] Various problem using buildroot-2012.05
From: Stefan Fröberg @ 2012-11-12  0:04 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A02B0C.4000107@mind.be>

12.11.2012 0:47, Arnout Vandecappelle kirjoitti:
> On 11/10/12 15:51, Stefan Fr?berg wrote:
>>
>> If you try to use buildroot-made target gcc to compile perl, that is,
>> you use buildroot to cross-compile gcc to run
>> natively inside
>> uClibc (?) environment, then you might encounter problems.
>>
>> As Thomas has said in few times here for people telling about
>> problems of native gcc-toolchain, buildroot is about
>> cross-compiling stuff
>> and buildroot produced native gcc-toolchain is really not supported
>> and might be still broken
>> (I don't know what the current status of it is now).
>
>  The current status is: we're going to remove it.  Thomas has just
> posted some
> patches to do that.
>

Awww...
Well, it's good that he mentioned it at this point, before I started
doing any real work with that native toolchain.


>  The idea is: if you need a toolchain on the target, there is no
> reason not to
> use a normal distro: debian, ubuntu, gentoo, ....
>
>
>  As for perl, however, I think we really would like to be able to
> cross-compile
> perl modules.  But that unfortunately still needs some work.  I messed
> about
> with it for a bit, but I can't say I really understand how the perl
> build system
> works.
>

Yeah.

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.

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.

Regards
Stefan

>
>  Regards,
>  Arnout
>

^ permalink raw reply

* [Buildroot] [PATCH 1/2] Deprecate the support for the toolchain on target
From: Arnout Vandecappelle @ 2012-11-11 23:52 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121111235938.358914c5@skate>

On 11/11/12 23:59, Thomas Petazzoni wrote:
>
> On Sun, 11 Nov 2012 23:53:33 +0100, Arnout Vandecappelle wrote:
>
>>    Who, documentation has nothing to do with the toolchain on target!
>> I can easily imagine use cases where you want to be able to do 'man
>> tcpdump' on the target.
>
> Well this is what we agreed during the meeting, and is even noted in
> your Action Points at
> http://elinux.org/Buildroot:DeveloperDaysELCE2012#Action_points :-)

  Right.  Typing turns of your brain, to some extent :-)

  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 02/23] manual: make clean target consistent with others in buildroot
From: Samuel Martin @ 2012-11-11 23:34 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A02D3E.8060701@mind.be>

2012/11/11 Arnout Vandecappelle <arnout@mind.be>:
> On 11/11/12 14:14, Samuel Martin wrote:
>>
>> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
>>
>> diff --git a/docs/manual/manual.mk b/docs/manual/manual.mk
>> index 1eaf73a..83d2fcb 100644
>> --- a/docs/manual/manual.mk
>> +++ b/docs/manual/manual.mk
>> @@ -38,10 +38,10 @@ $(call
>> GENDOC_INNER,$(1),chunked,split-html,chunked,Split HTML)
>>   $(call GENDOC_INNER,$(1),pdf,pdf,pdf,PDF,--dblatex-opts "-P
>> latex.output.revhistory=0")
>>   $(call GENDOC_INNER,$(1),text,txt,text,Text)
>>   $(call GENDOC_INNER,$(1),epub,epub,epub,EPUB)
>> -clean: clean-$(1)
>> -clean-$(1):
>> +clean clean-$(1): $(1)-clean
>
>
>  I think you can safely remove clean-$(1) - or should we consider this API?
Actually, I kept it to, at least, not break the release.
IIRC, Peter generates the manual and includes it in the release tarball.
That's why I choose the safe path ;-) but I can remove it as soon as
Peter has confirmed it does not break anything.

Regards,

-- 
Sam

^ permalink raw reply

* [Buildroot] [PATCH 05/11] nfs-utils: reformat patch set as git patches
From: Arnout Vandecappelle @ 2012-11-11 23:24 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <d86142f877a476239ab6c3cf49f09cebb6f285f6.1352583641.git.thomas.petazzoni@free-electrons.com>

On 11/10/12 22:42, Thomas Petazzoni wrote:
> As we will need to add more patches to nfs-utils, we need a correct
> ordering when applying patches. Therefore, reformat the patches to use
> a git format and git naming.
>
> The nfs-utils-dont-mix-flags.patch is no longer needed as it was
> patching Makefile.in files that were being regenerated due to the
> package having _AUTORECONF = YES. The Makefile.in are properly
> regenerated thanks to the nfs-utils-0002-Patch-taken-from-Gentoo.patch
> patch.
>
> Signed-off-by: Thomas Petazzoni<thomas.petazzoni@free-electrons.com>
[snip]
> diff --git a/package/nfs-utils/nfs-utils-cross-build.patch b/package/nfs-utils/nfs-utils-0002-Patch-taken-from-Gentoo.patch
> similarity index 69%
> rename from package/nfs-utils/nfs-utils-cross-build.patch
> rename to package/nfs-utils/nfs-utils-0002-Patch-taken-from-Gentoo.patch
> index 43928bf..e310c49 100644
> --- a/package/nfs-utils/nfs-utils-cross-build.patch
> +++ b/package/nfs-utils/nfs-utils-0002-Patch-taken-from-Gentoo.patch
> @@ -1,7 +1,17 @@
> -Patch taken from Gentoo.
> +From 971389625c9602085d399d8ae7fc42b75efcfb7c Mon Sep 17 00:00:00 2001
> +From: Gustavo Zacarias<gustavo@zacarias.com.ar>
> +Date: Sat, 10 Nov 2012 18:56:12 +0100
> +Subject: [PATCH] Patch taken from Gentoo

  Could you take the opportunity to improve the patch description a bit?

[snip]
> diff --git a/package/nfs-utils/nfs-utils-susv3-legacy.patch b/package/nfs-utils/nfs-utils-0003-Switch-legacy-index-in-favour-of-strchr.patch
> similarity index 50%
> rename from package/nfs-utils/nfs-utils-susv3-legacy.patch
> rename to package/nfs-utils/nfs-utils-0003-Switch-legacy-index-in-favour-of-strchr.patch
> index 66dd181..82a6c43 100644
> --- a/package/nfs-utils/nfs-utils-susv3-legacy.patch
> +++ b/package/nfs-utils/nfs-utils-0003-Switch-legacy-index-in-favour-of-strchr.patch
> @@ -1,11 +1,20 @@
> -Switch legacy index() in favour of strchr()
> -Updated for 1.2.6 from the previous patch by Frederik Pasch.
> +From 636e78e4c9bc8be174805bde2f3ae7f940dc3d0e Mon Sep 17 00:00:00 2001
> +From: Gustavo Zacarias<gustavo@zacarias.com.ar>
> +Date: Sat, 10 Nov 2012 18:58:15 +0100
> +Subject: [PATCH] Switch legacy index() in favour of strchr() Updated for
> + 1.2.6 from the previous patch by Frederik Pasch.

  There should be an extra newline here.

[snip]
> +--
> +1.7.9.5
> +

  Minor nit: this git version number is also something that is in the way for
refreshing patches.  I posted a script a while ago to generate patches from
git, and it strips those lines from the patches.

[snip]

  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 00/23] Pull request for branch for-2012/doc
From: Arnout Vandecappelle @ 2012-11-11 23:13 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CAHXCMMLJvvLUXss-Cvt77sUA8RrUHjSLQSAD5sLmMKjdXxvS9Q@mail.gmail.com>

On 11/11/12 14:23, Samuel Martin wrote:
> Ooops, forgot to mention that there still is some "TODO" here and
> there in this series,
> because I think I haven't all inputs to write them...
> So, feel free to fill the gaps!

  Once this has been committed, I'll read the whole manual and (try to) fix
open issues and spelling mistakes (if any :-) and fill in the gaps.

  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 21/23] manual: add pkg-list.txt (generated list of available packages)
From: Arnout Vandecappelle @ 2012-11-11 23:11 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352639701-27829-22-git-send-email-s.martin49@gmail.com>

On 11/11/12 14:14, Samuel Martin wrote:
> +Available packages
> +------------------
> +// docs/manaual/pkg-list.txt is generated using the following command:
> +// $ git grep -E '\((autotools|cmake|generic)-package\)' package/ |  \
> +//     cut -d':' -f1 | grep '\.mk$' | \
> +//     sed -e 's;.*\?/\(.*\?\).mk;* \1;' | \
> +//     sort>  docs/manual/pkg-list.txt
> +
> +include::pkg-list.txt[]

  Would it be possible to generate this list dynamically?  Saves us the trouble
of keeping it consistent manually.  It could be difficult to convince a2x to
look into the output directory for its include:: files, though.

  Regards,
  Arnout

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [PATCH 1/2] Deprecate the support for the toolchain on target
From: Thomas Petazzoni @ 2012-11-11 22:59 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A02C6D.1040105@mind.be>


On Sun, 11 Nov 2012 23:53:33 +0100, Arnout Vandecappelle wrote:

>   Who, documentation has nothing to do with the toolchain on target!
> I can easily imagine use cases where you want to be able to do 'man
> tcpdump' on the target.

Well this is what we agreed during the meeting, and is even noted in
your Action Points at
http://elinux.org/Buildroot:DeveloperDaysELCE2012#Action_points :-)

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 02/23] manual: make clean target consistent with others in buildroot
From: Arnout Vandecappelle @ 2012-11-11 22:57 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352639701-27829-3-git-send-email-s.martin49@gmail.com>

On 11/11/12 14:14, Samuel Martin wrote:
> Signed-off-by: Samuel Martin<s.martin49@gmail.com>
>
> diff --git a/docs/manual/manual.mk b/docs/manual/manual.mk
> index 1eaf73a..83d2fcb 100644
> --- a/docs/manual/manual.mk
> +++ b/docs/manual/manual.mk
> @@ -38,10 +38,10 @@ $(call GENDOC_INNER,$(1),chunked,split-html,chunked,Split HTML)
>   $(call GENDOC_INNER,$(1),pdf,pdf,pdf,PDF,--dblatex-opts "-P latex.output.revhistory=0")
>   $(call GENDOC_INNER,$(1),text,txt,text,Text)
>   $(call GENDOC_INNER,$(1),epub,epub,epub,EPUB)
> -clean: clean-$(1)
> -clean-$(1):
> +clean clean-$(1): $(1)-clean

  I think you can safely remove clean-$(1) - or should we consider this API?

  Regards,
  Arnout

> +$(1)-clean:
>   	$(Q)$(RM) -rf $(O)/docs/$(1)
> -.PHONY: $(1) clean-$(1)
> +.PHONY: $(1) $(1)-clean
>   endef
>
>   MANUAL_SOURCES = $(wildcard docs/manual/*.txt) $(wildcard docs/images/*)

-- 
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 2/2] Mark a number of development related packages as deprecated
From: Arnout Vandecappelle @ 2012-11-11 22:54 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <c42b5a3ae08ae07779a6ee389a8367318efe96bf.1352586949.git.thomas.petazzoni@free-electrons.com>

On 11/10/12 23:36, Thomas Petazzoni wrote:
> automake, autoconf, libtool and make on the target are basically
> useless if we don't support building a toolchain on the target. Of
> course, the host variant of automake, autoconf and libtool will remain
> available.
>
> Signed-off-by: Thomas Petazzoni<thomas.petazzoni@free-electrons.com>

Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

  Still for 2012.11 please :-)

  Regards,
  Arnout
-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [PATCH 1/2] Deprecate the support for the toolchain on target
From: Arnout Vandecappelle @ 2012-11-11 22:53 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <4afe9c298939f3701caa09c2cc5c4bc04f6d4408.1352586949.git.thomas.petazzoni@free-electrons.com>

On 11/10/12 23:36, Thomas Petazzoni wrote:
>   config BR2_HAVE_DOCUMENTATION
>   	bool "documentation on the target"
> +	# We no longer want to support a toolchain on the target
> +	depends on BR2_DEPRECATED
>   	help
>   	  Install the documentation, including manual pages and info
>   	  pages, on the target.

  Who, documentation has nothing to do with the toolchain on target!  I can
easily imagine use cases where you want to be able to do 'man tcpdump' on
the target.

  Regards,
  Arnout
-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [PATCH 1/2 v3] neard: new package
From: Simon Dawson @ 2012-11-11 22:52 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A025C1.4040809@mind.be>

On 11 Nov 2012 22:25, "Arnout Vandecappelle" <arnout@mind.be> wrote:
>  Since you changed the version number, you shouldn't keep my Tested-by
> (Ack is debatable).
>
>  However, I retested it so you can add it again :-)

Thanks Arnout; sorry about the faux pas.

Simon.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121111/252ddf4a/attachment.html>

^ permalink raw reply

* [Buildroot] Various problem using buildroot-2012.05
From: Arnout Vandecappelle @ 2012-11-11 22:47 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <509E69FD.2000804@petroprogram.com>

On 11/10/12 15:51, Stefan Fr?berg wrote:
>
> If you try to use buildroot-made target gcc to compile perl, that is, you use buildroot to cross-compile gcc to run
> natively inside
> uClibc (?) environment, then you might encounter problems.
>
> As Thomas has said in few times here for people telling about problems of native gcc-toolchain, buildroot is about
> cross-compiling stuff
> and buildroot produced native gcc-toolchain is really not supported and might be still broken
> (I don't know what the current status of it is now).

  The current status is: we're going to remove it.  Thomas has just posted some
patches to do that.

  The idea is: if you need a toolchain on the target, there is no reason not to
use a normal distro: debian, ubuntu, gentoo, ....


  As for perl, however, I think we really would like to be able to cross-compile
perl modules.  But that unfortunately still needs some work.  I messed about
with it for a bit, but I can't say I really understand how the perl build system
works.


  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 2/2 v3] neardal: new package
From: Simon Dawson @ 2012-11-11 22:47 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <50A02527.4020801@mind.be>

On 11 Nov 2012 22:22, "Arnout Vandecappelle" <arnout@mind.be> wrote:
>  Boy, looks like I wasn't paying attention...  You need to copy the
> dependencies from dbus-glib:
>         depends on BR2_PACKAGE_DBUS # dbus-glib
>         depends on BR2_USE_WCHAR # glib2
>
>  And of course a comment to explain its absence.

Okay; thanks Arnout.

Simon.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20121111/0354e4d3/attachment-0001.html>

^ permalink raw reply

* [Buildroot] buildroot-2012.08: Handling drm module
From: Arnout Vandecappelle @ 2012-11-11 22:42 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <CABRndgxqqO3HC08rVngxm2eaSVjQ9Ks04U7Mss5-xu=B4WGMdg@mail.gmail.com>

On 11/11/12 22:05, Zvi Vered wrote:
> Hello,
>
> I just tried buildroot-2012.08
>
> According to .config buildroot does not handle 'drm'. at all.
> Am I right ?
>
> When I booted my PC104 module with 'knoppix 2 nodrm' the text screen flickers.
> With 'knoppix 2' the screen is OK.
>
> Now I want to boot the PC104 with "my" distribution based on vanilla
> 3.4.7, busybox.
> Can you help ?

  Can you explain what your problem is?  Is it that the build fails, or that the
resulting image doesn't boot, or that the screen still flickers with the
buildroot image?

  In any case, it is probably a kernel problem.  If you use exactly the same kernel
version and kernel configuration as in knoppix, you should get the same behaviour.
(You can usually get the configuration of a running kernel from /proc/config.gz).
Note that knoppix may have additional kernel patches as well.

  Regards,
  Arnout
-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply

* [Buildroot] [PATCH 1/2 v3] neard: new package
From: Arnout Vandecappelle @ 2012-11-11 22:25 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352628468-14490-2-git-send-email-spdawson@gmail.com>

On 11/11/12 11:07, spdawson at gmail.com wrote:
> From: Simon Dawson<spdawson@gmail.com>
>
> Signed-off-by: Simon Dawson<spdawson@gmail.com>
> Acked-by: Arnout Vandecappelle (Essensium/Mind)<arnout@mind.be>
> Tested-by: Arnout Vandecappelle (Essensium/Mind)<arnout@mind.be>
>   (built-test on a minimal powerpc config)

  Since you changed the version number, you shouldn't keep my Tested-by
(Ack is debatable).

  However, I retested it so you can add it again :-)

  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 2/2 v3] neardal: new package
From: Arnout Vandecappelle @ 2012-11-11 22:22 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352628468-14490-3-git-send-email-spdawson@gmail.com>

On 11/11/12 11:07, spdawson at gmail.com wrote:
> From: Simon Dawson<spdawson@gmail.com>
>
> Signed-off-by: Simon Dawson<spdawson@gmail.com>
> Acked-by: Arnout Vandecappelle (Essensium/Mind)<arnout@mind.be>
> Tested-by: Arnout Vandecappelle (Essensium/Mind)<arnout@mind.be>
>   (built-test on a minimal powerpc config)
> ---
>   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  |    7 +++++++
>   package/neardal/neardal.mk |   16 ++++++++++++++++
>   3 files changed, 24 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..719bf95
> --- /dev/null
> +++ b/package/neardal/Config.in
> @@ -0,0 +1,7 @@
> +config BR2_PACKAGE_NEARDAL
> +	bool "neardal"
> +	select BR2_PACKAGE_DBUS_GLIB

  Boy, looks like I wasn't paying attention...  You need to copy the
dependencies from dbus-glib:
         depends on BR2_PACKAGE_DBUS # dbus-glib
         depends on BR2_USE_WCHAR # glib2

  And of course a comment to explain its absence.


  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] group file: define groups expected by udev
From: Arnout Vandecappelle @ 2012-11-11 22:12 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1352603315-1731-1-git-send-email-danomimanchego123@gmail.com>

On 11/11/12 04:08, Danomi Manchego wrote:
> udev-182 requires several groups to be resolvable at udev startup,
> including disk, cdrom, floppy, tape, audio, video, lp, tty, dialout,
> and kmem.  Only some of these are in the default skeleton's group
> file, So let's add the missing groups, and plugdev too.
>
> This avoids getting these logs in /var/logs/messages:
>
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'dialout' unknown
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'kmem' unknown
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'video' unknown
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'lp' unknown
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'floppy' unknown
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'cdrom' unknown
> Jan  1 00:00:08 buildroot daemon.err udevd[37]: specified group 'tape' unknown
>
> Signed-off-by: Danomi Manchego<danomimanchego123@gmail.com>

Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

  Not tested or anything, but I agree with the principle and the patch looks
good.

  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


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