* [Buildroot] [PATCH] toolchain-external: re-introduce Sourcery CodeBench ARM 2010.09
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-12-23 21:30 UTC (permalink / raw)
To: buildroot
In-Reply-To: <8738ywtzej.fsf@dell.be.48ers.dk>
On 19:08 Sun 23 Dec , Peter Korsgaard wrote:
> >>>>> "J" == Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> writes:
>
> J> on the lastest release the toolchain can not produce a working rootfs for
> J> at91rm9200
>
> J> Tested on at91rm9200ek
>
> J> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> J> ---
> J> Hi,
>
> J> I try the internal toolchains of buildroot we have the same issue
>
> Interesting. How did you configure it? I've used BR on the mini2440
> (s3c2440), which is also arm920t recently without problems.
I do nohing special just use busybox
and I try generic_arm and arm920t
both can not boot
I get the init that try to kill itself
I check the binary it's a EABIv5 so this should work
but it does not
I tried the 3.7.1, 3.6.6 and mainline (dt) none work
the only toolchain I succed is this one
I did not try to found a valid BR toolchain just use the default one
which boot fine on my other at91 (arm926ejs) with both Sourcery & BR
toolchains.
Best Regards,
J.
^ permalink raw reply
* [Buildroot] [PATCH] new package: proxychains
From: Peter Korsgaard @ 2012-12-23 21:17 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1356222029-6290-1-git-send-email-stefan.froberg@petroprogram.com>
>>>>> "Stefan" == Stefan Fr?berg <stefan.froberg@petroprogram.com> writes:
Stefan> Signed-off-by: Stefan Fr?berg <stefan.froberg@petroprogram.com>
Stefan> ---
Stefan> package/Config.in | 1 +
Stefan> package/proxychains/Config.in | 7 +++++++
Stefan> package/proxychains/proxychains.mk | 10 ++++++++++
Stefan> 3 files changed, 18 insertions(+), 0 deletions(-)
Stefan> create mode 100644 package/proxychains/Config.in
Stefan> create mode 100644 package/proxychains/proxychains.mk
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] new package: proxychains
From: Peter Korsgaard @ 2012-12-23 20:57 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=5f70f5caea8a8e229a5adad948b32fe4e3c88289
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Stefan Fr??berg <stefan.froberg@petroprogram.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/Config.in | 1 +
package/proxychains/Config.in | 7 +++++++
package/proxychains/proxychains.mk | 10 ++++++++++
3 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/package/Config.in b/package/Config.in
index 66445ff..3d556b2 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -654,6 +654,7 @@ source "package/portmap/Config.in"
source "package/pppd/Config.in"
source "package/pptp-linux/Config.in"
source "package/proftpd/Config.in"
+source "package/proxychains/Config.in"
source "package/quagga/Config.in"
source "package/radvd/Config.in"
source "package/rp-pppoe/Config.in"
diff --git a/package/proxychains/Config.in b/package/proxychains/Config.in
new file mode 100644
index 0000000..332aa3b
--- /dev/null
+++ b/package/proxychains/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PROXYCHAINS
+ bool "proxychains"
+ help
+ force any tcp connections to flow through a proxy (or proxy chain)
+
+ http://proxychains.sourceforge.net
+
diff --git a/package/proxychains/proxychains.mk b/package/proxychains/proxychains.mk
new file mode 100644
index 0000000..7c4500d
--- /dev/null
+++ b/package/proxychains/proxychains.mk
@@ -0,0 +1,10 @@
+#############################################################
+#
+# ProxyChains
+#
+#############################################################
+PROXYCHAINS_VERSION = 3.1
+PROXYCHAINS_SOURCE = proxychains-$(PROXYCHAINS_VERSION).tar.gz
+PROXYCHAINS_SITE = http://downloads.sourceforge.net/project/proxychains/proxychains/version%20$(PROXYCHAINS_VERSION)
+
+$(eval $(autotools-package))
^ permalink raw reply related
* [Buildroot] [PATCH] rxvt-unicode: new package
From: Peter Korsgaard @ 2012-12-23 20:54 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1356221169-32572-1-git-send-email-stefan.froberg@petroprogram.com>
>>>>> "Stefan" == Stefan Fr?berg <stefan.froberg@petroprogram.com> writes:
Stefan> Signed-off-by: Stefan Fr?berg <stefan.froberg@petroprogram.com>
Stefan> ---
Stefan> package/Config.in | 1 +
Stefan> package/rxvt-unicode/Config.in | 9 +++++++++
Stefan> .../rxvt-unicode/rxvt-unicode-9.15-terminfo.patch | 12 ++++++++++++
Stefan> package/rxvt-unicode/rxvt-unicode.mk | 12 ++++++++++++
Stefan> 4 files changed, 34 insertions(+), 0 deletions(-)
Stefan> create mode 100644 package/rxvt-unicode/Config.in
Stefan> create mode 100644 package/rxvt-unicode/rxvt-unicode-9.15-terminfo.patch
Stefan> create mode 100644 package/rxvt-unicode/rxvt-unicode.mk
Stefan> diff --git a/package/Config.in b/package/Config.in
Stefan> index d5e94db..562bfda 100644
Stefan> --- a/package/Config.in
Stefan> +++ b/package/Config.in
Stefan> @@ -169,6 +169,7 @@ source "package/leafpad/Config.in"
Stefan> source "package/midori/Config.in"
Stefan> source "package/pcmanfm/Config.in"
Stefan> source "package/rdesktop/Config.in"
Stefan> +source "package/rxvt-unicode/Config.in"
Stefan> source "package/sylpheed/Config.in"
Stefan> source "package/synergy/Config.in"
Stefan> source "package/torsmo/Config.in"
Stefan> diff --git a/package/rxvt-unicode/Config.in b/package/rxvt-unicode/Config.in
Stefan> new file mode 100644
Stefan> index 0000000..3eab31d
Stefan> --- /dev/null
Stefan> +++ b/package/rxvt-unicode/Config.in
Stefan> @@ -0,0 +1,9 @@
Stefan> +config BR2_PACKAGE_RXVT_UNICODE
Stefan> + bool "rxvt-unicode"
We normally use 'depends on BR2_PACKAGE_XORG7' to ensure the package is
only visible if the user wants X11.
Stefan> + select BR2_PACKAGE_FONTCONFIG
Stefan> + select BR2_PACKAGE_XLIB_LIBX11
Stefan> + select BR2_PACKAGE_XLIB_LIBXRENDER
Stefan> + help
Stefan> + rxvt clone with xft and unicode support
Stefan> +
Stefan> + http://software.schmorp.de/pkg/rxvt-unicode
Stefan> diff --git a/package/rxvt-unicode/rxvt-unicode-9.15-terminfo.patch b/package/rxvt-unicode/rxvt-unicode-9.15-terminfo.patch
Stefan> new file mode 100644
Stefan> index 0000000..910ce76
Stefan> --- /dev/null
Stefan> +++ b/package/rxvt-unicode/rxvt-unicode-9.15-terminfo.patch
Stefan> @@ -0,0 +1,12 @@
Please add a git-style patch header describing the (simple) patch, your
signed-off-by and its upstream status.
Stefan> +diff -Naur rxvt-unicode-9.15.org/doc/Makefile.in rxvt-unicode-9.15/doc/Makefile.in
Stefan> +--- rxvt-unicode-9.15.org/doc/Makefile.in 2012-04-11 23:57:47.105465883 +0300
Stefan> ++++ rxvt-unicode-9.15/doc/Makefile.in 2012-04-12 00:02:13.848367530 +0300
Stefan> +@@ -102,7 +102,7 @@
Stefan> + $(INSTALL_DATA) rxvt.7.man $(DESTDIR)$(man7dir)/$(RXVTNAME).$(man7ext)
Stefan> + @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man3dir)
Stefan> + @IF_PERL@ $(INSTALL_DATA) rxvtperl.3.man $(DESTDIR)$(man3dir)/$(RXVTNAME)perl.$(man3ext)
Stefan> +- @TIC@ $(srcdir)/etc/rxvt-unicode.terminfo
Stefan> ++ @TIC@ $(srcdir)/etc/rxvt-unicode.terminfo -o $(DESTDIR)/usr/share/terminfo
Stefan> +
Stefan> + distdepend: alldoc
Stefan> +
Stefan> diff --git a/package/rxvt-unicode/rxvt-unicode.mk b/package/rxvt-unicode/rxvt-unicode.mk
Stefan> new file mode 100644
Stefan> index 0000000..009b40e
Stefan> --- /dev/null
Stefan> +++ b/package/rxvt-unicode/rxvt-unicode.mk
Stefan> @@ -0,0 +1,12 @@
Stefan> +#############################################################
Stefan> +#
Stefan> +# rxvt-unicode
Stefan> +#
Stefan> +#############################################################
Stefan> +RXVT_UNICODE_VERSION = 9.15
Stefan> +RXVT_UNICODE_SOURCE = rxvt-unicode-$(RXVT_UNICODE_VERSION).tar.bz2
Stefan> +RXVT_UNICODE_SITE = http://dist.schmorp.de/rxvt-unicode
Stefan> +RXVT_UNICODE_DEPENDENCIES = fontconfig ncurses xlib_libX11 xlib_libXrender
You forgot to 'select BR2_PACKAGE_NCURSES'.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] toolchain-external: re-introduce Sourcery CodeBench ARM 2010.09
From: Peter Korsgaard @ 2012-12-23 18:08 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1356270120-20416-1-git-send-email-plagnioj@jcrosoft.com>
>>>>> "J" == Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> writes:
J> on the lastest release the toolchain can not produce a working rootfs for
J> at91rm9200
J> Tested on at91rm9200ek
J> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
J> ---
J> Hi,
J> I try the internal toolchains of buildroot we have the same issue
Interesting. How did you configure it? I've used BR on the mini2440
(s3c2440), which is also arm920t recently without problems.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] new package: libpciaccess
From: Thomas Petazzoni @ 2012-12-23 15:20 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50D70F60.50503@petroprogram.com>
Dear Stefan Fr?berg,
On Sun, 23 Dec 2012 16:04:16 +0200, Stefan Fr?berg wrote:
> That mesa3d updating beyond 7.10.3 (that I have here) seems especially
> interesting challenge.
Do you have more details about the issues involved in bumping mesa3d
beyond 7.10.3 ?
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] new package: libpciaccess
From: Stefan Fröberg @ 2012-12-23 14:04 UTC (permalink / raw)
To: buildroot
In-Reply-To: <87txrcuaz8.fsf@dell.be.48ers.dk>
Hi Peter
23.12.2012 15:58, Peter Korsgaard kirjoitti:
>>>>>> "Stefan" == Stefan Fr?berg <stefan.froberg@petroprogram.com> writes:
> Hi,
>
> Stefan> I was doing xserver 1.10 for buildroot 2012.08 and it was
> Stefan> complaining about missing
>
> Getting Xorg bumped to 1.10 (or rather all X packages to x11r7.7) would
> be very good:
>
> http://www.x.org/releases/X11R7.7/changelog.html
>
> Please send (invidual) patches.
>
Ok. I will.
I sended already just few driver updates and libdrm bump and will
continue after holidays.
That mesa3d updating beyond 7.10.3 (that I have here) seems especially
interesting challenge.
Merry Christmas to everyone!
Regards
Stefan
^ permalink raw reply
* [Buildroot] [PATCH] libdrm: bumped to 2.4.33
From: Stefan Fröberg @ 2012-12-23 13:58 UTC (permalink / raw)
To: buildroot
Signed-off-by: Stefan Fr?berg <stefan.froberg@petroprogram.com>
---
package/libdrm/libdrm.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/libdrm/libdrm.mk b/package/libdrm/libdrm.mk
index fbfc95e..103bf08 100644
--- a/package/libdrm/libdrm.mk
+++ b/package/libdrm/libdrm.mk
@@ -3,7 +3,7 @@
# libdrm
#
#############################################################
-LIBDRM_VERSION = 2.4.23
+LIBDRM_VERSION = 2.4.33
LIBDRM_SOURCE = libdrm-$(LIBDRM_VERSION).tar.bz2
LIBDRM_SITE = http://dri.freedesktop.org/libdrm/
LIBDRM_INSTALL_STAGING = YES
--
1.7.7.6
^ permalink raw reply related
* [Buildroot] [PATCH] new package: libpciaccess
From: Peter Korsgaard @ 2012-12-23 13:58 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50D6F90F.7020104@petroprogram.com>
>>>>> "Stefan" == Stefan Fr?berg <stefan.froberg@petroprogram.com> writes:
Hi,
Stefan> I was doing xserver 1.10 for buildroot 2012.08 and it was
Stefan> complaining about missing
Getting Xorg bumped to 1.10 (or rather all X packages to x11r7.7) would
be very good:
http://www.x.org/releases/X11R7.7/changelog.html
Please send (invidual) patches.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] xdriver_xf86-video-mach64: bumped to 6.9.3
From: Stefan Fröberg @ 2012-12-23 13:56 UTC (permalink / raw)
To: buildroot
Signed-off-by: Stefan Fr?berg <stefan.froberg@petroprogram.com>
---
.../xdriver_xf86-video-mach64.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/x11r7/xdriver_xf86-video-mach64/xdriver_xf86-video-mach64.mk b/package/x11r7/xdriver_xf86-video-mach64/xdriver_xf86-video-mach64.mk
index ad83661..659c785 100644
--- a/package/x11r7/xdriver_xf86-video-mach64/xdriver_xf86-video-mach64.mk
+++ b/package/x11r7/xdriver_xf86-video-mach64/xdriver_xf86-video-mach64.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XDRIVER_XF86_VIDEO_MACH64_VERSION = 6.8.2
+XDRIVER_XF86_VIDEO_MACH64_VERSION = 6.9.3
XDRIVER_XF86_VIDEO_MACH64_SOURCE = xf86-video-mach64-$(XDRIVER_XF86_VIDEO_MACH64_VERSION).tar.bz2
XDRIVER_XF86_VIDEO_MACH64_SITE = http://xorg.freedesktop.org/releases/individual/driver
XDRIVER_XF86_VIDEO_MACH64_AUTORECONF = YES
--
1.7.7.6
^ permalink raw reply related
* [Buildroot] [PATCH] xlib_libpciaccess: bumped to 0.13.1
From: Stefan Fröberg @ 2012-12-23 13:48 UTC (permalink / raw)
To: buildroot
Signed-off-by: Stefan Fr?berg <stefan.froberg@petroprogram.com>
---
.../x11r7/xlib_libpciaccess/xlib_libpciaccess.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/x11r7/xlib_libpciaccess/xlib_libpciaccess.mk b/package/x11r7/xlib_libpciaccess/xlib_libpciaccess.mk
index 53e0356..f2a5d24 100644
--- a/package/x11r7/xlib_libpciaccess/xlib_libpciaccess.mk
+++ b/package/x11r7/xlib_libpciaccess/xlib_libpciaccess.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XLIB_LIBPCIACCESS_VERSION = 0.12.1
+XLIB_LIBPCIACCESS_VERSION = 0.13.1
XLIB_LIBPCIACCESS_SOURCE = libpciaccess-$(XLIB_LIBPCIACCESS_VERSION).tar.bz2
XLIB_LIBPCIACCESS_SITE = http://xorg.freedesktop.org/releases/individual/lib
XLIB_LIBPCIACCESS_INSTALL_STAGING = YES
--
1.7.7.6
^ permalink raw reply related
* [Buildroot] [PATCH] xdriver_xf86-input-synaptics: bumped to 1.6.2
From: Stefan Fröberg @ 2012-12-23 13:43 UTC (permalink / raw)
To: buildroot
Signed-off-by: Stefan Fr?berg <stefan.froberg@petroprogram.com>
---
.../xdriver_xf86-input-synaptics.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk b/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk
index e66acb5..c724f7a 100644
--- a/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk
+++ b/package/x11r7/xdriver_xf86-input-synaptics/xdriver_xf86-input-synaptics.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XDRIVER_XF86_INPUT_SYNAPTICS_VERSION = 1.3.0
+XDRIVER_XF86_INPUT_SYNAPTICS_VERSION = 1.6.2
XDRIVER_XF86_INPUT_SYNAPTICS_SOURCE = xf86-input-synaptics-$(XDRIVER_XF86_INPUT_SYNAPTICS_VERSION).tar.bz2
XDRIVER_XF86_INPUT_SYNAPTICS_SITE = http://xorg.freedesktop.org/releases/individual/driver
XDRIVER_XF86_INPUT_SYNAPTICS_DEPENDENCIES = xserver_xorg-server xproto_inputproto xproto_randrproto xproto_xproto
--
1.7.7.6
^ permalink raw reply related
* [Buildroot] [PATCH] toolchain-external: re-introduce Sourcery CodeBench ARM 2010.09
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-12-23 13:42 UTC (permalink / raw)
To: buildroot
on the lastest release the toolchain can not produce a working rootfs for
at91rm9200
Tested on at91rm9200ek
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
Hi,
I try the internal toolchains of buildroot we have the same issue
Best Regards,
J.
toolchain/toolchain-external/Config.in | 24 ++++++++++++++++++++++++
toolchain/toolchain-external/ext-tool.mk | 5 ++++-
2 files changed, 28 insertions(+), 1 deletion(-)
diff --git a/toolchain/toolchain-external/Config.in b/toolchain/toolchain-external/Config.in
index eeb40a3..06e847e 100644
--- a/toolchain/toolchain-external/Config.in
+++ b/toolchain/toolchain-external/Config.in
@@ -102,6 +102,29 @@ config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201109
Select BR2_SOFT_FLOAT
Set BR2_TARGET_OPTIMIZATION to -mthumb
+config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201009
+ bool "Sourcery CodeBench ARM 2010.09"
+ depends on BR2_arm
+ select BR2_TOOLCHAIN_EXTERNAL_GLIBC
+ select BR2_TOOLCHAIN_HAS_NATIVE_RPC
+ select BR2_INSTALL_LIBSTDCPP
+ help
+ Sourcery CodeBench toolchain for the ARM architecture, from
+ Mentor Graphics. It uses gcc 4.5.1, binutils 2.20, glibc
+ 2.11 and gdb 7.2.50, kernel headers 2.6.35.2. It has support
+ for the following variants:
+ - ARMv5TE, little endian, soft-float, glibc
+ Select ARM926T, ARM10T, XScale or another ARMv5 core
+ Select BR2_SOFT_FLOAT
+ - ARMv4T, little endian, soft-float, glibc
+ Select ARM720T, ARM920T, ARM922T or another ARMv4 core
+ Select BR2_SOFT_FLOAT
+ - ARMv7-A, Thumb 2, little endian, soft-float, glibc
+ Select Cortex-A8, Cortex-A9 or another ARMv7-A core
+ Select BR2_SOFT_FLOAT
+ Set BR2_TARGET_OPTIMIZATION to -mthumb
+
+
config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS201209
bool "Sourcery CodeBench MIPS 2012.09"
depends on BR2_mips || BR2_mipsel
@@ -685,6 +708,7 @@ config BR2_TOOLCHAIN_EXTERNAL_PREFIX
default "arm-linux-gnueabihf" if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_10
default "arm-linux-gnueabihf" if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_11
default "arm-linux-gnueabihf" if BR2_TOOLCHAIN_EXTERNAL_LINARO_2012_12
+ default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201009
default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201103
default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201109
default "arm-none-linux-gnueabi" if BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201203
diff --git a/toolchain/toolchain-external/ext-tool.mk b/toolchain/toolchain-external/ext-tool.mk
index 649e3a3..be25956 100644
--- a/toolchain/toolchain-external/ext-tool.mk
+++ b/toolchain/toolchain-external/ext-tool.mk
@@ -175,7 +175,10 @@ ifeq ($(BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD),y)
TOOLCHAIN_EXTERNAL_DEPENDENCIES = $(TOOLCHAIN_EXTERNAL_DIR)/.extracted
endif
-ifeq ($(BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201103),y)
+ifeq ($(BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201009),y)
+TOOLCHAIN_EXTERNAL_SITE=http://sourcery.mentor.com/public/gnu_toolchain/arm-none-linux-gnueabi/
+TOOLCHAIN_EXTERNAL_SOURCE=arm-2010.09-50-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2
+else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201103),y)
TOOLCHAIN_EXTERNAL_SITE=http://sourcery.mentor.com/public/gnu_toolchain/arm-none-linux-gnueabi/
TOOLCHAIN_EXTERNAL_SOURCE=arm-2011.03-41-arm-none-linux-gnueabi-i686-pc-linux-gnu.tar.bz2
else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_ARM201109),y)
--
1.7.10.4
^ permalink raw reply related
* [Buildroot] RFC: x11r7.7 patch series
From: Thomas Petazzoni @ 2012-12-23 13:26 UTC (permalink / raw)
To: buildroot
In-Reply-To: <4FDF2526.70901@carallon.com>
Dear Will Wagner,
On Mon, 18 Jun 2012 13:55:02 +0100, Will Wagner wrote:
> You can find my work on updating to x11r7.7 on gitorious at
> https://gitorious.org/willw-buildroot/willw-buildroot/commits/remotes/gitorious/x11r7.7
>
> There are a few parts to the patch series I am not sure about:
> - I have deleted all packages not in the 7.7 release, this may remove
> things people still use and feel should still be in buildroot
> - I had a problem updating mesa3d. The newer versions rely on host
> libxml2 with python support. There are a couple of patches to do this
> but I don't particularly like these. If someone can come up with
> something better then great.
> - There was one package I couldn't compile
> xdriver_xf86-input-synaptics. Didn't spend any time on trying to fix
> it though (I suspect broken in current buildroot as well).
What is the status of this work? Do you plan to submit it?
Thanks!
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] new package: libpciaccess
From: Stefan Fröberg @ 2012-12-23 12:29 UTC (permalink / raw)
To: buildroot
In-Reply-To: <87y5gpt9h0.fsf@dell.be.48ers.dk>
23.12.2012 11:15, Peter Korsgaard kirjoitti:
>>>>>> "Stefan" == Stefan Fr?berg <stefan.froberg@petroprogram.com> writes:
> Stefan> Signed-off-by: Stefan Fr?berg <stefan.froberg@petroprogram.com>
> Stefan> ---
> Stefan> package/Config.in | 1 +
> Stefan> package/libpciaccess/Config.in | 6 ++++++
> Stefan> package/libpciaccess/libpciaccess.mk | 12 ++++++++++++
> Stefan> 3 files changed, 19 insertions(+), 0 deletions(-)
> Stefan> create mode 100644 package/libpciaccess/Config.in
> Stefan> create mode 100644 package/libpciaccess/libpciaccess.mk
>
> Ehh, we already have package/x11r7/xlib_libpciaccess - Any reason you
> cannot use that?
Oh, sorry.
I was doing xserver 1.10 for buildroot 2012.08 and it was complaining
about missing
libpciaccess at some point (or maybe it was one of it's dependency
package that was complaining, can't remember anymore)
Didn't notice that there was already libpciaccess.
Regards
Stefan
> I don't think there's any issue with bumping the version to 0.13.1
>
^ permalink raw reply
* [Buildroot] XBMC
From: Yann E. MORIN @ 2012-12-23 10:08 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CAGduivzZU=-GOQzAj4keyBVVMZ=9zuXaHX0wD68X7VSpB-c1aQ@mail.gmail.com>
Maxime, All,
On Saturday 22 December 2012 Maxime Hadjinlian wrote:
> I wanted to add XBMC to buildroot, but since it's a pretty big
> application with a lot of dependency, I have created a separated tree
> at github :
> https://github.com/maximeh/buildroot
>
> I would like to know if it would be of any interest to upstream this
> before sending all theses patches for review ?
I'm also interested in this series.
I see you've added tvheadend. I've also added it recently, and was about
to push it later today, see last commit in:
https://gitorious.org/buildroot/buildroot/commits/yem-tvheadend
Besides the comments by Marek and Thomas, here are mine regarding tvheadend:
- not sure it depends on libv4l. It builds just fine here without it;
I'll double-check;
- avahi is not a hard-dependency, tvheadend builds just fine without it,
so I would not do a 'select' either;
- it also does download some things during its ./configure stage,
so we need a few hooks to do it the buildroot-way;
- there's no init script installed by default, so it does not start
at boot, so we need to install one ourselves. It looks like the
bundled ones (for Debian and RedHat) will not be compatible with BR's
init;
- by default, tvheadend will not allow anyone in, so we have to create
a basic DB with an admin account, and install that in the rootfs,
otherwise, tvheadend will be absolutely unusable.
I'm polishing my version today, and will send a pull-request later today.
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] new package: libpciaccess
From: Peter Korsgaard @ 2012-12-23 9:15 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1356220309-22847-1-git-send-email-stefan.froberg@petroprogram.com>
>>>>> "Stefan" == Stefan Fr?berg <stefan.froberg@petroprogram.com> writes:
Stefan> Signed-off-by: Stefan Fr?berg <stefan.froberg@petroprogram.com>
Stefan> ---
Stefan> package/Config.in | 1 +
Stefan> package/libpciaccess/Config.in | 6 ++++++
Stefan> package/libpciaccess/libpciaccess.mk | 12 ++++++++++++
Stefan> 3 files changed, 19 insertions(+), 0 deletions(-)
Stefan> create mode 100644 package/libpciaccess/Config.in
Stefan> create mode 100644 package/libpciaccess/libpciaccess.mk
Ehh, we already have package/x11r7/xlib_libpciaccess - Any reason you
cannot use that?
I don't think there's any issue with bumping the version to 0.13.1
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH] gettext: disable tools tests when no threads
From: Peter Korsgaard @ 2012-12-23 7:37 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1356179462-2125-1-git-send-email-gustavo@zacarias.com.ar>
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Disable the gettext-tools tests build since they break when a full
Gustavo> toolchain without threads is being used.
Gustavo> Fixes:
Gustavo> http://autobuild.buildroot.net/results/a187c76c359787f8e2ec6e12da2d7b1e33ed43c5/
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] gettext: disable tools tests when no threads
From: Peter Korsgaard @ 2012-12-23 7:37 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=0280921a82dcddf827417557d9e17a22e96eeecc
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Disable the gettext-tools tests build since they break when a full
toolchain without threads is being used.
Fixes:
http://autobuild.buildroot.net/results/a187c76c359787f8e2ec6e12da2d7b1e33ed43c5/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/gettext/gettext.mk | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/package/gettext/gettext.mk b/package/gettext/gettext.mk
index 77881d3..a91cb7f 100644
--- a/package/gettext/gettext.mk
+++ b/package/gettext/gettext.mk
@@ -44,6 +44,12 @@ define GETTEXT_DISABLE_TOOLS
endef
endif # GETTEXT_TOOLS = n
+# The tools tests build fails with full toolchain without threads
+define GETTEXT_DISABLE_TESTS
+ $(SED) 's/m4 tests/m4/' $(@D)/gettext-tools/Makefile.in
+endef
+
GETTEXT_POST_PATCH_HOOKS += GETTEXT_DISABLE_TOOLS
+GETTEXT_POST_PATCH_HOOKS += GETTEXT_DISABLE_TESTS
$(eval $(autotools-package))
^ permalink raw reply related
* [Buildroot] XBMC
From: Peter Korsgaard @ 2012-12-23 7:37 UTC (permalink / raw)
To: buildroot
In-Reply-To: <CAGduivzZU=-GOQzAj4keyBVVMZ=9zuXaHX0wD68X7VSpB-c1aQ@mail.gmail.com>
>>>>> "Maxime" == Maxime Hadjinlian <maxime.hadjinlian@gmail.com> writes:
Maxime> Hi everyone,
Maxime> I wanted to add XBMC to buildroot, but since it's a pretty big
Maxime> application with a lot of dependency, I have created a separated tree
Maxime> at github :
Maxime> https://github.com/maximeh/buildroot
Maxime> I would like to know if it would be of any interest to upstream
Maxime> this before sending all theses patches for review ?
I believe there's interest, but we probably need to improve our
OpenGL(ES) support to make it really useful.
Scott Davilla is also working on XBMC packages, but has not posted any
patches yet:
https://github.com/Pivosgroup/buildroot-linux
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [autobuild.buildroot.net] Build results for 2012-12-22
From: Thomas Petazzoni @ 2012-12-23 7:34 UTC (permalink / raw)
To: buildroot
Hello,
On 2012-12-22, 154 random build tests have been done and
submitted on autobuild.buildroot.net.
116 builds have been successful
38 builds have failed
Below the results of the failed builds. Successful builds are omitted.
Build eb0c0c40969fc0233ac39b06cf41dc3f87f4d3a4
==============================================
Status : NOK
Failure reason : valgrind-3.7.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 00:07:24
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/eb0c0c40969fc0233ac39b06cf41dc3f87f4d3a4/build-end.log
Complete log : http://autobuild.buildroot.net/results/eb0c0c40969fc0233ac39b06cf41dc3f87f4d3a4/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/eb0c0c40969fc0233ac39b06cf41dc3f87f4d3a4/config
Defconfig : http://autobuild.buildroot.net/results/eb0c0c40969fc0233ac39b06cf41dc3f87f4d3a4/defconfig
Build ea582605500269157c1cd5cba74a1f7bbe29a495
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.26
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 00:07:58
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/ea582605500269157c1cd5cba74a1f7bbe29a495/build-end.log
Complete log : http://autobuild.buildroot.net/results/ea582605500269157c1cd5cba74a1f7bbe29a495/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/ea582605500269157c1cd5cba74a1f7bbe29a495/config
Defconfig : http://autobuild.buildroot.net/results/ea582605500269157c1cd5cba74a1f7bbe29a495/defconfig
Build 7345f80ea0d878c8b0e13f6f2feab206860af76c
==============================================
Status : NOK
Failure reason : mplayer-1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 00:24:56
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/7345f80ea0d878c8b0e13f6f2feab206860af76c/build-end.log
Complete log : http://autobuild.buildroot.net/results/7345f80ea0d878c8b0e13f6f2feab206860af76c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7345f80ea0d878c8b0e13f6f2feab206860af76c/config
Defconfig : http://autobuild.buildroot.net/results/7345f80ea0d878c8b0e13f6f2feab206860af76c/defconfig
Build 8286f5c1779af4fe63da8970a15781fa7259de27
==============================================
Status : NOK
Failure reason : gdb-7.4.1-target
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 00:39:34
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/8286f5c1779af4fe63da8970a15781fa7259de27/build-end.log
Complete log : http://autobuild.buildroot.net/results/8286f5c1779af4fe63da8970a15781fa7259de27/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8286f5c1779af4fe63da8970a15781fa7259de27/config
Defconfig : http://autobuild.buildroot.net/results/8286f5c1779af4fe63da8970a15781fa7259de27/defconfig
Build b2e7a1e8264f2dedb58099c94ed396260360a6bf
==============================================
Status : NOK
Failure reason : ltp-testsuite-20101031
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 01:08:55
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/b2e7a1e8264f2dedb58099c94ed396260360a6bf/build-end.log
Complete log : http://autobuild.buildroot.net/results/b2e7a1e8264f2dedb58099c94ed396260360a6bf/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b2e7a1e8264f2dedb58099c94ed396260360a6bf/config
Defconfig : http://autobuild.buildroot.net/results/b2e7a1e8264f2dedb58099c94ed396260360a6bf/defconfig
Build 829df42c43e978e72207bf337d5143ac48754139
==============================================
Status : NOK
Failure reason : sdl-1.2.15
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-12-22 01:49:03
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/829df42c43e978e72207bf337d5143ac48754139/build-end.log
Complete log : http://autobuild.buildroot.net/results/829df42c43e978e72207bf337d5143ac48754139/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/829df42c43e978e72207bf337d5143ac48754139/config
Defconfig : http://autobuild.buildroot.net/results/829df42c43e978e72207bf337d5143ac48754139/defconfig
Build d98d9a48970894ff5f8e26dc0ee59f1512721be5
==============================================
Status : NOK
Failure reason : can-utils-836d3cc0122ce31a1b732d369cbd27b690c3110f
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 03:07:42
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/d98d9a48970894ff5f8e26dc0ee59f1512721be5/build-end.log
Complete log : http://autobuild.buildroot.net/results/d98d9a48970894ff5f8e26dc0ee59f1512721be5/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d98d9a48970894ff5f8e26dc0ee59f1512721be5/config
Defconfig : http://autobuild.buildroot.net/results/d98d9a48970894ff5f8e26dc0ee59f1512721be5/defconfig
Build 7127786406274b73b780db711336a955239b50e3
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 03:30:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/7127786406274b73b780db711336a955239b50e3/build-end.log
Complete log : http://autobuild.buildroot.net/results/7127786406274b73b780db711336a955239b50e3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7127786406274b73b780db711336a955239b50e3/config
Defconfig : http://autobuild.buildroot.net/results/7127786406274b73b780db711336a955239b50e3/defconfig
Build 23d4a69a2c00f2ad20f2727c37bf566289d878bd
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-12-22 04:06:57
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/23d4a69a2c00f2ad20f2727c37bf566289d878bd/build-end.log
Complete log : http://autobuild.buildroot.net/results/23d4a69a2c00f2ad20f2727c37bf566289d878bd/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/23d4a69a2c00f2ad20f2727c37bf566289d878bd/config
Defconfig : http://autobuild.buildroot.net/results/23d4a69a2c00f2ad20f2727c37bf566289d878bd/defconfig
Build e343a28a502b2418478c2918a6149377b2356a1a
==============================================
Status : NOK
Failure reason : m4-1.4.16
Architecture : xtensa
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 05:11:19
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/e343a28a502b2418478c2918a6149377b2356a1a/build-end.log
Complete log : http://autobuild.buildroot.net/results/e343a28a502b2418478c2918a6149377b2356a1a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e343a28a502b2418478c2918a6149377b2356a1a/config
Defconfig : http://autobuild.buildroot.net/results/e343a28a502b2418478c2918a6149377b2356a1a/defconfig
Build deb610360fd98c1713326178a288571611e13e61
==============================================
Status : NOK
Failure reason : gdb-7.4.1-target
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 05:32:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/deb610360fd98c1713326178a288571611e13e61/build-end.log
Complete log : http://autobuild.buildroot.net/results/deb610360fd98c1713326178a288571611e13e61/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/deb610360fd98c1713326178a288571611e13e61/config
Defconfig : http://autobuild.buildroot.net/results/deb610360fd98c1713326178a288571611e13e61/defconfig
Build 36594b495fdbcc66a83fc107343a3065ec401197
==============================================
Status : NOK
Failure reason : gdb-7.4.1-target
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 06:48:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/36594b495fdbcc66a83fc107343a3065ec401197/build-end.log
Complete log : http://autobuild.buildroot.net/results/36594b495fdbcc66a83fc107343a3065ec401197/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/36594b495fdbcc66a83fc107343a3065ec401197/config
Defconfig : http://autobuild.buildroot.net/results/36594b495fdbcc66a83fc107343a3065ec401197/defconfig
Build 84065e86ab0a76a309ee20ca8188743198f2af87
==============================================
Status : NOK
Failure reason : host-erlang-R15B01
Architecture : sh4a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 07:00:33
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/84065e86ab0a76a309ee20ca8188743198f2af87/build-end.log
Complete log : http://autobuild.buildroot.net/results/84065e86ab0a76a309ee20ca8188743198f2af87/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/84065e86ab0a76a309ee20ca8188743198f2af87/config
Defconfig : http://autobuild.buildroot.net/results/84065e86ab0a76a309ee20ca8188743198f2af87/defconfig
Build 60ffc5433253b9826a28424c78f82897d25b6c57
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : i686
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 07:51:57
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/60ffc5433253b9826a28424c78f82897d25b6c57/build-end.log
Complete log : http://autobuild.buildroot.net/results/60ffc5433253b9826a28424c78f82897d25b6c57/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/60ffc5433253b9826a28424c78f82897d25b6c57/config
Defconfig : http://autobuild.buildroot.net/results/60ffc5433253b9826a28424c78f82897d25b6c57/defconfig
Build bfc7b1849e8a13b0bd48b5008281d7317ac9345a
==============================================
Status : NOK
Failure reason : directfb-1.4.17
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 08:01:56
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/bfc7b1849e8a13b0bd48b5008281d7317ac9345a/build-end.log
Complete log : http://autobuild.buildroot.net/results/bfc7b1849e8a13b0bd48b5008281d7317ac9345a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/bfc7b1849e8a13b0bd48b5008281d7317ac9345a/config
Defconfig : http://autobuild.buildroot.net/results/bfc7b1849e8a13b0bd48b5008281d7317ac9345a/defconfig
Build 1ed36deb539d7e4bc9b5b1b904fce523de0a6b80
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : mipsel
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 08:07:37
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/1ed36deb539d7e4bc9b5b1b904fce523de0a6b80/build-end.log
Complete log : http://autobuild.buildroot.net/results/1ed36deb539d7e4bc9b5b1b904fce523de0a6b80/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/1ed36deb539d7e4bc9b5b1b904fce523de0a6b80/config
Defconfig : http://autobuild.buildroot.net/results/1ed36deb539d7e4bc9b5b1b904fce523de0a6b80/defconfig
Build 7272e1b60604cf5c427b2ea2a35e12d1cca7161f
==============================================
Status : NOK
Failure reason : libnfc-fda8d60ce062
Architecture : sh2a
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 08:33:23
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/7272e1b60604cf5c427b2ea2a35e12d1cca7161f/build-end.log
Complete log : http://autobuild.buildroot.net/results/7272e1b60604cf5c427b2ea2a35e12d1cca7161f/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/7272e1b60604cf5c427b2ea2a35e12d1cca7161f/config
Defconfig : http://autobuild.buildroot.net/results/7272e1b60604cf5c427b2ea2a35e12d1cca7161f/defconfig
Build 8cb8cceb8b62609b5e88fd437c9e31b8b3b192f7
==============================================
Status : NOK
Failure reason : madplay-0.15.2b
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 09:32:45
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/8cb8cceb8b62609b5e88fd437c9e31b8b3b192f7/build-end.log
Complete log : http://autobuild.buildroot.net/results/8cb8cceb8b62609b5e88fd437c9e31b8b3b192f7/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8cb8cceb8b62609b5e88fd437c9e31b8b3b192f7/config
Defconfig : http://autobuild.buildroot.net/results/8cb8cceb8b62609b5e88fd437c9e31b8b3b192f7/defconfig
Build 00c4d9413743b3b91fb37094ce1e4c51f1215123
==============================================
Status : NOK
Failure reason : pv-1.2.0
Architecture : mips64el
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 09:54:29
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/00c4d9413743b3b91fb37094ce1e4c51f1215123/build-end.log
Complete log : http://autobuild.buildroot.net/results/00c4d9413743b3b91fb37094ce1e4c51f1215123/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/00c4d9413743b3b91fb37094ce1e4c51f1215123/config
Defconfig : http://autobuild.buildroot.net/results/00c4d9413743b3b91fb37094ce1e4c51f1215123/defconfig
Build c2b0b2ee125c3c50beb6f0f3b77a710ba2aa51f2
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 11:08:23
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/c2b0b2ee125c3c50beb6f0f3b77a710ba2aa51f2/build-end.log
Complete log : http://autobuild.buildroot.net/results/c2b0b2ee125c3c50beb6f0f3b77a710ba2aa51f2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c2b0b2ee125c3c50beb6f0f3b77a710ba2aa51f2/config
Defconfig : http://autobuild.buildroot.net/results/c2b0b2ee125c3c50beb6f0f3b77a710ba2aa51f2/defconfig
Build a3e234820e47775ee24faa62f015bab7cadcb2ca
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 11:10:06
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/a3e234820e47775ee24faa62f015bab7cadcb2ca/build-end.log
Complete log : http://autobuild.buildroot.net/results/a3e234820e47775ee24faa62f015bab7cadcb2ca/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a3e234820e47775ee24faa62f015bab7cadcb2ca/config
Defconfig : http://autobuild.buildroot.net/results/a3e234820e47775ee24faa62f015bab7cadcb2ca/defconfig
Build a8d5153a0ae09215e43b9412223f1b9313e92334
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 11:45:47
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/a8d5153a0ae09215e43b9412223f1b9313e92334/build-end.log
Complete log : http://autobuild.buildroot.net/results/a8d5153a0ae09215e43b9412223f1b9313e92334/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a8d5153a0ae09215e43b9412223f1b9313e92334/config
Defconfig : http://autobuild.buildroot.net/results/a8d5153a0ae09215e43b9412223f1b9313e92334/defconfig
Build 0beda79eac70146d302a79908f401ff4c3a0a4f2
==============================================
Status : NOK
Failure reason : strace-4.7
Architecture : xtensa
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 12:12:50
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/0beda79eac70146d302a79908f401ff4c3a0a4f2/build-end.log
Complete log : http://autobuild.buildroot.net/results/0beda79eac70146d302a79908f401ff4c3a0a4f2/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/0beda79eac70146d302a79908f401ff4c3a0a4f2/config
Defconfig : http://autobuild.buildroot.net/results/0beda79eac70146d302a79908f401ff4c3a0a4f2/defconfig
Build 5802e2ff780d42efdbc35984ef7f6342c3aec780
==============================================
Status : NOK
Failure reason : valgrind-3.7.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 12:44:59
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/5802e2ff780d42efdbc35984ef7f6342c3aec780/build-end.log
Complete log : http://autobuild.buildroot.net/results/5802e2ff780d42efdbc35984ef7f6342c3aec780/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5802e2ff780d42efdbc35984ef7f6342c3aec780/config
Defconfig : http://autobuild.buildroot.net/results/5802e2ff780d42efdbc35984ef7f6342c3aec780/defconfig
Build 5e6aa63a9187549a94f1d42a36589753fcbd438a
==============================================
Status : NOK
Failure reason : qt-4.8.3
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 15:10:49
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/5e6aa63a9187549a94f1d42a36589753fcbd438a/build-end.log
Complete log : http://autobuild.buildroot.net/results/5e6aa63a9187549a94f1d42a36589753fcbd438a/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/5e6aa63a9187549a94f1d42a36589753fcbd438a/config
Defconfig : http://autobuild.buildroot.net/results/5e6aa63a9187549a94f1d42a36589753fcbd438a/defconfig
Build c240e1207c6de3eaeb9817f4fe9fb8ed2052726e
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 15:22:52
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/c240e1207c6de3eaeb9817f4fe9fb8ed2052726e/build-end.log
Complete log : http://autobuild.buildroot.net/results/c240e1207c6de3eaeb9817f4fe9fb8ed2052726e/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/c240e1207c6de3eaeb9817f4fe9fb8ed2052726e/config
Defconfig : http://autobuild.buildroot.net/results/c240e1207c6de3eaeb9817f4fe9fb8ed2052726e/defconfig
Build 718f61d3da8b151f0121de3e953c8fe1bf390fed
==============================================
Status : NOK
Failure reason : boost-1.52.0
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 16:17:48
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/718f61d3da8b151f0121de3e953c8fe1bf390fed/build-end.log
Complete log : http://autobuild.buildroot.net/results/718f61d3da8b151f0121de3e953c8fe1bf390fed/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/718f61d3da8b151f0121de3e953c8fe1bf390fed/config
Defconfig : http://autobuild.buildroot.net/results/718f61d3da8b151f0121de3e953c8fe1bf390fed/defconfig
Build d336697108ed04172970e504a38bf505d5d0e0f3
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.26
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 18:09:43
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/d336697108ed04172970e504a38bf505d5d0e0f3/build-end.log
Complete log : http://autobuild.buildroot.net/results/d336697108ed04172970e504a38bf505d5d0e0f3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d336697108ed04172970e504a38bf505d5d0e0f3/config
Defconfig : http://autobuild.buildroot.net/results/d336697108ed04172970e504a38bf505d5d0e0f3/defconfig
Build e445717ade3028567854abbc3d87e43d148fb17c
==============================================
Status : NOK
Failure reason : libv4l-0.8.9
Architecture : aarch64
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 18:30:00
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/e445717ade3028567854abbc3d87e43d148fb17c/build-end.log
Complete log : http://autobuild.buildroot.net/results/e445717ade3028567854abbc3d87e43d148fb17c/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e445717ade3028567854abbc3d87e43d148fb17c/config
Defconfig : http://autobuild.buildroot.net/results/e445717ade3028567854abbc3d87e43d148fb17c/defconfig
Build 8f04e0a50d9b1e10ed1dfc0272b9a6118068c4ab
==============================================
Status : NOK
Failure reason : sdl-1.2.15
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-12-22 19:54:01
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/8f04e0a50d9b1e10ed1dfc0272b9a6118068c4ab/build-end.log
Complete log : http://autobuild.buildroot.net/results/8f04e0a50d9b1e10ed1dfc0272b9a6118068c4ab/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/8f04e0a50d9b1e10ed1dfc0272b9a6118068c4ab/config
Defconfig : http://autobuild.buildroot.net/results/8f04e0a50d9b1e10ed1dfc0272b9a6118068c4ab/defconfig
Build d32c5b93288901b52072bb1c87479a425feb4131
==============================================
Status : NOK
Failure reason : libnspr-4.8.7
Architecture : xtensa
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 19:55:31
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/d32c5b93288901b52072bb1c87479a425feb4131/build-end.log
Complete log : http://autobuild.buildroot.net/results/d32c5b93288901b52072bb1c87479a425feb4131/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/d32c5b93288901b52072bb1c87479a425feb4131/config
Defconfig : http://autobuild.buildroot.net/results/d32c5b93288901b52072bb1c87479a425feb4131/defconfig
Build e3f17fafb6430b2d9a286b72efefd12200e506ad
==============================================
Status : NOK
Failure reason : libffi-3.0.11
Architecture : mips
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 19:58:19
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/e3f17fafb6430b2d9a286b72efefd12200e506ad/build-end.log
Complete log : http://autobuild.buildroot.net/results/e3f17fafb6430b2d9a286b72efefd12200e506ad/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/e3f17fafb6430b2d9a286b72efefd12200e506ad/config
Defconfig : http://autobuild.buildroot.net/results/e3f17fafb6430b2d9a286b72efefd12200e506ad/defconfig
Build 613279102875f09d559cd30847a488cc2747e541
==============================================
Status : NOK
Failure reason : mplayer-1.1
Architecture : arm
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 20:26:09
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/613279102875f09d559cd30847a488cc2747e541/build-end.log
Complete log : http://autobuild.buildroot.net/results/613279102875f09d559cd30847a488cc2747e541/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/613279102875f09d559cd30847a488cc2747e541/config
Defconfig : http://autobuild.buildroot.net/results/613279102875f09d559cd30847a488cc2747e541/defconfig
Build bcfbf54315c542d147c877e307ac0d2fd3334ef3
==============================================
Status : NOK
Failure reason : sdl-1.2.15
Architecture : arm
Submitted by : Peter Korsgaard (gcc10)
Submitted at : 2012-12-22 21:26:59
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/bcfbf54315c542d147c877e307ac0d2fd3334ef3/build-end.log
Complete log : http://autobuild.buildroot.net/results/bcfbf54315c542d147c877e307ac0d2fd3334ef3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/bcfbf54315c542d147c877e307ac0d2fd3334ef3/config
Defconfig : http://autobuild.buildroot.net/results/bcfbf54315c542d147c877e307ac0d2fd3334ef3/defconfig
Build 23eed9c44ebf0a98e3fad61f488a6145cabe855b
==============================================
Status : NOK
Failure reason : madplay-0.15.2b
Architecture : xtensa
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 22:11:29
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/23eed9c44ebf0a98e3fad61f488a6145cabe855b/build-end.log
Complete log : http://autobuild.buildroot.net/results/23eed9c44ebf0a98e3fad61f488a6145cabe855b/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/23eed9c44ebf0a98e3fad61f488a6145cabe855b/config
Defconfig : http://autobuild.buildroot.net/results/23eed9c44ebf0a98e3fad61f488a6145cabe855b/defconfig
Build a2f8dc92b5eb8ffcf9321289a641fd6e790f3dd3
==============================================
Status : NOK
Failure reason : keyutils-1.5.5
Architecture : avr32
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 23:39:37
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/a2f8dc92b5eb8ffcf9321289a641fd6e790f3dd3/build-end.log
Complete log : http://autobuild.buildroot.net/results/a2f8dc92b5eb8ffcf9321289a641fd6e790f3dd3/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/a2f8dc92b5eb8ffcf9321289a641fd6e790f3dd3/config
Defconfig : http://autobuild.buildroot.net/results/a2f8dc92b5eb8ffcf9321289a641fd6e790f3dd3/defconfig
Build 176db6b1bf8dcb0d0e3f5cff23b9578a875d88d0
==============================================
Status : NOK
Failure reason : sane-backends-1.0.22
Architecture : sh4
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 23:51:44
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/176db6b1bf8dcb0d0e3f5cff23b9578a875d88d0/build-end.log
Complete log : http://autobuild.buildroot.net/results/176db6b1bf8dcb0d0e3f5cff23b9578a875d88d0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/176db6b1bf8dcb0d0e3f5cff23b9578a875d88d0/config
Defconfig : http://autobuild.buildroot.net/results/176db6b1bf8dcb0d0e3f5cff23b9578a875d88d0/defconfig
Build b012d94397c38626421761bbc93190af3261d7a0
==============================================
Status : NOK
Failure reason : alsa-lib-1.0.26
Architecture : bfin
Submitted by : Thomas Petazzoni (Free Electrons build server)
Submitted at : 2012-12-22 23:52:26
Git commit ID : http://git.buildroot.net/buildroot/commit/?id=5649176a485e1138ed3e42ebb7700255f6c93153
End of log : http://autobuild.buildroot.net/results/b012d94397c38626421761bbc93190af3261d7a0/build-end.log
Complete log : http://autobuild.buildroot.net/results/b012d94397c38626421761bbc93190af3261d7a0/build.log.bz2
Configuration : http://autobuild.buildroot.net/results/b012d94397c38626421761bbc93190af3261d7a0/config
Defconfig : http://autobuild.buildroot.net/results/b012d94397c38626421761bbc93190af3261d7a0/defconfig
--
http://autobuild.buildroot.net
^ permalink raw reply
* [Buildroot] [PATCH] pulseaudio: needs threads
From: Peter Korsgaard @ 2012-12-23 7:30 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1356177979-8784-1-git-send-email-gustavo@zacarias.com.ar>
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Fixes:
Gustavo> http://autobuild.buildroot.net/results/4d6a5793e475683fbc58ccaf03cf7816233a5052/
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] pulseaudio: needs threads
From: Peter Korsgaard @ 2012-12-23 7:27 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=1b603449fd0dcbaf22188e1f2e149da115ff2ea1
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Fixes:
http://autobuild.buildroot.net/results/4d6a5793e475683fbc58ccaf03cf7816233a5052/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/multimedia/gst-plugins-good/Config.in | 1 +
package/multimedia/mpd/Config.in | 1 +
package/multimedia/pulseaudio/Config.in | 5 +++--
3 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/package/multimedia/gst-plugins-good/Config.in b/package/multimedia/gst-plugins-good/Config.in
index 33ecb5c..b5006e6 100644
--- a/package/multimedia/gst-plugins-good/Config.in
+++ b/package/multimedia/gst-plugins-good/Config.in
@@ -193,6 +193,7 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS4
bool "oss4 (Open Sound System 4)"
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_PULSE
+ depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio
select BR2_PACKAGE_PULSEAUDIO
bool "pulseaudio"
diff --git a/package/multimedia/mpd/Config.in b/package/multimedia/mpd/Config.in
index 5d08182..2e44741 100644
--- a/package/multimedia/mpd/Config.in
+++ b/package/multimedia/mpd/Config.in
@@ -40,6 +40,7 @@ config BR2_PACKAGE_MPD_AUDIOFILE
config BR2_PACKAGE_MPD_PULSEAUDIO
bool "pulseaudio"
+ depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio
select BR2_PACKAGE_PULSEAUDIO
help
Enable pulseaudio output support.
diff --git a/package/multimedia/pulseaudio/Config.in b/package/multimedia/pulseaudio/Config.in
index 6c767bb..eeb8b5a 100644
--- a/package/multimedia/pulseaudio/Config.in
+++ b/package/multimedia/pulseaudio/Config.in
@@ -1,6 +1,7 @@
config BR2_PACKAGE_PULSEAUDIO
bool "pulseaudio"
depends on BR2_USE_WCHAR
+ depends on BR2_TOOLCHAIN_HAS_THREADS
select BR2_PACKAGE_LIBTOOL
select BR2_PACKAGE_JSON_C
select BR2_PACKAGE_LIBSNDFILE
@@ -17,5 +18,5 @@ config BR2_PACKAGE_PULSEAUDIO
http://pulseaudio.org
-comment "pulseaudio requires a toolchain with WCHAR support"
- depends on !BR2_USE_WCHAR
+comment "pulseaudio requires a toolchain with WCHAR and threads support"
+ depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
^ permalink raw reply related
* [Buildroot] [PATCH] new package: p7zip
From: Stefan Fröberg @ 2012-12-23 1:05 UTC (permalink / raw)
To: buildroot
Signed-off-by: Stefan Fr?berg <stefan.froberg@petroprogram.com>
---
package/Config.in | 1 +
package/p7zip/7z | 3 +
package/p7zip/7za | 3 +
package/p7zip/Config.in | 9 +++
package/p7zip/p7zip-9.20.1-QA.patch | 12 ++++
package/p7zip/p7zip-9.20.1-execstack.patch | 24 ++++++++
package/p7zip/p7zip.mk | 81 ++++++++++++++++++++++++++++
7 files changed, 133 insertions(+), 0 deletions(-)
create mode 100755 package/p7zip/7z
create mode 100755 package/p7zip/7za
create mode 100644 package/p7zip/Config.in
create mode 100644 package/p7zip/p7zip-9.20.1-QA.patch
create mode 100644 package/p7zip/p7zip-9.20.1-execstack.patch
create mode 100644 package/p7zip/p7zip.mk
diff --git a/package/Config.in b/package/Config.in
index 47a281e..e6487d4 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -13,6 +13,7 @@ source "package/gzip/Config.in"
endif
source "package/lzop/Config.in"
source "package/lzma/Config.in"
+source "package/p7zip/Config.in"
source "package/xz/Config.in"
endmenu
diff --git a/package/p7zip/7z b/package/p7zip/7z
new file mode 100755
index 0000000..c04e07f
--- /dev/null
+++ b/package/p7zip/7z
@@ -0,0 +1,3 @@
+#!/bin/sh
+"/usr/lib/p7zip/7z" "$@"
+
diff --git a/package/p7zip/7za b/package/p7zip/7za
new file mode 100755
index 0000000..1d7374e
--- /dev/null
+++ b/package/p7zip/7za
@@ -0,0 +1,3 @@
+#!/bin/sh
+"/usr/lib/p7zip/7za" "$@"
+
diff --git a/package/p7zip/Config.in b/package/p7zip/Config.in
new file mode 100644
index 0000000..689feb4
--- /dev/null
+++ b/package/p7zip/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_P7ZIP
+ bool "p7zip"
+ help
+ p7zip is a quick port of 7.exe and 7za.exe
+ (command line version of 7-zip, see http://www.7-zip.org) for Unix.
+
+ 7-Zip is a file archiver with highest compression ratio.
+
+ http://sourceforge.net/projects/p7zip
diff --git a/package/p7zip/p7zip-9.20.1-QA.patch b/package/p7zip/p7zip-9.20.1-QA.patch
new file mode 100644
index 0000000..b7c121b
--- /dev/null
+++ b/package/p7zip/p7zip-9.20.1-QA.patch
@@ -0,0 +1,12 @@
+diff -Naur p7zip_9.20.1.org/CPP/7zip/Archive/NtfsHandler.cpp p7zip_9.20.1/CPP/7zip/Archive/NtfsHandler.cpp
+--- p7zip_9.20.1.org/CPP/7zip/Archive/NtfsHandler.cpp 2012-09-06 01:20:35.220955438 +0300
++++ p7zip_9.20.1/CPP/7zip/Archive/NtfsHandler.cpp 2012-09-06 01:21:35.361955043 +0300
+@@ -1280,7 +1280,7 @@
+ if (recSizeLog < Header.SectorSizeLog)
+ return false;
+ numSectorsInRec = 1 << (recSizeLog - Header.SectorSizeLog);
+- if (!mftRec.Parse(ByteBuf, Header.SectorSizeLog, numSectorsInRec, NULL, 0))
++ if (!mftRec.Parse(ByteBuf, Header.SectorSizeLog, numSectorsInRec, 0, NULL))
+ return S_FALSE;
+ if (!mftRec.IsFILE())
+ return S_FALSE;
diff --git a/package/p7zip/p7zip-9.20.1-execstack.patch b/package/p7zip/p7zip-9.20.1-execstack.patch
new file mode 100644
index 0000000..1fdff48
--- /dev/null
+++ b/package/p7zip/p7zip-9.20.1-execstack.patch
@@ -0,0 +1,24 @@
+diff -Naupr p7zip_9.20.1.orig/Asm/x64/7zCrcT8U.asm p7zip_9.20.1/Asm/x64/7zCrcT8U.asm
+--- p7zip_9.20.1.orig/Asm/x64/7zCrcT8U.asm 2008-08-14 11:18:07.000000000 +0200
++++ p7zip_9.20.1/Asm/x64/7zCrcT8U.asm 2011-07-26 17:43:57.727910278 +0200
+@@ -101,3 +101,8 @@ _CrcUpdateT8:
+ ret
+
+ end
++
++%ifidn __OUTPUT_FORMAT__,elf
++section .note.GNU-stack noalloc noexec nowrite progbits
++%endif
++
+diff -Naupr p7zip_9.20.1.orig/Asm/x86/7zCrcT8U.asm p7zip_9.20.1/Asm/x86/7zCrcT8U.asm
+--- p7zip_9.20.1.orig/Asm/x86/7zCrcT8U.asm 2009-07-14 12:44:15.000000000 +0200
++++ p7zip_9.20.1/Asm/x86/7zCrcT8U.asm 2011-07-26 17:44:23.938864508 +0200
+@@ -99,3 +99,8 @@ _CrcUpdateT8:
+
+
+ ; end
++
++%ifidn __OUTPUT_FORMAT__,elf
++section .note.GNU-stack noalloc noexec nowrite progbits
++%endif
++
diff --git a/package/p7zip/p7zip.mk b/package/p7zip/p7zip.mk
new file mode 100644
index 0000000..efc0adc
--- /dev/null
+++ b/package/p7zip/p7zip.mk
@@ -0,0 +1,81 @@
+############################################
+#
+# p7zip
+#
+# Note: I just constructed this (mostly) from
+# Gentoo ebuild file of p7zip.
+#
+# Original can be found from here:
+# http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-arch/p7zip/p7zip-9.20.1-r2.ebuild
+#
+############################################
+P7ZIP_VERSION = 9.20.1
+P7ZIP_SOURCE = p7zip_$(P7ZIP_VERSION)_src_all.tar.bz2
+P7ZIP_SITE = http://downloads.sourceforge.net/project/p7zip/p7zip/$(P7ZIP_VERSION)
+P7ZIP_DEPENDENCIES = host-yasm
+# What UnRAR license basically means here is that as long
+# as you are not using UnRAR source code to reverse engineer
+# the RAR *compression* algorithm, which is proprietary and owned by Alexander L. Roshal,
+# then everything should be fine, in this case (LGPLv2.1+).
+P7ZIP_LICENSE = LGPLv2.1+ UnRAR
+
+# Is this the right way to do ?
+# Basically this should mean:
+# "If we have 32-bit Intel/AMD machine, then use 32-bit asm optimized makefile for building"
+# "If we have 64-bit Intel/AMD machine, then use 64-bit asm optimized makefile for building"
+# "If we have anything else than Intel or AMD CPU, then use the generic makefile for building"
+# (those sed lines will just ensure that we are using host-yasm assembler for 32-bit and 64-bit building)
+ifeq ($(BR2_i386),y)
+define P7ZIP_POST_CONFIGURE_FIXUP
+ (cd $(@D); \
+ sed -i -e "/^ASM=/s:nasm:$(HOST_DIR)/usr/bin/yasm:" makefile.linux_x86_asm_gcc_4.X ;\
+ cp makefile.linux_x86_asm_gcc_4.X makefile.machine)
+endef
+else if ($(BR2_x86_64),y)
+define P7ZIP_POST_CONFIGURE_FIXUP
+ (cd $(@D); \
+ sed -i -e "/^ASM=/s:yasm:$(HOST_DIR)/usr/bin/yasm:" makefile.linux_amd64_asm ;\
+ cp makefile.linux_amd64_asm makefile.machine)
+endef
+else
+define P7ZIP_POST_CONFIGURE_FIXUP
+ (cd $(@D); \
+ cp makefile.linux_any_cpu_gcc_4.X makefile.machine)
+endef
+endif
+
+P7ZIP_POST_CONFIGURE_HOOKS += P7ZIP_POST_CONFIGURE_FIXUP
+
+define P7ZIP_CONFIGURE_CMDS
+ # Do some PCH disabling and makefile fixup
+ (cd $(@D); \
+ sed "s:PRE_COMPILED_HEADER=StdAfx.h.gch:PRE_COMPILED_HEADER=:g" -i makefile.* ;\
+ sed -e 's:-m32 ::g' -e 's:-m64 ::g' -e 's:-O::g' -e 's:-pipe::g' \
+ -e "/^CC/s:\$$(ALLFLAGS):$${CFLAGS} \$$(ALLFLAGS):g" \
+ -e "/^CXX/s:\$$(ALLFLAGS):$${CXXFLAGS} \$$(ALLFLAGS):g" -i makefile* ;\
+ sed -i -e "/^CXX=/s:g++:$(TARGET_CXX):" \
+ -e "/^CC=/s:gcc:$(TARGET_CC):" \
+ -e '/ALLFLAGS/s:-s ::' makefile* )
+endef
+
+define P7ZIP_BUILD_CMDS
+ $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) all2
+endef
+
+define P7ZIP_INSTALL_TARGET_CMDS
+ mkdir -p $(TARGET_DIR)/usr/lib/p7zip
+ cp -r $(@D)/bin/* $(TARGET_DIR)/usr/lib/p7zip/
+
+ # According to Gentoo folks, we can't just use symlinks
+ # but have to invoke p7zip programs (7z & 7za) with full path (/usr/lib/p7zip)
+ # when using them (which is really annoying)
+
+ # That's why we use more helpful wrapper scripts instead.
+ cp package/p7zip/7z $(TARGET_DIR)/usr/bin/
+ cp package/p7zip/7za $(TARGET_DIR)/usr/bin/
+endef
+
+$(eval $(generic-package))
+$(eval $(host-generic-package))
+
+
--
1.7.7.6
^ permalink raw reply related
* [Buildroot] [PATCH] new package: proxychains
From: Stefan Fröberg @ 2012-12-23 0:20 UTC (permalink / raw)
To: buildroot
Signed-off-by: Stefan Fr?berg <stefan.froberg@petroprogram.com>
---
package/Config.in | 1 +
package/proxychains/Config.in | 7 +++++++
package/proxychains/proxychains.mk | 10 ++++++++++
3 files changed, 18 insertions(+), 0 deletions(-)
create mode 100644 package/proxychains/Config.in
create mode 100644 package/proxychains/proxychains.mk
diff --git a/package/Config.in b/package/Config.in
index 562bfda..47a281e 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -656,6 +656,7 @@ source "package/portmap/Config.in"
source "package/pppd/Config.in"
source "package/pptp-linux/Config.in"
source "package/proftpd/Config.in"
+source "package/proxychains/Config.in"
source "package/quagga/Config.in"
source "package/radvd/Config.in"
source "package/rp-pppoe/Config.in"
diff --git a/package/proxychains/Config.in b/package/proxychains/Config.in
new file mode 100644
index 0000000..332aa3b
--- /dev/null
+++ b/package/proxychains/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PROXYCHAINS
+ bool "proxychains"
+ help
+ force any tcp connections to flow through a proxy (or proxy chain)
+
+ http://proxychains.sourceforge.net
+
diff --git a/package/proxychains/proxychains.mk b/package/proxychains/proxychains.mk
new file mode 100644
index 0000000..7c4500d
--- /dev/null
+++ b/package/proxychains/proxychains.mk
@@ -0,0 +1,10 @@
+#############################################################
+#
+# ProxyChains
+#
+#############################################################
+PROXYCHAINS_VERSION = 3.1
+PROXYCHAINS_SOURCE = proxychains-$(PROXYCHAINS_VERSION).tar.gz
+PROXYCHAINS_SITE = http://downloads.sourceforge.net/project/proxychains/proxychains/version%20$(PROXYCHAINS_VERSION)
+
+$(eval $(autotools-package))
--
1.7.7.6
^ permalink raw reply related
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox