Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] Packet menu: X.org X Window System
From: Thomas Petazzoni @ 2012-12-27 11:46 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <87ip7o5sjb.fsf@dell.be.48ers.dk>

Dear Peter Korsgaard,

On Wed, 26 Dec 2012 23:59:20 +0100, Peter Korsgaard wrote:

> Also notice that Tinyx/kdrive is deprecated, and there's been talks
> about completely removing it several times, most recently afaik was:
> 
> http://lists.x.org/archives/xorg-devel/2012-March/030059.html

Then, shouldn't we make "Modular X.org" be the default option instead
of the current default of "TinyX" ?

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 1/1] package/tvheadend: new package
From: Yann E. MORIN @ 2012-12-27 11:41 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121227122130.38818d23@skate>

Thomas, All,

On Thursday 27 December 2012 Thomas Petazzoni wrote:
> On Mon, 24 Dec 2012 11:00:59 +0100, Yann E. MORIN wrote:
> > +#----------------------------------------------------------------------------
> > +# tvheadend is a little smuggler and thief! ;-)
> > +# During the ./configure, it downloads some files from the dvb-apps
> > +# package, so it has a list of pre-scanned tunner configurations.
> > +# For buildroot that has a few-unfortunate consequences:
> > +#  - the network may not be availabe at the time of build, if the
> > +#    user pre-downloaded the sources with 'make source'
> > +# So, here's what we do:
> > +#  - after the main archive download, we do download those files
> > +#  - after extract, we extract the required files
> > +
> > +TVHEADEND_DVBSCANS_VERSION  = 3fc7dfa68484
> > +TVHEADEND_DVBSCANS_SITE     = http://linuxtv.org/hg/dvb-apps/archive/
> > +TVHEADEND_DVBSCANS_DIR      = dvb-apps-$(TVHEADEND_DVBSCANS_VERSION)
> > +TVHEADEND_DVBSCANS_SOURCE   = $(TVHEADEND_DVBSCANS_DIR).tar.bz2
> > +
> > +define TVHEADEND_DOWNLOAD_DVBSCANS
> > +	$(call DOWNLOAD_WGET,$(TVHEADEND_DVBSCANS_SITE)/$(TVHEADEND_DVBSCANS_VERSION).tar.bz2,$(TVHEADEND_DVBSCANS_SOURCE))
> > +endef
> > +TVHEADEND_POST_DOWNLOAD_HOOKS        = TVHEADEND_DOWNLOAD_DVBSCANS
> > +
> > +define TVHEADEND_EXTRACT_DVBSCANS
> > +	mkdir -p $(@D)/data/dvb-scan
> > +	$(INFLATE.bz2) $(DL_DIR)/$(TVHEADEND_DVBSCANS_SOURCE)      |\
> > +	$(TAR) $(TAR_STRIP_COMPONENTS)=3 -C $(@D)/data/dvb-scan     \
> > +	       $(TAR_OPTIONS) -                                     \
> > +	       $(TVHEADEND_DVBSCANS_DIR)/util/scan/{atsc,dvb-{c,s,t}}
> > +endef
> > +TVHEADEND_POST_EXTRACT_HOOKS         = TVHEADEND_EXTRACT_DVBSCANS
> 
> I think this part should be moved to a separate package, say
> "dvb-apps", on which tvheadend would depend. It can install its stuff
> in $(STAGING_DIR), for example, and then you can symlink
> $(@D)/data/dvb-scan of tvheadend to the right directory in
> $(STAGING_DIR), or better, modify a bit tvheadend so that it can take
> an argument specifying where the dvb-data is to be found.

I knew this would raise eyebrows.
I'll see what I can come up with...

Regards,
Yann E. MORIN.

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

^ permalink raw reply

* [Buildroot] [PATCH 1/1] package/tvheadend: new package
From: Thomas Petazzoni @ 2012-12-27 11:21 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <97b2cc572615e7c760fb8f351510b67ccb02a0e4.1356343037.git.yann.morin.1998@free.fr>

Dear Yann E. MORIN,

On Mon, 24 Dec 2012 11:00:59 +0100, Yann E. MORIN wrote:

> +#----------------------------------------------------------------------------
> +# tvheadend is a little smuggler and thief! ;-)
> +# During the ./configure, it downloads some files from the dvb-apps
> +# package, so it has a list of pre-scanned tunner configurations.
> +# For buildroot that has a few-unfortunate consequences:
> +#  - the network may not be availabe at the time of build, if the
> +#    user pre-downloaded the sources with 'make source'
> +# So, here's what we do:
> +#  - after the main archive download, we do download those files
> +#  - after extract, we extract the required files
> +
> +TVHEADEND_DVBSCANS_VERSION  = 3fc7dfa68484
> +TVHEADEND_DVBSCANS_SITE     = http://linuxtv.org/hg/dvb-apps/archive/
> +TVHEADEND_DVBSCANS_DIR      = dvb-apps-$(TVHEADEND_DVBSCANS_VERSION)
> +TVHEADEND_DVBSCANS_SOURCE   = $(TVHEADEND_DVBSCANS_DIR).tar.bz2
> +
> +define TVHEADEND_DOWNLOAD_DVBSCANS
> +	$(call DOWNLOAD_WGET,$(TVHEADEND_DVBSCANS_SITE)/$(TVHEADEND_DVBSCANS_VERSION).tar.bz2,$(TVHEADEND_DVBSCANS_SOURCE))
> +endef
> +TVHEADEND_POST_DOWNLOAD_HOOKS        = TVHEADEND_DOWNLOAD_DVBSCANS
> +
> +define TVHEADEND_EXTRACT_DVBSCANS
> +	mkdir -p $(@D)/data/dvb-scan
> +	$(INFLATE.bz2) $(DL_DIR)/$(TVHEADEND_DVBSCANS_SOURCE)      |\
> +	$(TAR) $(TAR_STRIP_COMPONENTS)=3 -C $(@D)/data/dvb-scan     \
> +	       $(TAR_OPTIONS) -                                     \
> +	       $(TVHEADEND_DVBSCANS_DIR)/util/scan/{atsc,dvb-{c,s,t}}
> +endef
> +TVHEADEND_POST_EXTRACT_HOOKS         = TVHEADEND_EXTRACT_DVBSCANS

I think this part should be moved to a separate package, say
"dvb-apps", on which tvheadend would depend. It can install its stuff
in $(STAGING_DIR), for example, and then you can symlink
$(@D)/data/dvb-scan of tvheadend to the right directory in
$(STAGING_DIR), or better, modify a bit tvheadend so that it can take
an argument specifying where the dvb-data is to be found.

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-12-26
From: Thomas Petazzoni @ 2012-12-27  7:33 UTC (permalink / raw)
  To: buildroot


Hello,

On 2012-12-26, 164 random build tests have been done and
submitted on autobuild.buildroot.net.
 114 builds have been successful
 50 builds have failed

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

Build 0c1326389515133102eea1d4d0ae819c62cfdf16
==============================================

Status         : NOK
Failure reason : gdb-7.4.1-target
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 00:28:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/0c1326389515133102eea1d4d0ae819c62cfdf16/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0c1326389515133102eea1d4d0ae819c62cfdf16/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0c1326389515133102eea1d4d0ae819c62cfdf16/config
Defconfig      : http://autobuild.buildroot.net/results/0c1326389515133102eea1d4d0ae819c62cfdf16/defconfig

Build b25ee828f4f6dccf7b8f763549fd248589e2a4fb
==============================================

Status         : NOK
Failure reason : squid-3.2.5
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 00:33:39
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/b25ee828f4f6dccf7b8f763549fd248589e2a4fb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b25ee828f4f6dccf7b8f763549fd248589e2a4fb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b25ee828f4f6dccf7b8f763549fd248589e2a4fb/config
Defconfig      : http://autobuild.buildroot.net/results/b25ee828f4f6dccf7b8f763549fd248589e2a4fb/defconfig

Build b3fe60929b31c39a9a4c0fc3f15fc302181be8d3
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 00:51:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/b3fe60929b31c39a9a4c0fc3f15fc302181be8d3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b3fe60929b31c39a9a4c0fc3f15fc302181be8d3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b3fe60929b31c39a9a4c0fc3f15fc302181be8d3/config
Defconfig      : http://autobuild.buildroot.net/results/b3fe60929b31c39a9a4c0fc3f15fc302181be8d3/defconfig

Build 0e36d1819b4cf5b8b3e672d46a8db73695d5a9a2
==============================================

Status         : NOK
Failure reason : sdl-1.2.15
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-26 02:23:36
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/0e36d1819b4cf5b8b3e672d46a8db73695d5a9a2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0e36d1819b4cf5b8b3e672d46a8db73695d5a9a2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0e36d1819b4cf5b8b3e672d46a8db73695d5a9a2/config
Defconfig      : http://autobuild.buildroot.net/results/0e36d1819b4cf5b8b3e672d46a8db73695d5a9a2/defconfig

Build acc64b6ee7c3bc8b23a05fa0b6bf0474ccfba7cd
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 02:25:44
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/acc64b6ee7c3bc8b23a05fa0b6bf0474ccfba7cd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/acc64b6ee7c3bc8b23a05fa0b6bf0474ccfba7cd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/acc64b6ee7c3bc8b23a05fa0b6bf0474ccfba7cd/config
Defconfig      : http://autobuild.buildroot.net/results/acc64b6ee7c3bc8b23a05fa0b6bf0474ccfba7cd/defconfig

Build 92fd391d0b0d8615ab0b01ea17a075547b7649e7
==============================================

Status         : NOK
Failure reason : valgrind-3.7.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 02:37:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/92fd391d0b0d8615ab0b01ea17a075547b7649e7/build-end.log
Complete log   : http://autobuild.buildroot.net/results/92fd391d0b0d8615ab0b01ea17a075547b7649e7/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/92fd391d0b0d8615ab0b01ea17a075547b7649e7/config
Defconfig      : http://autobuild.buildroot.net/results/92fd391d0b0d8615ab0b01ea17a075547b7649e7/defconfig

Build ee858ed5ffee36c7126fbfecef679cfb50db4651
==============================================

Status         : NOK
Failure reason : squid-3.2.5
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 03:37:29
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/ee858ed5ffee36c7126fbfecef679cfb50db4651/build-end.log
Complete log   : http://autobuild.buildroot.net/results/ee858ed5ffee36c7126fbfecef679cfb50db4651/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/ee858ed5ffee36c7126fbfecef679cfb50db4651/config
Defconfig      : http://autobuild.buildroot.net/results/ee858ed5ffee36c7126fbfecef679cfb50db4651/defconfig

Build 0ca181c48b76fbbfd5873a70f36bb046b339b870
==============================================

Status         : NOK
Failure reason : kexec-2.0.3
Architecture   : mips64el
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 03:39:32
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/0ca181c48b76fbbfd5873a70f36bb046b339b870/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0ca181c48b76fbbfd5873a70f36bb046b339b870/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0ca181c48b76fbbfd5873a70f36bb046b339b870/config
Defconfig      : http://autobuild.buildroot.net/results/0ca181c48b76fbbfd5873a70f36bb046b339b870/defconfig

Build 27f57bb4ec0c6ba6d9bb32c84d8604294cb8d5aa
==============================================

Status         : NOK
Failure reason : linux-pam-1.1.4
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 03:40:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/27f57bb4ec0c6ba6d9bb32c84d8604294cb8d5aa/build-end.log
Complete log   : http://autobuild.buildroot.net/results/27f57bb4ec0c6ba6d9bb32c84d8604294cb8d5aa/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/27f57bb4ec0c6ba6d9bb32c84d8604294cb8d5aa/config
Defconfig      : http://autobuild.buildroot.net/results/27f57bb4ec0c6ba6d9bb32c84d8604294cb8d5aa/defconfig

Build b6aea099c3aebe25257d7401ed9e104b36d4241a
==============================================

Status         : NOK
Failure reason : gdb-7.4.1-target
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 03:51:30
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/b6aea099c3aebe25257d7401ed9e104b36d4241a/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b6aea099c3aebe25257d7401ed9e104b36d4241a/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b6aea099c3aebe25257d7401ed9e104b36d4241a/config
Defconfig      : http://autobuild.buildroot.net/results/b6aea099c3aebe25257d7401ed9e104b36d4241a/defconfig

Build f6a0ec0ad38332aa49a9b27986f500303de87f92
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 04:02:37
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/f6a0ec0ad38332aa49a9b27986f500303de87f92/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f6a0ec0ad38332aa49a9b27986f500303de87f92/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f6a0ec0ad38332aa49a9b27986f500303de87f92/config
Defconfig      : http://autobuild.buildroot.net/results/f6a0ec0ad38332aa49a9b27986f500303de87f92/defconfig

Build 13fae85305db109f0640f7be17633acc91e7ea51
==============================================

Status         : NOK
Failure reason : php-5.3.19
Architecture   : i686
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 04:36:25
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/13fae85305db109f0640f7be17633acc91e7ea51/build-end.log
Complete log   : http://autobuild.buildroot.net/results/13fae85305db109f0640f7be17633acc91e7ea51/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/13fae85305db109f0640f7be17633acc91e7ea51/config
Defconfig      : http://autobuild.buildroot.net/results/13fae85305db109f0640f7be17633acc91e7ea51/defconfig

Build e39403fcf69eaaba5e5af89eb3f82597c8240fea
==============================================

Status         : NOK
Failure reason : collectd-5.1.1
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 05:11:03
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/e39403fcf69eaaba5e5af89eb3f82597c8240fea/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e39403fcf69eaaba5e5af89eb3f82597c8240fea/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e39403fcf69eaaba5e5af89eb3f82597c8240fea/config
Defconfig      : http://autobuild.buildroot.net/results/e39403fcf69eaaba5e5af89eb3f82597c8240fea/defconfig

Build 9cc122943d2ffadf92103b7c17d3ccfcae145cbd
==============================================

Status         : NOK
Failure reason : luajit-2.0.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 06:20:45
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/9cc122943d2ffadf92103b7c17d3ccfcae145cbd/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9cc122943d2ffadf92103b7c17d3ccfcae145cbd/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9cc122943d2ffadf92103b7c17d3ccfcae145cbd/config
Defconfig      : http://autobuild.buildroot.net/results/9cc122943d2ffadf92103b7c17d3ccfcae145cbd/defconfig

Build 318cdc72361e34b3b1a3ea88a5d476b8a026e25e
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 09:03:06
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/318cdc72361e34b3b1a3ea88a5d476b8a026e25e/build-end.log
Complete log   : http://autobuild.buildroot.net/results/318cdc72361e34b3b1a3ea88a5d476b8a026e25e/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/318cdc72361e34b3b1a3ea88a5d476b8a026e25e/config
Defconfig      : http://autobuild.buildroot.net/results/318cdc72361e34b3b1a3ea88a5d476b8a026e25e/defconfig

Build 0cf40ffd3f444dd4c369dc529ba1cba0050d8b05
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 10:27:50
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/0cf40ffd3f444dd4c369dc529ba1cba0050d8b05/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0cf40ffd3f444dd4c369dc529ba1cba0050d8b05/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0cf40ffd3f444dd4c369dc529ba1cba0050d8b05/config
Defconfig      : http://autobuild.buildroot.net/results/0cf40ffd3f444dd4c369dc529ba1cba0050d8b05/defconfig

Build f498696fd778fb8062c9b9b340e2e465cf1d1b9c
==============================================

Status         : NOK
Failure reason : liboping-1.6.2
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 10:36:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/f498696fd778fb8062c9b9b340e2e465cf1d1b9c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f498696fd778fb8062c9b9b340e2e465cf1d1b9c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f498696fd778fb8062c9b9b340e2e465cf1d1b9c/config
Defconfig      : http://autobuild.buildroot.net/results/f498696fd778fb8062c9b9b340e2e465cf1d1b9c/defconfig

Build 4a0c2cea332961498962aea8a94dd5a3f8d97deb
==============================================

Status         : NOK
Failure reason : libebml-1.2.2
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 10:36:54
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/4a0c2cea332961498962aea8a94dd5a3f8d97deb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/4a0c2cea332961498962aea8a94dd5a3f8d97deb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/4a0c2cea332961498962aea8a94dd5a3f8d97deb/config
Defconfig      : http://autobuild.buildroot.net/results/4a0c2cea332961498962aea8a94dd5a3f8d97deb/defconfig

Build 015b5071baa5ca5f8b91ccaaeaa2eb7e7ae095f6
==============================================

Status         : NOK
Failure reason : util-linux-2.20.1
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 11:11:33
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/015b5071baa5ca5f8b91ccaaeaa2eb7e7ae095f6/build-end.log
Complete log   : http://autobuild.buildroot.net/results/015b5071baa5ca5f8b91ccaaeaa2eb7e7ae095f6/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/015b5071baa5ca5f8b91ccaaeaa2eb7e7ae095f6/config
Defconfig      : http://autobuild.buildroot.net/results/015b5071baa5ca5f8b91ccaaeaa2eb7e7ae095f6/defconfig

Build e8316365db2f88e3b974bebc928d66f086a9e44c
==============================================

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

Build 71d1750f19de84f21bfa2b754e09da8677dae68f
==============================================

Status         : NOK
Failure reason : acl-2.2.51
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 11:27:23
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/71d1750f19de84f21bfa2b754e09da8677dae68f/build-end.log
Complete log   : http://autobuild.buildroot.net/results/71d1750f19de84f21bfa2b754e09da8677dae68f/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/71d1750f19de84f21bfa2b754e09da8677dae68f/config
Defconfig      : http://autobuild.buildroot.net/results/71d1750f19de84f21bfa2b754e09da8677dae68f/defconfig

Build 86534588d192fe1515ce520c109e884864871d94
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 11:38:22
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/86534588d192fe1515ce520c109e884864871d94/build-end.log
Complete log   : http://autobuild.buildroot.net/results/86534588d192fe1515ce520c109e884864871d94/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/86534588d192fe1515ce520c109e884864871d94/config
Defconfig      : http://autobuild.buildroot.net/results/86534588d192fe1515ce520c109e884864871d94/defconfig

Build f77f208d0a0efcc14b35ba3647ef28835153d337
==============================================

Status         : NOK
Failure reason : gdb-7.4.1-target
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 12:00:51
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/f77f208d0a0efcc14b35ba3647ef28835153d337/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f77f208d0a0efcc14b35ba3647ef28835153d337/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f77f208d0a0efcc14b35ba3647ef28835153d337/config
Defconfig      : http://autobuild.buildroot.net/results/f77f208d0a0efcc14b35ba3647ef28835153d337/defconfig

Build 542b1e90e4ba9ed3fda47cbfe3757df9eac2757d
==============================================

Status         : NOK
Failure reason : imagemagick-6.7.8-8
Architecture   : sh4
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 12:31:32
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/542b1e90e4ba9ed3fda47cbfe3757df9eac2757d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/542b1e90e4ba9ed3fda47cbfe3757df9eac2757d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/542b1e90e4ba9ed3fda47cbfe3757df9eac2757d/config
Defconfig      : http://autobuild.buildroot.net/results/542b1e90e4ba9ed3fda47cbfe3757df9eac2757d/defconfig

Build d00adb823ba47a4fc1f6373c2ad27f18c68b6b13
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-26 12:42:18
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/d00adb823ba47a4fc1f6373c2ad27f18c68b6b13/build-end.log
Complete log   : http://autobuild.buildroot.net/results/d00adb823ba47a4fc1f6373c2ad27f18c68b6b13/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/d00adb823ba47a4fc1f6373c2ad27f18c68b6b13/config
Defconfig      : http://autobuild.buildroot.net/results/d00adb823ba47a4fc1f6373c2ad27f18c68b6b13/defconfig

Build e9bdc8cbe5b1c958a5c36354daebf60fd1c1cf89
==============================================

Status         : NOK
Failure reason : libfuse-2.9.2
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 13:16:07
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/e9bdc8cbe5b1c958a5c36354daebf60fd1c1cf89/build-end.log
Complete log   : http://autobuild.buildroot.net/results/e9bdc8cbe5b1c958a5c36354daebf60fd1c1cf89/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/e9bdc8cbe5b1c958a5c36354daebf60fd1c1cf89/config
Defconfig      : http://autobuild.buildroot.net/results/e9bdc8cbe5b1c958a5c36354daebf60fd1c1cf89/defconfig

Build 511c162fa4d90b42f90e6d0a5111a4e42fc8943b
==============================================

Status         : NOK
Failure reason : bluez_utils-4.101
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 13:22:59
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/511c162fa4d90b42f90e6d0a5111a4e42fc8943b/build-end.log
Complete log   : http://autobuild.buildroot.net/results/511c162fa4d90b42f90e6d0a5111a4e42fc8943b/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/511c162fa4d90b42f90e6d0a5111a4e42fc8943b/config
Defconfig      : http://autobuild.buildroot.net/results/511c162fa4d90b42f90e6d0a5111a4e42fc8943b/defconfig

Build 5016ea84deb3313b125a4bd7cf4830d83b2458bb
==============================================

Status         : NOK
Failure reason : libgcrypt-1.5.0
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 13:23:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/5016ea84deb3313b125a4bd7cf4830d83b2458bb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/5016ea84deb3313b125a4bd7cf4830d83b2458bb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/5016ea84deb3313b125a4bd7cf4830d83b2458bb/config
Defconfig      : http://autobuild.buildroot.net/results/5016ea84deb3313b125a4bd7cf4830d83b2458bb/defconfig

Build 49b7074fea13d9bc921afa003e112de7fbfbc7d8
==============================================

Status         : NOK
Failure reason : sdl-1.2.15
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-26 13:53:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/49b7074fea13d9bc921afa003e112de7fbfbc7d8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/49b7074fea13d9bc921afa003e112de7fbfbc7d8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/49b7074fea13d9bc921afa003e112de7fbfbc7d8/config
Defconfig      : http://autobuild.buildroot.net/results/49b7074fea13d9bc921afa003e112de7fbfbc7d8/defconfig

Build 837992bf02c6b933717bb9dcb873c80170751be8
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-26 14:27:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/837992bf02c6b933717bb9dcb873c80170751be8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/837992bf02c6b933717bb9dcb873c80170751be8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/837992bf02c6b933717bb9dcb873c80170751be8/config
Defconfig      : http://autobuild.buildroot.net/results/837992bf02c6b933717bb9dcb873c80170751be8/defconfig

Build bd17a01815470ebf260a2f008b5413effd636e1d
==============================================

Status         : NOK
Failure reason : valgrind-3.7.0
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 15:36:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/bd17a01815470ebf260a2f008b5413effd636e1d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/bd17a01815470ebf260a2f008b5413effd636e1d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/bd17a01815470ebf260a2f008b5413effd636e1d/config
Defconfig      : http://autobuild.buildroot.net/results/bd17a01815470ebf260a2f008b5413effd636e1d/defconfig

Build 769af78ba0afd72832520d72c7ec79ae9cf3d613
==============================================

Status         : NOK
Failure reason : ltrace-0.7.2
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 16:01:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/769af78ba0afd72832520d72c7ec79ae9cf3d613/build-end.log
Complete log   : http://autobuild.buildroot.net/results/769af78ba0afd72832520d72c7ec79ae9cf3d613/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/769af78ba0afd72832520d72c7ec79ae9cf3d613/config
Defconfig      : http://autobuild.buildroot.net/results/769af78ba0afd72832520d72c7ec79ae9cf3d613/defconfig

Build f10d3f645e00c4b380928d3e8d34a15fd2c93936
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 17:06:52
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/f10d3f645e00c4b380928d3e8d34a15fd2c93936/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f10d3f645e00c4b380928d3e8d34a15fd2c93936/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f10d3f645e00c4b380928d3e8d34a15fd2c93936/config
Defconfig      : http://autobuild.buildroot.net/results/f10d3f645e00c4b380928d3e8d34a15fd2c93936/defconfig

Build f238dfab801c61fd8cc6bfd40524c4144784496c
==============================================

Status         : NOK
Failure reason : gdb-7.4.1-target
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 17:08:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/f238dfab801c61fd8cc6bfd40524c4144784496c/build-end.log
Complete log   : http://autobuild.buildroot.net/results/f238dfab801c61fd8cc6bfd40524c4144784496c/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/f238dfab801c61fd8cc6bfd40524c4144784496c/config
Defconfig      : http://autobuild.buildroot.net/results/f238dfab801c61fd8cc6bfd40524c4144784496c/defconfig

Build 9d2bd855d1721249529040e3d6a0e49537ad6617
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 17:47:42
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/9d2bd855d1721249529040e3d6a0e49537ad6617/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9d2bd855d1721249529040e3d6a0e49537ad6617/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9d2bd855d1721249529040e3d6a0e49537ad6617/config
Defconfig      : http://autobuild.buildroot.net/results/9d2bd855d1721249529040e3d6a0e49537ad6617/defconfig

Build 9949dc1c5ade7236454dfd0c95efb7abd20f5fb8
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : arm
Submitted by   : Peter Korsgaard (gcc10)
Submitted at   : 2012-12-26 18:08:26
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/9949dc1c5ade7236454dfd0c95efb7abd20f5fb8/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9949dc1c5ade7236454dfd0c95efb7abd20f5fb8/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9949dc1c5ade7236454dfd0c95efb7abd20f5fb8/config
Defconfig      : http://autobuild.buildroot.net/results/9949dc1c5ade7236454dfd0c95efb7abd20f5fb8/defconfig

Build 244343d4ee21e75bdb103cd739791cca5d20e2e9
==============================================

Status         : NOK
Failure reason : cegui06-0.6.2b
Architecture   : i686
Submitted by   : Peter Korsgaard (gcc110)
Submitted at   : 2012-12-26 18:30:21
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/244343d4ee21e75bdb103cd739791cca5d20e2e9/build-end.log
Complete log   : http://autobuild.buildroot.net/results/244343d4ee21e75bdb103cd739791cca5d20e2e9/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/244343d4ee21e75bdb103cd739791cca5d20e2e9/config
Defconfig      : http://autobuild.buildroot.net/results/244343d4ee21e75bdb103cd739791cca5d20e2e9/defconfig

Build 57e1e49286260a954bb6cc97bba83bdb327c3d22
==============================================

Status         : NOK
Failure reason : gpsd-3.7
Architecture   : avr32
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 19:15:20
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/57e1e49286260a954bb6cc97bba83bdb327c3d22/build-end.log
Complete log   : http://autobuild.buildroot.net/results/57e1e49286260a954bb6cc97bba83bdb327c3d22/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/57e1e49286260a954bb6cc97bba83bdb327c3d22/config
Defconfig      : http://autobuild.buildroot.net/results/57e1e49286260a954bb6cc97bba83bdb327c3d22/defconfig

Build 0d5cc30cf9ac8531a3a540b25550e57eb733242d
==============================================

Status         : NOK
Failure reason : libnl-3.2.16
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 19:39:01
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/0d5cc30cf9ac8531a3a540b25550e57eb733242d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0d5cc30cf9ac8531a3a540b25550e57eb733242d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0d5cc30cf9ac8531a3a540b25550e57eb733242d/config
Defconfig      : http://autobuild.buildroot.net/results/0d5cc30cf9ac8531a3a540b25550e57eb733242d/defconfig

Build b1df709f56e869b7b2526e4ca45da48b9315f189
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : mipsel
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 19:55:38
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/b1df709f56e869b7b2526e4ca45da48b9315f189/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b1df709f56e869b7b2526e4ca45da48b9315f189/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b1df709f56e869b7b2526e4ca45da48b9315f189/config
Defconfig      : http://autobuild.buildroot.net/results/b1df709f56e869b7b2526e4ca45da48b9315f189/defconfig

Build 98bbf75aefa4ee044c895ba26153fbc40d634416
==============================================

Status         : NOK
Failure reason : can-utils-836d3cc0122ce31a1b732d369cbd27b690c3110f
Architecture   : bfin
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 19:57:14
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/98bbf75aefa4ee044c895ba26153fbc40d634416/build-end.log
Complete log   : http://autobuild.buildroot.net/results/98bbf75aefa4ee044c895ba26153fbc40d634416/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/98bbf75aefa4ee044c895ba26153fbc40d634416/config
Defconfig      : http://autobuild.buildroot.net/results/98bbf75aefa4ee044c895ba26153fbc40d634416/defconfig

Build 1df0f18f797dce4952870f4dce568bedfc3c74cc
==============================================

Status         : NOK
Failure reason : libfuse-2.9.2
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 20:06:19
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/1df0f18f797dce4952870f4dce568bedfc3c74cc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1df0f18f797dce4952870f4dce568bedfc3c74cc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1df0f18f797dce4952870f4dce568bedfc3c74cc/config
Defconfig      : http://autobuild.buildroot.net/results/1df0f18f797dce4952870f4dce568bedfc3c74cc/defconfig

Build c33d743cc7b8072af53053be4d0d3f9d8d393243
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : arm
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 20:11:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/c33d743cc7b8072af53053be4d0d3f9d8d393243/build-end.log
Complete log   : http://autobuild.buildroot.net/results/c33d743cc7b8072af53053be4d0d3f9d8d393243/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/c33d743cc7b8072af53053be4d0d3f9d8d393243/config
Defconfig      : http://autobuild.buildroot.net/results/c33d743cc7b8072af53053be4d0d3f9d8d393243/defconfig

Build 1df0c1efad8088f3307735262d4c8177774f7ccb
==============================================

Status         : NOK
Failure reason : pixman-0.25.2
Architecture   : sh2a
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 20:28:13
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/1df0c1efad8088f3307735262d4c8177774f7ccb/build-end.log
Complete log   : http://autobuild.buildroot.net/results/1df0c1efad8088f3307735262d4c8177774f7ccb/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/1df0c1efad8088f3307735262d4c8177774f7ccb/config
Defconfig      : http://autobuild.buildroot.net/results/1df0c1efad8088f3307735262d4c8177774f7ccb/defconfig

Build a68b39605d8a4a63b3bc3e8d32961897bdd1bbd2
==============================================

Status         : NOK
Failure reason : webkit-1.2.7
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 21:37:46
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/a68b39605d8a4a63b3bc3e8d32961897bdd1bbd2/build-end.log
Complete log   : http://autobuild.buildroot.net/results/a68b39605d8a4a63b3bc3e8d32961897bdd1bbd2/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/a68b39605d8a4a63b3bc3e8d32961897bdd1bbd2/config
Defconfig      : http://autobuild.buildroot.net/results/a68b39605d8a4a63b3bc3e8d32961897bdd1bbd2/defconfig

Build 0484b26ea706ee594e2192e6991d202ea05070d3
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 23:11:15
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/0484b26ea706ee594e2192e6991d202ea05070d3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/0484b26ea706ee594e2192e6991d202ea05070d3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/0484b26ea706ee594e2192e6991d202ea05070d3/config
Defconfig      : http://autobuild.buildroot.net/results/0484b26ea706ee594e2192e6991d202ea05070d3/defconfig

Build 84844ce87233610c4513f1df510be3805aaea20d
==============================================

Status         : NOK
Failure reason : boost-1.52.0
Architecture   : powerpc
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 23:25:28
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/84844ce87233610c4513f1df510be3805aaea20d/build-end.log
Complete log   : http://autobuild.buildroot.net/results/84844ce87233610c4513f1df510be3805aaea20d/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/84844ce87233610c4513f1df510be3805aaea20d/config
Defconfig      : http://autobuild.buildroot.net/results/84844ce87233610c4513f1df510be3805aaea20d/defconfig

Build b8a9e5e8aa0569835fa6852f608914416c9b6ba3
==============================================

Status         : NOK
Failure reason : util-linux-2.20.1
Architecture   : microblaze
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 23:35:27
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/b8a9e5e8aa0569835fa6852f608914416c9b6ba3/build-end.log
Complete log   : http://autobuild.buildroot.net/results/b8a9e5e8aa0569835fa6852f608914416c9b6ba3/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/b8a9e5e8aa0569835fa6852f608914416c9b6ba3/config
Defconfig      : http://autobuild.buildroot.net/results/b8a9e5e8aa0569835fa6852f608914416c9b6ba3/defconfig

Build 6f5055286b63a3e861bcfa669117b0e0a4bbd3dc
==============================================

Status         : NOK
Failure reason : libffi-3.0.11
Architecture   : mips
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 23:38:40
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/6f5055286b63a3e861bcfa669117b0e0a4bbd3dc/build-end.log
Complete log   : http://autobuild.buildroot.net/results/6f5055286b63a3e861bcfa669117b0e0a4bbd3dc/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/6f5055286b63a3e861bcfa669117b0e0a4bbd3dc/config
Defconfig      : http://autobuild.buildroot.net/results/6f5055286b63a3e861bcfa669117b0e0a4bbd3dc/defconfig

Build 9135238abcde29918f8cb61002f1fb9279884a47
==============================================

Status         : NOK
Failure reason : xserver_xorg-server-1.9.4
Architecture   : aarch64
Submitted by   : Thomas Petazzoni (Free Electrons build server)
Submitted at   : 2012-12-26 23:42:22
Git commit ID  : http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
End of log     : http://autobuild.buildroot.net/results/9135238abcde29918f8cb61002f1fb9279884a47/build-end.log
Complete log   : http://autobuild.buildroot.net/results/9135238abcde29918f8cb61002f1fb9279884a47/build.log.bz2
Configuration  : http://autobuild.buildroot.net/results/9135238abcde29918f8cb61002f1fb9279884a47/config
Defconfig      : http://autobuild.buildroot.net/results/9135238abcde29918f8cb61002f1fb9279884a47/defconfig



-- 
http://autobuild.buildroot.net

^ permalink raw reply

* [Buildroot] [PATCH 1/1] package/tvheadend: new package
From: Yann E. MORIN @ 2012-12-26 23:00 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <87d2xw78m1.fsf@dell.be.48ers.dk>

Peter, All,

On Wednesday 26 December 2012 Peter Korsgaard wrote:
> >>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
[--SNIP--]
>  Yann> diff --git a/package/tvheadend/Config.in b/package/tvheadend/Config.in
>  Yann> new file mode 100644
>  Yann> index 0000000..679ca13
>  Yann> --- /dev/null
>  Yann> +++ b/package/tvheadend/Config.in
>  Yann> @@ -0,0 +1,20 @@
>  Yann> +comment "tvheadend requires a toolchain with WCHAR"
> 
> We normally add ' support' - E.G. WCHAR support.

OK.

> It also needs largefile support unless you override CFLAGS in the
> Makefile:
> 
> Makefile:CFLAGS  += -D_FILE_OFFSET_BITS=64

LARGE_FILES that will be, then. ;-)

>  Yann> diff --git a/package/tvheadend/tvheadend.init b/package/tvheadend/tvheadend.init
>  Yann> new file mode 100644
>  Yann> index 0000000..b05ec81
>  Yann> --- /dev/null
>  Yann> +++ b/package/tvheadend/tvheadend.init
>  Yann> @@ -0,0 +1,54 @@
>  Yann> +#! /bin/sh
>  Yann> +# Startup script inspired by the one in the package
> 
> It would be good to mention 'tvheadend' here.

OK.

>  Yann> +++ b/package/tvheadend/tvheadend.mk
[--SNIP--]
>  Yann> +#----------------------------------------------------------------------------
>  Yann> +# To run tvheadend, we need:
>  Yann> +#  - a non-root user to be safe, with its owned ${HOME}
>  Yann> +#  - a startup script, and its config file
>  Yann> +#  - a default DB with a tvheadend admin
>  Yann> +TVHEADEND_MKUSER = TARGET_DIR=$(TARGET_DIR) INSTALL=$(INSTALL) package/tvheadend/tvheadend.mkuser
>  Yann> +define TVHEADEND_CREATE_USER
>  Yann> +	$(TVHEADEND_MKUSER) mk_user
>  Yann> +	$(INSTALL) -D package/tvheadend/tvheadend.config  $(TARGET_DIR)/home/tvheadend/.hts/tvheadend/accesscontrol/1
>  Yann> +endef
>  Yann> +TVHEADEND_POST_INSTALL_TARGET_HOOKS  = TVHEADEND_CREATE_USER
>  Yann> +
>  Yann> +define TVHEADEND_PERMISSIONS
>  Yann> +	/home/tvheadend                                d 0700 $$(shell $(TVHEADEND_MKUSER) get_uid) $$(shell $(TVHEADEND_MKUSER) get_gid) - - - - -
>  Yann> +	/home/tvheadend/.hts                           d 0700 $$(shell $(TVHEADEND_MKUSER) get_uid) $$(shell $(TVHEADEND_MKUSER) get_gid) - - - - -
>  Yann> +	/home/tvheadend/.hts/tvheadend                 d 0700 $$(shell $(TVHEADEND_MKUSER) get_uid) $$(shell $(TVHEADEND_MKUSER) get_gid) - - - - -
>  Yann> +	/home/tvheadend/.hts/tvheadend/accesscontrol   d 0700 $$(shell $(TVHEADEND_MKUSER) get_uid) $$(shell $(TVHEADEND_MKUSER) get_gid) - - - - -
>  Yann> +	/home/tvheadend/.hts/tvheadend/accesscontrol/1 f 0600 $$(shell $(TVHEADEND_MKUSER) get_uid) $$(shell $(TVHEADEND_MKUSER) get_gid) - - - - -
>  Yann> +endef
> 
> I'm not really happy about the user handling here. I think we should
> either just add a static tvheadend user to system/skeleton/etc/passwd
> like we've done for ssh/hal/dbus/..

That will make for an ever-increasing list of users, most will probably
never, ever be usefull. I do not like that... :-(

I agree however that the solution above is less than ideal.

> , or come up with some generic
> infrastructure to handle it per package (like _PERMISSIONS) instead of
> something tvheadend specific.

Yes, that's something I'm thinking about...

Basically, I'd expect something like:

TVHEADEND_USER = tvheadend -1 -1 /home/tvheadend /bin/sh
FOO_USER = USERNAME UID GID HOME SHELL

  - if UID (GID) is -1, then a uid (gid) will be choosen arbitrarily.
  - if UID (GID) is >=0 and conflicts with an other entry, the build fails
  - if HOME is 'none', no home is created for that user
  - if SHELL is 'none', then the shell will be set to /bin/false

Then:
  - an entry is created in /etc/passwd, and the home is created before the
    package is configured (except if home=='none')
  - the home is chowned (except if home=='none') using a generated
    _PERMISSIONS variable

> We also normally don't touch /home. Can't tvheadend run as system daemon
> (still as a seperate user) instead?

It still needs a place where to store:
  - its runtime configuration (that is done through the web interface and
    creates new files)
  - the recordings

>  Yann> +
>  Yann> +define TVHEADEND_INSTALL_SYSV_STARTUP_FILES
>  Yann> +	$(INSTALL) -D package/tvheadend/tvheadend.default $(TARGET_DIR)/etc/default/tvheadend
>  Yann> +	$(INSTALL) -D package/tvheadend/tvheadend.init    $(TARGET_DIR)/etc/init.d/S99tvheadend
> 
> I personally prefer to keep the same names both in package/ and
> output/target (so S99tvheadend). Makes it easier to find the
> corresponding source files.

OK.

Regards,
Yann E. MORIN.

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

^ permalink raw reply

* [Buildroot] Packet menu: X.org X Window System
From: Peter Korsgaard @ 2012-12-26 22:59 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <20121226094719.64380938@skate>

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

Hi,

 Thomas> In fact, the X.org server can be compiled in two different flavors:

 Thomas>  * The modular X.org flavor, which is the one used on virtually all
 Thomas>    Linux distributions. In this flavor, the device drivers (video,
 Thomas>    input, etc.) are compiled separately from the X.org server and can
 Thomas>    be dynamically loaded.

 Thomas>  * The TinyX variant, in which drivers are directly bundled into the X
 Thomas>    server. Those drivers are more limited (in number), and are directly
 Thomas>    part of the X.org server code base (as opposed to the modular X.org,
 Thomas>    where each driver is a separate project, separate tarball.

Also notice that Tinyx/kdrive is deprecated, and there's been talks
about completely removing it several times, most recently afaik was:

http://lists.x.org/archives/xorg-devel/2012-March/030059.html

 Thomas> It would probably be more clear to have the Server Type
 Thomas> selection as a sub-option of the X.org server selection.

Agreed.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [PATCH 2/2] package/keyutils: disable on avr32
From: Peter Korsgaard @ 2012-12-26 22:57 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <8d01634829b527333c15467ad91cd0cbeb4c91bb.1356459033.git.yann.morin.1998@free.fr>

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 Yann> keyutils does not build on avr32 (probably
 Yann> because the toolchain is way too old).

 Yann> Fixes:
 Yann>     http://autobuild.buildroot.net/results/aa86f6a68f5d0ea4914ab259ed270615bc9d6a99/

Hmm, that just looks like a warning which the package errors out on as
it uses -Werror and we don't override CFLAGS like we should. How about
moving TARGET_CONFIGURE_OPTS past MAKE instead? ( $(MAKE)
$(TARGET_CONFIGURE_OPTS) -C ..)

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] package/spice: don't enable GUI if dependencies not met
From: Peter Korsgaard @ 2012-12-26 22:52 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=a61d33a3443e535ce2fde53ffe9fa3161fb6afea
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

The spice GUI selects unconditionally selects cegui06, but cegui06 requires
threads and C++, so spice GUI must also depend on threads and C++.

Fixes:
    http://autobuild.buildroot.net/results/37f8ee90bb4348db97daef83493005c42a193b91/

Merry X-Mas! ;-)

[Peter: add SPICE_CLIENT dependency]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/spice/Config.in |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/package/spice/Config.in b/package/spice/Config.in
index 1b264e7..0c2c7a6 100644
--- a/package/spice/Config.in
+++ b/package/spice/Config.in
@@ -35,8 +35,14 @@ config BR2_PACKAGE_SPICE_CLIENT
 	select BR2_PACKAGE_XLIB_LIBXFIXES
 	select BR2_PACKAGE_XLIB_LIBXRANDR
 
+comment "GUI requires a toolchain with threads and C++"
+	depends on BR2_PACKAGE_SPICE_CLIENT
+	depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
+
 config BR2_PACKAGE_SPICE_GUI
 	bool "Enable GUI"
+	depends on BR2_TOOLCHAIN_HAS_THREADS    # cegui06
+	depends on BR2_INSTALL_LIBSTDCPP        # cegui06
 	depends on BR2_PACKAGE_SPICE_CLIENT
 	select BR2_PACKAGE_CEGUI06
 	help

^ permalink raw reply related

* [Buildroot] [PATCH 1/2] package/spice: don't enable GUI if dependencies not met
From: Peter Korsgaard @ 2012-12-26 22:51 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <0edfe5fad92256f3d70bc151650cade9d1f6a7fa.1356459033.git.yann.morin.1998@free.fr>

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 Yann> The spice GUI selects unconditionally selects cegui06, but cegui06 requires
 Yann> threads and C++, so spice GUI must also depend on threads and C++.

 Yann> Fixes:
 Yann>     http://autobuild.buildroot.net/results/37f8ee90bb4348db97daef83493005c42a193b91/

 Yann> +++ b/package/spice/Config.in
 Yann> @@ -35,8 +35,13 @@ config BR2_PACKAGE_SPICE_CLIENT
 Yann>  	select BR2_PACKAGE_XLIB_LIBXFIXES
 Yann>  	select BR2_PACKAGE_XLIB_LIBXRANDR
 
 Yann> +comment "GUI requires a toolchain with threads and C++"
 Yann> +	depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
 Yann> +

This comment should only be shown if SPICE_CLIENT is enabled, so I've
added the dependency and committed, thanks.

 Yann>  config BR2_PACKAGE_SPICE_GUI
 Yann>  	bool "Enable GUI"
 Yann> +	depends on BR2_TOOLCHAIN_HAS_THREADS    # cegui06
 Yann> +	depends on BR2_INSTALL_LIBSTDCPP        # cegui06

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [PATCH 1/3] gettext: bump to version 0.18.2
From: Peter Korsgaard @ 2012-12-26 22:42 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1356543388-23649-1-git-send-email-gustavo@zacarias.com.ar>

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed all 3, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] sed: bump to version 4.2.2
From: Peter Korsgaard @ 2012-12-26 22:41 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=6b449ed5dfb8c8f8c889f242cf3d5b27b18673c7
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/sed/sed.mk |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/sed/sed.mk b/package/sed/sed.mk
index 451ba54..5535754 100644
--- a/package/sed/sed.mk
+++ b/package/sed/sed.mk
@@ -3,9 +3,11 @@
 # sed
 #
 #############################################################
-SED_VERSION = 4.2.1
-SED_SOURCE = sed-$(SED_VERSION).tar.gz
+
+SED_VERSION = 4.2.2
 SED_SITE = $(BR2_GNU_MIRROR)/sed
+SED_LICENSE = GPLv3
+SED_LICENSE_FILES = COPYING
 
 SED_CONF_OPT = --bindir=/usr/bin \
 		--libdir=/lib \

^ permalink raw reply related

* [Buildroot] [git commit] php: bump to version 5.3.20
From: Peter Korsgaard @ 2012-12-26 22:41 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=4c1576042e7171d5229414447d99823630e4e309
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/php/php.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/php/php.mk b/package/php/php.mk
index 4290170..a1badab 100644
--- a/package/php/php.mk
+++ b/package/php/php.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-PHP_VERSION = 5.3.19
+PHP_VERSION = 5.3.20
 PHP_SOURCE = php-$(PHP_VERSION).tar.bz2
 PHP_SITE = http://www.php.net/distributions
 PHP_INSTALL_STAGING = YES

^ permalink raw reply related

* [Buildroot] [git commit] gettext: bump to version 0.18.2
From: Peter Korsgaard @ 2012-12-26 22:41 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=d8ee2f459628901723e08ab01c4595cf6ed5595b
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/gettext/gettext-uclibc-compat.patch        |   27 --------------------
 .../gettext/gettext-uclibc-sched_param-def.patch   |   20 --------------
 package/gettext/gettext.mk                         |    2 +-
 3 files changed, 1 insertions(+), 48 deletions(-)

diff --git a/package/gettext/gettext-uclibc-compat.patch b/package/gettext/gettext-uclibc-compat.patch
deleted file mode 100644
index 5e52665..0000000
--- a/package/gettext/gettext-uclibc-compat.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-The glibc fix/hack isn't valid for uClibc.
-Patch taken from OpenWRT.
-
-Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
-
---- a/gettext-runtime/intl/localename.c
-+++ b/gettext-runtime/intl/localename.c
-@@ -2607,7 +2607,7 @@ gl_locale_name_thread_unsafe (int catego
-     locale_t thread_locale = uselocale (NULL);
-     if (thread_locale != LC_GLOBAL_LOCALE)
-       {
--#  if __GLIBC__ >= 2
-+#  if __GLIBC__ >= 2 && !defined __UCLIBC__
-         /* Work around an incorrect definition of the _NL_LOCALE_NAME macro in
-            glibc < 2.12.
-            See <http://sourceware.org/bugzilla/show_bug.cgi?id=10968>.  */
---- a/gettext-tools/gnulib-lib/localename.c
-+++ b/gettext-tools/gnulib-lib/localename.c
-@@ -2607,7 +2607,7 @@ gl_locale_name_thread_unsafe (int catego
-     locale_t thread_locale = uselocale (NULL);
-     if (thread_locale != LC_GLOBAL_LOCALE)
-       {
--#  if __GLIBC__ >= 2
-+#  if __GLIBC__ >= 2 && !defined __UCLIBC__
-         /* Work around an incorrect definition of the _NL_LOCALE_NAME macro in
-            glibc < 2.12.
-            See <http://sourceware.org/bugzilla/show_bug.cgi?id=10968>.  */
diff --git a/package/gettext/gettext-uclibc-sched_param-def.patch b/package/gettext/gettext-uclibc-sched_param-def.patch
deleted file mode 100644
index 4e39278..0000000
--- a/package/gettext/gettext-uclibc-sched_param-def.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-uclibc defines __GLIBC__ but it does not expose struct shed_param as much as glibc
-and is not needed too per standard. gnulib attempts to use it but we have to account
-for it because in this case uclibc does not behave like glibc.
-
--Khem
-
-http://bugs.gentoo.org/336484
-http://bugs.gentoo.org/323377
-
---- gettext/gettext-tools/gnulib-lib/spawn.in.h
-+++ gettext/gettext-tools/gnulib-lib/spawn.in.h
-@@ -31,7 +31,7 @@
- 
- /* Get definitions of 'struct sched_param' and 'sigset_t'.
-    But avoid namespace pollution on glibc systems.  */
--#ifndef __GLIBC__
-+#if !defined __GLIBC__ || defined __UCLIBC__
- # include <sched.h>
- # include <signal.h>
- #endif
diff --git a/package/gettext/gettext.mk b/package/gettext/gettext.mk
index a91cb7f..953077d 100644
--- a/package/gettext/gettext.mk
+++ b/package/gettext/gettext.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-GETTEXT_VERSION = 0.18.1.1
+GETTEXT_VERSION = 0.18.2
 GETTEXT_SITE = $(BR2_GNU_MIRROR)/gettext
 GETTEXT_INSTALL_STAGING = YES
 GETTEXT_LICENSE = GPLv2+

^ permalink raw reply related

* [Buildroot] [PATCH 1/3] libgcrypt: disable tests
From: Peter Korsgaard @ 2012-12-26 22:41 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1356530149-12305-1-git-send-email-gustavo@zacarias.com.ar>

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> The testsuite uses fork() hence fails on !MMU targets.
 Gustavo> We don't use/install these so just get rid of them.

Committed all 3, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] libmicrohttpd: bump to version 0.9.24
From: Peter Korsgaard @ 2012-12-26 22:40 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=562d1ad82e33cd2234af9abac7847e990af037ce
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/libmicrohttpd/Config.in        |    5 +++++
 package/libmicrohttpd/libmicrohttpd.mk |    8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/package/libmicrohttpd/Config.in b/package/libmicrohttpd/Config.in
index cfedc8f..4e78a99 100644
--- a/package/libmicrohttpd/Config.in
+++ b/package/libmicrohttpd/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_LIBMICROHTTPD
 	bool "libmicrohttpd"
+	depends on BR2_TOOLCHAIN_HAS_THREADS
 	help
 	  GNU libmicrohttpd is a small C library that makes it easy to
 	  run an HTTP server as part of another application.
@@ -9,6 +10,10 @@ config BR2_PACKAGE_LIBMICROHTTPD
 config BR2_PACKAGE_LIBMICROHTTPD_SSL
        bool "https support"
        depends on BR2_PACKAGE_LIBMICROHTTPD
+       select BR2_PACKAGE_GNUTLS
        select BR2_PACKAGE_LIBGCRYPT
        help
          Enable HTTPS (SSL) support.
+
+comment "libmicrohttpd needs a toolchain with thread support"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/libmicrohttpd/libmicrohttpd.mk b/package/libmicrohttpd/libmicrohttpd.mk
index f8690ee..cf84b2d 100644
--- a/package/libmicrohttpd/libmicrohttpd.mk
+++ b/package/libmicrohttpd/libmicrohttpd.mk
@@ -3,14 +3,14 @@
 # libmicrohttpd
 #
 #############################################################
-LIBMICROHTTPD_VERSION = 0.4.6
-LIBMICROHTTPD_SOURCE = libmicrohttpd-$(LIBMICROHTTPD_VERSION).tar.gz
+
+LIBMICROHTTPD_VERSION = 0.9.24
 LIBMICROHTTPD_SITE = $(BR2_GNU_MIRROR)/libmicrohttpd
 LIBMICROHTTPD_INSTALL_STAGING = YES
 
 ifeq ($(BR2_PACKAGE_LIBMICROHTTPD_SSL),y)
-LIBMICROHTTPD_DEPENDENCIES += libgcrypt
-LIBMICROHTTPD_CONF_OPT += --enable-https \
+LIBMICROHTTPD_DEPENDENCIES += gnutls libgcrypt
+LIBMICROHTTPD_CONF_OPT += --enable-https --with-gnutls=$(STAGING_DIR)/usr \
 			  --with-libgcrypt-prefix=$(STAGING_DIR)/usr
 else
 LIBMICROHTTPD_CONF_OPT += --disable-https

^ permalink raw reply related

* [Buildroot] [git commit] gnutls: make it non-wchar friendly
From: Peter Korsgaard @ 2012-12-26 22:39 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=f1b86cef9884894df26ed25efaabe254f8f0754b
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Make gnutls work for non-wchar toolchains.
It's just a matter of throwing a helping hand to configure.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/connman/Config.in         |    2 +-
 package/gnutls/Config.in          |    4 ----
 package/gnutls/gnutls.mk          |    5 ++++-
 package/libsoup/Config.in         |    2 +-
 package/network-manager/Config.in |    2 +-
 5 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/package/connman/Config.in b/package/connman/Config.in
index 93f9ab5..4c9741b 100644
--- a/package/connman/Config.in
+++ b/package/connman/Config.in
@@ -5,7 +5,7 @@ config BR2_PACKAGE_CONNMAN
 	select BR2_PACKAGE_IPTABLES
 	select BR2_PACKAGE_GNUTLS
 	depends on !(BR2_UCLIBC_VERSION_0_9_31 || BR2_UCLIBC_VERSION_0_9_32)
-	depends on BR2_USE_WCHAR # libglib2 and gnutls
+	depends on BR2_USE_WCHAR # libglib2
 	depends on BR2_INET_IPV6
 	depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
 	depends on BR2_USE_MMU # dbus
diff --git a/package/gnutls/Config.in b/package/gnutls/Config.in
index 556caea..cedf120 100644
--- a/package/gnutls/Config.in
+++ b/package/gnutls/Config.in
@@ -1,12 +1,8 @@
 config BR2_PACKAGE_GNUTLS
 	bool "gnutls"
 	select BR2_PACKAGE_LIBGCRYPT
-	depends on BR2_USE_WCHAR
 	help
 	  GnuTLS is a secure communications library implementing the SSL
 	  and TLS protocols and technologies around them.
 
 	  http://www.gnu.org/software/gnutls/gnutls.html
-
-comment "gnutls requires a toolchain with WCHAR support"
-	depends on !BR2_USE_WCHAR
diff --git a/package/gnutls/gnutls.mk b/package/gnutls/gnutls.mk
index 2634642..506d7f5 100644
--- a/package/gnutls/gnutls.mk
+++ b/package/gnutls/gnutls.mk
@@ -10,7 +10,10 @@ GNUTLS_SITE = $(BR2_GNU_MIRROR)/gnutls
 GNUTLS_LICENSE = GPLv3+ LGPLv2.1+
 GNUTLS_LICENSE_FILES = COPYING lib/COPYING
 GNUTLS_DEPENDENCIES = host-pkgconf libgcrypt $(if $(BR2_PACKAGE_ZLIB),zlib)
-GNUTLS_CONF_ENV = acl_cv_rpath=no
+GNUTLS_CONF_ENV = acl_cv_rpath=no \
+	ac_cv_header_wchar_h=$(if $(BR2_USE_WCHAR),yes,no) \
+	gt_cv_c_wchar_t=$(if $(BR2_USE_WCHAR),yes,no) \
+	gt_cv_c_wint_t=$(if $(BR2_USE_WCHAR),yes,no)
 GNUTLS_CONF_OPT = --with-libgcrypt --without-libgcrypt-prefix \
 		--without-p11-kit --disable-rpath
 GNUTLS_INSTALL_STAGING = YES
diff --git a/package/libsoup/Config.in b/package/libsoup/Config.in
index 57b425f..c3b4ceb 100644
--- a/package/libsoup/Config.in
+++ b/package/libsoup/Config.in
@@ -1,6 +1,6 @@
 config BR2_PACKAGE_LIBSOUP
 	bool "libsoup"
-	depends on BR2_USE_WCHAR # glib2 and gnutls
+	depends on BR2_USE_WCHAR # glib2
 	select BR2_PACKAGE_LIBXML2
 	select BR2_PACKAGE_LIBGLIB2
 	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
diff --git a/package/network-manager/Config.in b/package/network-manager/Config.in
index e2324d6..f2544da 100644
--- a/package/network-manager/Config.in
+++ b/package/network-manager/Config.in
@@ -4,7 +4,7 @@ config BR2_PACKAGE_NETWORK_MANAGER
 	select BR2_PACKAGE_DBUS
 	depends on BR2_INET_IPV6
 	depends on BR2_LARGEFILE # acl
-	depends on BR2_USE_WCHAR # libglib2 and gnutls
+	depends on BR2_USE_WCHAR # libglib2
 	depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
 	depends on BR2_USE_MMU # dbus
 	select BR2_PACKAGE_DBUS_GLIB

^ permalink raw reply related

* [Buildroot] [git commit] libgcrypt: disable tests
From: Peter Korsgaard @ 2012-12-26 22:39 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=a12f6402e89d04798cadad8586bd347f62574b7f
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

The testsuite uses fork() hence fails on !MMU targets.
We don't use/install these so just get rid of them.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/libgcrypt/libgcrypt.mk |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/package/libgcrypt/libgcrypt.mk b/package/libgcrypt/libgcrypt.mk
index a320e48..3aa60c6 100644
--- a/package/libgcrypt/libgcrypt.mk
+++ b/package/libgcrypt/libgcrypt.mk
@@ -10,6 +10,7 @@ LIBGCRYPT_LICENSE = LGPLv2.1+
 LIBGCRYPT_LICENSE_FILES = COPYING.LIB
 LIBGCRYPT_SITE = ftp://ftp.gnupg.org/gcrypt/libgcrypt
 LIBGCRYPT_INSTALL_STAGING = YES
+LIBGCRYPT_DEPENDENCIES = libgpg-error
 
 LIBGCRYPT_CONF_ENV = \
 	ac_cv_sys_symbol_underscore=no
@@ -17,6 +18,12 @@ LIBGCRYPT_CONF_OPT = \
 	--disable-optimization \
 	--with-gpg-error-prefix=$(STAGING_DIR)/usr
 
-LIBGCRYPT_DEPENDENCIES = libgpg-error
+# Tests use fork()
+define LIBGCRYPT_DISABLE_TESTS
+	$(SED) 's/ tests//' $(@D)/Makefile.in
+endef
+
+LIBGCRYPT_POST_PATCH_HOOKS += LIBGCRYPT_DISABLE_TESTS
+
 
 $(eval $(autotools-package))

^ permalink raw reply related

* [Buildroot] [PATCH 1/2] cdrkit: needs mmu
From: Peter Korsgaard @ 2012-12-26 22:39 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1356518959-30055-1-git-send-email-gustavo@zacarias.com.ar>

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Fixes
 Gustavo> autobuild.buildroot.net/results/10129d06088149a5ce9bd9762b5a17e5d89eec34

Committed both, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] libfuse: needs mmu
From: Peter Korsgaard @ 2012-12-26 22:38 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=6a219e26b6a15b5a073660c96778024915877663
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Fixes
http://autobuild.buildroot.net/results/5c64ea05e0ffedcc78f5255f6f76afa1f159cda0

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/libfuse/Config.in |    1 +
 package/sshfs/Config.in   |    1 +
 package/unionfs/Config.in |    1 +
 3 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/package/libfuse/Config.in b/package/libfuse/Config.in
index 2e9b7dc..5d30892 100644
--- a/package/libfuse/Config.in
+++ b/package/libfuse/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_LIBFUSE
 	bool "libfuse"
 	depends on BR2_LARGEFILE
 	depends on BR2_TOOLCHAIN_HAS_THREADS
+	depends on BR2_USE_MMU # fork()
 	help
 	  FUSE (Filesystem in UserSpacE)
 
diff --git a/package/sshfs/Config.in b/package/sshfs/Config.in
index d0cf932..11b6bb9 100644
--- a/package/sshfs/Config.in
+++ b/package/sshfs/Config.in
@@ -8,6 +8,7 @@ config BR2_PACKAGE_SSHFS
 	depends on BR2_LARGEFILE
 	depends on BR2_USE_WCHAR # glib2
 	depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse
+	depends on BR2_USE_MMU # libfuse
 	help
 	  FUSE filesystem client based on the SSH File Transfer Protocol.
 
diff --git a/package/unionfs/Config.in b/package/unionfs/Config.in
index 92f1787..2ac7be9 100644
--- a/package/unionfs/Config.in
+++ b/package/unionfs/Config.in
@@ -3,6 +3,7 @@ config BR2_PACKAGE_UNIONFS
 	select BR2_PACKAGE_LIBFUSE
 	depends on BR2_LARGEFILE
 	depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse
+	depends on BR2_USE_MMU # libfuse
 	help
 	  A userspace unionfs implementation.
 

^ permalink raw reply related

* [Buildroot] [git commit] cdrkit: needs mmu
From: Peter Korsgaard @ 2012-12-26 22:38 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=eca5721813e66d034fc9e45a83ca202dbccebd72
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Fixes
autobuild.buildroot.net/results/10129d06088149a5ce9bd9762b5a17e5d89eec34

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/cdrkit/Config.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/package/cdrkit/Config.in b/package/cdrkit/Config.in
index 7ff50f3..dfe3811 100644
--- a/package/cdrkit/Config.in
+++ b/package/cdrkit/Config.in
@@ -3,6 +3,7 @@ config BR2_PACKAGE_CDRKIT
 	select BR2_PACKAGE_BZIP2
 	select BR2_PACKAGE_LIBCAP
 	depends on BR2_LARGEFILE
+	depends on BR2_USE_MMU # fork
 	bool "cdrkit"
 	help
 	  cdrkit is a suite of programs for recording CDs and DVDs,

^ permalink raw reply related

* [Buildroot] [PATCH 1/1] dosfstools: fix download link
From: Peter Korsgaard @ 2012-12-26 22:37 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1356507627-8606-1-git-send-email-mikhailboiko85@gmail.com>

>>>>> "Mikhail" == Mikhail Boiko <mikhailboiko85@gmail.com> writes:

 Mikhail> Signed-off-by: Mikhail Boiko <mikhailboiko85@gmail.com>

Upstream server indeed seems to be down. Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [git commit] dosfstools: fix download link
From: Peter Korsgaard @ 2012-12-26 22:37 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=0810280fec7745b2534c2fa9d0526115e05b26f7
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Signed-off-by: Mikhail Boiko <mikhailboiko85@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/dosfstools/dosfstools.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/dosfstools/dosfstools.mk b/package/dosfstools/dosfstools.mk
index 08201d3..507f485 100644
--- a/package/dosfstools/dosfstools.mk
+++ b/package/dosfstools/dosfstools.mk
@@ -5,7 +5,7 @@
 #############################################################
 
 DOSFSTOOLS_VERSION = 3.0.12
-DOSFSTOOLS_SITE = http://www.daniel-baumann.ch/software/dosfstools
+DOSFSTOOLS_SITE = http://fossies.org/linux/misc/
 MKDOSFS_BINARY = mkdosfs
 DOSFSCK_BINARY = dosfsck
 DOSFSLABEL_BINARY = dosfslabel

^ permalink raw reply related

* [Buildroot] [PATCH 1/1] package/tvheadend: new package
From: Peter Korsgaard @ 2012-12-26 22:26 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <97b2cc572615e7c760fb8f351510b67ccb02a0e4.1356343037.git.yann.morin.1998@free.fr>

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

Hi,

 Yann> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
 Yann> ---
 Yann>  package/Config.in                   |    1 +
 Yann>  package/tvheadend/Config.in         |   20 +++++++++
 Yann>  package/tvheadend/tvheadend.config  |   13 ++++++
 Yann>  package/tvheadend/tvheadend.default |    6 +++
 Yann>  package/tvheadend/tvheadend.init    |   54 +++++++++++++++++++++++++
 Yann>  package/tvheadend/tvheadend.mk      |   76 +++++++++++++++++++++++++++++++++++
 Yann>  package/tvheadend/tvheadend.mkuser  |   52 ++++++++++++++++++++++++
 Yann>  7 files changed, 222 insertions(+), 0 deletions(-)
 Yann>  create mode 100644 package/tvheadend/Config.in
 Yann>  create mode 100644 package/tvheadend/tvheadend.config
 Yann>  create mode 100644 package/tvheadend/tvheadend.default
 Yann>  create mode 100644 package/tvheadend/tvheadend.init
 Yann>  create mode 100644 package/tvheadend/tvheadend.mk
 Yann>  create mode 100755 package/tvheadend/tvheadend.mkuser

 Yann> diff --git a/package/Config.in b/package/Config.in
 Yann> index 3d556b2..bcf0009 100644
 Yann> --- a/package/Config.in
 Yann> +++ b/package/Config.in
 Yann> @@ -682,6 +682,7 @@ source "package/tinyhttpd/Config.in"
 Yann>  source "package/tn5250/Config.in"
 Yann>  source "package/transmission/Config.in"
 Yann>  source "package/ttcp/Config.in"
 Yann> +source "package/tvheadend/Config.in"
 Yann>  source "package/udpcast/Config.in"
 Yann>  source "package/ulogd/Config.in"
 Yann>  source "package/ushare/Config.in"
 Yann> diff --git a/package/tvheadend/Config.in b/package/tvheadend/Config.in
 Yann> new file mode 100644
 Yann> index 0000000..679ca13
 Yann> --- /dev/null
 Yann> +++ b/package/tvheadend/Config.in
 Yann> @@ -0,0 +1,20 @@
 Yann> +comment "tvheadend requires a toolchain with WCHAR"

We normally add ' support' - E.G. WCHAR support.

It also needs largefile support unless you override CFLAGS in the
Makefile:

Makefile:CFLAGS  += -D_FILE_OFFSET_BITS=64


 Yann> +++ b/package/tvheadend/tvheadend.default
 Yann> @@ -0,0 +1,6 @@
 Yann> +TVH_USER=tvheadend
 Yann> +TVH_GROUP=tvheadend
 Yann> +#TVH_ADAPTERS=
 Yann> +#TVH_HTTP_PORT=9981
 Yann> +#TVH_HTSP_PORT=9982
 Yann> +#TVH_DEBUG=1
 Yann> diff --git a/package/tvheadend/tvheadend.init b/package/tvheadend/tvheadend.init
 Yann> new file mode 100644
 Yann> index 0000000..b05ec81
 Yann> --- /dev/null
 Yann> +++ b/package/tvheadend/tvheadend.init
 Yann> @@ -0,0 +1,54 @@
 Yann> +#! /bin/sh
 Yann> +# Startup script inspired by the one in the package

It would be good to mention 'tvheadend' here.


 Yann> +++ b/package/tvheadend/tvheadend.mk
 Yann> @@ -0,0 +1,76 @@
 Yann> +#############################################################
 Yann> +#
 Yann> +# tvheadend
 Yann> +#
 Yann> +##############################################################
 Yann> +
 Yann> +TVHEADEND_VERSION           = v3.3
 Yann> +TVHEADEND_SITE              = http://github.com/tvheadend/tvheadend/tarball/$(TVHEADEND_VERSION)
 Yann> +TVHEADEND_LICENSE           = GPLv3+
 Yann> +TVHEADEND_LICENSE_FILES     = LICENSE
 Yann> +TVHEADEND_DEPENDENCIES      = host-pkgconf openssl python
 Yann> +
 Yann> +ifeq ($(BR2_PACKAGE_AVAHI),y)
 Yann> +TVHEADEND_DEPENDENCIES     += avahi
 Yann> +endif
 Yann> +
 Yann> +#----------------------------------------------------------------------------
 Yann> +# tvheadend is a little smuggler and thief! ;-)
 Yann> +# During the ./configure, it downloads some files from the dvb-apps
 Yann> +# package, so it has a list of pre-scanned tunner configurations.
 Yann> +# For buildroot that has a few-unfortunate consequences:
 Yann> +#  - the network may not be availabe at the time of build, if the
 Yann> +#    user pre-downloaded the sources with 'make source'
 Yann> +# So, here's what we do:
 Yann> +#  - after the main archive download, we do download those files
 Yann> +#  - after extract, we extract the required files
 Yann> +
 Yann> +TVHEADEND_DVBSCANS_VERSION  = 3fc7dfa68484
 Yann> +TVHEADEND_DVBSCANS_SITE     = http://linuxtv.org/hg/dvb-apps/archive/
 Yann> +TVHEADEND_DVBSCANS_DIR      = dvb-apps-$(TVHEADEND_DVBSCANS_VERSION)
 Yann> +TVHEADEND_DVBSCANS_SOURCE   = $(TVHEADEND_DVBSCANS_DIR).tar.bz2
 Yann> +
 Yann> +define TVHEADEND_DOWNLOAD_DVBSCANS
 Yann> +	$(call DOWNLOAD_WGET,$(TVHEADEND_DVBSCANS_SITE)/$(TVHEADEND_DVBSCANS_VERSION).tar.bz2,$(TVHEADEND_DVBSCANS_SOURCE))
 Yann> +endef
 Yann> +TVHEADEND_POST_DOWNLOAD_HOOKS        = TVHEADEND_DOWNLOAD_DVBSCANS
 Yann> +
 Yann> +define TVHEADEND_EXTRACT_DVBSCANS
 Yann> +	mkdir -p $(@D)/data/dvb-scan
 Yann> +	$(INFLATE.bz2) $(DL_DIR)/$(TVHEADEND_DVBSCANS_SOURCE)      |\
 Yann> +	$(TAR) $(TAR_STRIP_COMPONENTS)=3 -C $(@D)/data/dvb-scan     \
 Yann> +	       $(TAR_OPTIONS) -                                     \
 Yann> +	       $(TVHEADEND_DVBSCANS_DIR)/util/scan/{atsc,dvb-{c,s,t}}
 Yann> +endef
 Yann> +TVHEADEND_POST_EXTRACT_HOOKS         = TVHEADEND_EXTRACT_DVBSCANS
 Yann> +
 Yann> +#----------------------------------------------------------------------------
 Yann> +# To run tvheadend, we need:
 Yann> +#  - a non-root user to be safe, with its owned ${HOME}
 Yann> +#  - a startup script, and its config file
 Yann> +#  - a default DB with a tvheadend admin
 Yann> +TVHEADEND_MKUSER = TARGET_DIR=$(TARGET_DIR) INSTALL=$(INSTALL) package/tvheadend/tvheadend.mkuser
 Yann> +define TVHEADEND_CREATE_USER
 Yann> +	$(TVHEADEND_MKUSER) mk_user
 Yann> +	$(INSTALL) -D package/tvheadend/tvheadend.config  $(TARGET_DIR)/home/tvheadend/.hts/tvheadend/accesscontrol/1
 Yann> +endef
 Yann> +TVHEADEND_POST_INSTALL_TARGET_HOOKS  = TVHEADEND_CREATE_USER
 Yann> +
 Yann> +define TVHEADEND_PERMISSIONS
 Yann> +	/home/tvheadend                                d 0700 $$(shell $(TVHEADEND_MKUSER) get_uid) $$(shell $(TVHEADEND_MKUSER) get_gid) - - - - -
 Yann> +	/home/tvheadend/.hts                           d 0700 $$(shell $(TVHEADEND_MKUSER) get_uid) $$(shell $(TVHEADEND_MKUSER) get_gid) - - - - -
 Yann> +	/home/tvheadend/.hts/tvheadend                 d 0700 $$(shell $(TVHEADEND_MKUSER) get_uid) $$(shell $(TVHEADEND_MKUSER) get_gid) - - - - -
 Yann> +	/home/tvheadend/.hts/tvheadend/accesscontrol   d 0700 $$(shell $(TVHEADEND_MKUSER) get_uid) $$(shell $(TVHEADEND_MKUSER) get_gid) - - - - -
 Yann> +	/home/tvheadend/.hts/tvheadend/accesscontrol/1 f 0600 $$(shell $(TVHEADEND_MKUSER) get_uid) $$(shell $(TVHEADEND_MKUSER) get_gid) - - - - -
 Yann> +endef

I'm not really happy about the user handling here. I think we should
either just add a static tvheadend user to system/skeleton/etc/passwd
like we've done for ssh/hal/dbus/.., or come up with some generic
infrastructure to handle it per package (like _PERMISSIONS) instead of
something tvheadend specific.

We also normally don't touch /home. Can't tvheadend run as system daemon
(still as a seperate user) instead?

 Yann> +
 Yann> +define TVHEADEND_INSTALL_SYSV_STARTUP_FILES
 Yann> +	$(INSTALL) -D package/tvheadend/tvheadend.default $(TARGET_DIR)/etc/default/tvheadend
 Yann> +	$(INSTALL) -D package/tvheadend/tvheadend.init    $(TARGET_DIR)/etc/init.d/S99tvheadend

I personally prefer to keep the same names both in package/ and
output/target (so S99tvheadend). Makes it easier to find the
corresponding source files.

-- 
Bye, Peter Korsgaard

^ permalink raw reply

* [Buildroot] [PATCH 3/3] sed: bump to version 4.2.2
From: Gustavo Zacarias @ 2012-12-26 17:36 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1356543388-23649-1-git-send-email-gustavo@zacarias.com.ar>

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/sed/sed.mk |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/sed/sed.mk b/package/sed/sed.mk
index 451ba54..5535754 100644
--- a/package/sed/sed.mk
+++ b/package/sed/sed.mk
@@ -3,9 +3,11 @@
 # sed
 #
 #############################################################
-SED_VERSION = 4.2.1
-SED_SOURCE = sed-$(SED_VERSION).tar.gz
+
+SED_VERSION = 4.2.2
 SED_SITE = $(BR2_GNU_MIRROR)/sed
+SED_LICENSE = GPLv3
+SED_LICENSE_FILES = COPYING
 
 SED_CONF_OPT = --bindir=/usr/bin \
 		--libdir=/lib \
-- 
1.7.8.6

^ permalink raw reply related

* [Buildroot] [PATCH 2/3] php: bump to version 5.3.20
From: Gustavo Zacarias @ 2012-12-26 17:36 UTC (permalink / raw)
  To: buildroot
In-Reply-To: <1356543388-23649-1-git-send-email-gustavo@zacarias.com.ar>

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/php/php.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/php/php.mk b/package/php/php.mk
index 4290170..a1badab 100644
--- a/package/php/php.mk
+++ b/package/php/php.mk
@@ -4,7 +4,7 @@
 #
 #############################################################
 
-PHP_VERSION = 5.3.19
+PHP_VERSION = 5.3.20
 PHP_SOURCE = php-$(PHP_VERSION).tar.bz2
 PHP_SITE = http://www.php.net/distributions
 PHP_INSTALL_STAGING = YES
-- 
1.7.8.6

^ permalink raw reply related


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