* [Buildroot] [git commit] dependencies.sh: only javac and jar are needed by classpath
From: Peter Korsgaard @ 2012-12-04 20:09 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=694050ffa2f3cbbfe7234b434f16f02cb93fa940
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
support/dependencies/dependencies.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh
index 1b79b23..7a02512 100755
--- a/support/dependencies/dependencies.sh
+++ b/support/dependencies/dependencies.sh
@@ -159,7 +159,7 @@ if grep ^BR2_TOOLCHAIN_BUILDROOT=y $CONFIG_FILE > /dev/null && \
fi
fi
if grep -q ^BR2_PACKAGE_CLASSPATH=y $CONFIG_FILE ; then
- for prog in java javac jar; do
+ for prog in javac jar; do
if ! which $prog > /dev/null ; then
/bin/echo -e "\nYou must install '$prog' on your build machine\n" >&2
exit 1
^ permalink raw reply related
* [Buildroot] [PATCH v2] xtensa: add config option to enable longcalls option
From: Peter Korsgaard @ 2012-12-04 20:13 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121204101716.428c2f20@skate>
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Hi,
>> It should actually be fine to always compile with the longcalls option,
>> but I didn't just want to change it without having the option to keep
>> the old behavior, hence the option.
Thomas> I'd prefer to have it always enabled, I'd say. We try to not add
Thomas> gazillions of very detailed architecture-specific options that are
Thomas> hard to understand. Hardcore users will know how/where to remove this
Thomas> option is they need, or they can even override it by passing a
Thomas> -mno-longcalls option in BR2_TARGET_OPTIMIZATION.
Thomas> What do you think?
I agree. Lets use the safe option by default.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] usb_modeswitch: bump to version 1.2.5
From: Peter Korsgaard @ 2012-12-04 20:16 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=a8249fe21efdc487aded37e001f8039d4bf14bef
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/usb_modeswitch/usb_modeswitch.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/usb_modeswitch/usb_modeswitch.mk b/package/usb_modeswitch/usb_modeswitch.mk
index c517991..653109d 100644
--- a/package/usb_modeswitch/usb_modeswitch.mk
+++ b/package/usb_modeswitch/usb_modeswitch.mk
@@ -4,7 +4,7 @@
#
#############################################################
-USB_MODESWITCH_VERSION = 1.2.4
+USB_MODESWITCH_VERSION = 1.2.5
USB_MODESWITCH_SOURCE = usb-modeswitch-$(USB_MODESWITCH_VERSION).tar.bz2
USB_MODESWITCH_SITE = http://www.draisberghof.de/usb_modeswitch
USB_MODESWITCH_DEPENDENCIES = libusb-compat
^ permalink raw reply related
* [Buildroot] [git commit] usb_modeswitch_data: bump to version 20121109
From: Peter Korsgaard @ 2012-12-04 20:16 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=540c24838cc0d9a11f8bf0db31b54cfd8d5ee746
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/usb_modeswitch_data/usb_modeswitch_data.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/package/usb_modeswitch_data/usb_modeswitch_data.mk b/package/usb_modeswitch_data/usb_modeswitch_data.mk
index a7b7072..479137c 100644
--- a/package/usb_modeswitch_data/usb_modeswitch_data.mk
+++ b/package/usb_modeswitch_data/usb_modeswitch_data.mk
@@ -4,7 +4,7 @@
#
#############################################################
-USB_MODESWITCH_DATA_VERSION = 20120815
+USB_MODESWITCH_DATA_VERSION = 20121109
USB_MODESWITCH_DATA_SOURCE = usb-modeswitch-data-$(USB_MODESWITCH_DATA_VERSION).tar.bz2
USB_MODESWITCH_DATA_SITE = http://www.draisberghof.de/usb_modeswitch
USB_MODESWITCH_DATA_DEPENDENCIES = usb_modeswitch
^ permalink raw reply related
* [Buildroot] [PATCH 1/2] usb_modeswitch: bump to version 1.2.5
From: Peter Korsgaard @ 2012-12-04 20:17 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354644802-28286-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 both, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] package: add classpath
From: Peter Korsgaard @ 2012-12-04 20:23 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121204204349.15ee9b81@skate>
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Hi,
>> http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
>>
>> Requires java, javac and jar on the build machine, similar to how we
>> require gcc/g++.
Thomas> So, it needs additional checks in support/dependencies/dependencies.sh
Thomas> I guess.
Which I have added ;)
>> classpath: fixup
Thomas> Doh ? :-)
Argh!
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH v2] xtensa: add config option to enable longcalls option
From: Chris Zankel @ 2012-12-04 20:40 UTC (permalink / raw)
To: buildroot
In-Reply-To: <87wqwxmv7t.fsf@dell.be.48ers.dk>
Hi,
On 12/04/2012 12:13 PM, Peter Korsgaard wrote:
>>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
> Hi,
>
> >> It should actually be fine to always compile with the longcalls option,
> >> but I didn't just want to change it without having the option to keep
> >> the old behavior, hence the option.
>
> Thomas> I'd prefer to have it always enabled, I'd say. We try to not add
> Thomas> gazillions of very detailed architecture-specific options that are
> Thomas> hard to understand. Hardcore users will know how/where to remove this
> Thomas> option is they need, or they can even override it by passing a
> Thomas> -mno-longcalls option in BR2_TARGET_OPTIMIZATION.
>
> Thomas> What do you think?
>
> I agree. Lets use the safe option by default.
>
Not sure what you mean with the 'safe option'? I'm also not sure what
the preference for options is when you pass both, the -mlongcalls and
-mno-longcalls option at the same time?
Anyway, I'm fine with whatever solution you come up with, as long as it
makes it into the tree :-)
Thanks,
-Chris
^ permalink raw reply
* [Buildroot] [git commit] gd: fix build with freetype but without fontconfig
From: Peter Korsgaard @ 2012-12-04 20:47 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=d97187f8c813bf030b76ee9cf6d43d407d8e2966
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Fixes http://autobuild.buildroot.net/results/3309617d2d5e14c0713dbaf9185815d79293e33b
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/gd/gd.mk | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/package/gd/gd.mk b/package/gd/gd.mk
index 4769764..972d8dd 100644
--- a/package/gd/gd.mk
+++ b/package/gd/gd.mk
@@ -18,6 +18,10 @@ GD_CONF_OPT = --without-x --disable-rpath
ifeq ($(BR2_PACKAGE_FONTCONFIG),y)
GD_DEPENDENCIES += fontconfig
GD_CONF_OPT += --with-fontconfig
+endif
+
+ifeq ($(BR2_PACKAGE_FREETYPE),y)
+GD_DEPENDENCIES += freetype
GD_CONF_ENV += ac_cv_path_FREETYPE_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config
endif
^ permalink raw reply related
* [Buildroot] xapp_init: bad substitution of mcookie path in startx
From: Thierry Bultel @ 2012-12-04 21:12 UTC (permalink / raw)
To: buildroot
In-Reply-To: <871uf5obh3.fsf@dell.be.48ers.dk>
Hi Peter,
I can reproduce it with the latest release:
thierry at thierry-desktop:/nous/BASYSTEMES/Buildroot2012.11/buildroot-2012.11$
cat output/target/usr/bin/startx | grep mcook
mcookie=`/nous/BASYSTEMES/Buildroot2012.11/buildroot-2012.11/output
However, an important clue is that is has work once.
My build from scratch was OK. Then I have changed my .config, adding
some packages, and then it was broken.
I am trying to reverse it step by step to understand what has happened.
Regards
Thierry
Le 04/12/2012 20:37, Peter Korsgaard a ?crit :
>>>>>> "Thierry" == Thierry Bultel <thierry.bultel@wanadoo.fr> writes:
>
> Thierry> Hi,
> Thierry> The generated "startx" has the host path for mcookie:
>
>
>
> Thierry> ----------
> Thierry> esac
>
> Thierry> authdisplay=${display:-:0}
>
>
> Thierry> mcookie=`/nous/BASYSTEMES/Buildroot/output.imx6neon/host/usr/bin/mcookie`
>
> What buildroot version are you using? It seems to be correct here with
> current git:
>
> grep bin/mcookie output/target/usr/bin/startx
> mcookie=`/usr/bin/mcookie`
>
^ permalink raw reply
* [Buildroot] [PATCH 03/51] package/dtc: add option to install programs
From: Arnout Vandecappelle @ 2012-12-04 21:28 UTC (permalink / raw)
To: buildroot
In-Reply-To: <201211301738.37463.yann.morin.1998@free.fr>
On 30/11/12 17:38, Yann E. MORIN wrote:
> Arnout, All,
>
> On Thursday 29 November 2012 Arnout Vandecappelle wrote:
>> I (and I think Peter as well) prefer the more verbose
>>
>> ifeq ($(BR2_PACKAGE_DTC_BINARY),y)
>> DTC_INSTALL_RULE = install
>> else
>> DTC_BUILD_RULE = libfdt
>> DTC_INSTALL_RULE = libfdt_install
>> endif
>
> Yes, it's easier to read.
>
>> I would also call it _TARGET instead of _RULE.
>
> Why?
Because it's not a rule. A rule is a line with a colon in the Makefile
that is followed by a command.
But actually target is also not correct - the GNU make manual calls it
a 'goal'. (Never mind that goal and target are synonyms :-) That's why
the variable is called MAKECMDGOALS. So my suggestion to use _TARGET
was in fact wrong as well.
> DTC_INSTALL_TARGET already exists, and is meant to specify if the
> package is to be installed in tharget.
Whaa, overloading! There's actually a DTC_TARGET_INSTALL_TARGET as well,
which contains the name of the make goal to install to the target
directory...
Given that in buildroot the make goals are called targets all the time,
calling it _GOAL here would solve the duplication but reduces consistency.
Unless we change all the current uses of 'target' to 'goal' (which would
resolve some confusion with the target directory, so that would be a good
thing...).
I realize that this is nitpicking, but if we choose a name now we'll
probably be stuck with it for years, so we need to have this discussion
at some point.
>
> OTOH, DTC_INSTALL_RULE (or DTC_INSTALL_MAKERULE, but it's ugly) is more
> explicit: it is the make rule to install the packag
[snip]
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH 2/8] argus: add license information
From: Arnout Vandecappelle @ 2012-12-04 21:30 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354270483-32356-3-git-send-email-spdawson@gmail.com>
On 30/11/12 11:14, spdawson at gmail.com wrote:
> Signed-off-by: Simon Dawson<spdawson@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH 3/8] beecrypt: add license information
From: Arnout Vandecappelle @ 2012-12-04 21:31 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354270483-32356-4-git-send-email-spdawson@gmail.com>
On 30/11/12 11:14, spdawson at gmail.com wrote:
> Signed-off-by: Simon Dawson<simond@trainfx.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH 4/8] gmp: add license information
From: Arnout Vandecappelle @ 2012-12-04 21:37 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354270483-32356-5-git-send-email-spdawson@gmail.com>
On 30/11/12 11:14, spdawson at gmail.com wrote:
> Signed-off-by: Simon Dawson<spdawson@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH 5/8] midori: add license information
From: Arnout Vandecappelle @ 2012-12-04 21:38 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354270483-32356-6-git-send-email-spdawson@gmail.com>
On 30/11/12 11:14, spdawson at gmail.com wrote:
> Signed-off-by: Simon Dawson<simond@trainfx.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH v2] xtensa: add config option to enable longcalls option
From: Thomas Petazzoni @ 2012-12-04 21:39 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50BE5FD3.4000502@zankel.net>
Dear Chris Zankel,
On Tue, 04 Dec 2012 12:40:51 -0800, Chris Zankel wrote:
> > I agree. Lets use the safe option by default.
> >
> Not sure what you mean with the 'safe option'? I'm also not sure what
I guess Peter means enabling "-mlongcalls" all the time. My
understanding (and I think Peter did understand it the same way) is
that if you build with -mlongcalls, then all binaries will work, both
small and large binaries, even though there is a small size
and performance cost.
So, what we propose is to simply make -mlongcalls part of the CFLAGS
unconditionally in the Buildroot Xtensa support.
> the preference for options is when you pass both, the -mlongcalls and
> -mno-longcalls option at the same time?
The last one takes precedence, I think.
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] [git commit] package: add classpath
From: Thomas Petazzoni @ 2012-12-04 21:40 UTC (permalink / raw)
To: buildroot
In-Reply-To: <87obi9muqy.fsf@dell.be.48ers.dk>
Dear Peter Korsgaard,
On Tue, 04 Dec 2012 12:23:49 -0800, Peter Korsgaard wrote:
> >> Requires java, javac and jar on the build machine, similar to how
> >> we require gcc/g++.
>
> Thomas> So, it needs additional checks in
> Thomas> support/dependencies/dependencies.sh I guess.
>
> Which I have added ;)
Yes, sorry. I often reply to e-mails without reading all the other ones
that had been posted in the mean time... so I sometimes miss something
that has already been done/said.
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 6/8] mpfr: add license information
From: Arnout Vandecappelle @ 2012-12-04 21:40 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354270483-32356-7-git-send-email-spdawson@gmail.com>
On 30/11/12 11:14, spdawson at gmail.com wrote:
> Signed-off-by: Simon Dawson<spdawson@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [PATCH v2] xtensa: add config option to enable longcalls option
From: Peter Korsgaard @ 2012-12-04 21:55 UTC (permalink / raw)
To: buildroot
In-Reply-To: <20121204223914.1623e889@skate>
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> Dear Chris Zankel,
Thomas> On Tue, 04 Dec 2012 12:40:51 -0800, Chris Zankel wrote:
>> > I agree. Lets use the safe option by default.
>> >
>> Not sure what you mean with the 'safe option'? I'm also not sure what
Thomas> I guess Peter means enabling "-mlongcalls" all the time. My
Thomas> understanding (and I think Peter did understand it the same way) is
Thomas> that if you build with -mlongcalls, then all binaries will work, both
Thomas> small and large binaries, even though there is a small size
Thomas> and performance cost.
Thomas> So, what we propose is to simply make -mlongcalls part of the CFLAGS
Thomas> unconditionally in the Buildroot Xtensa support.
Indeed.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [PATCH 7/8] oprofile: add license information
From: Arnout Vandecappelle @ 2012-12-04 21:55 UTC (permalink / raw)
To: buildroot
In-Reply-To: <1354270483-32356-8-git-send-email-spdawson@gmail.com>
On 30/11/12 11:14, spdawson at gmail.com wrote:
> From: Simon Dawson<simond@trainfx.com>
>
> Signed-off-by: Simon Dawson<simond@trainfx.com>
> ---
> package/oprofile/oprofile.mk | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/package/oprofile/oprofile.mk b/package/oprofile/oprofile.mk
> index 54c46dd..17d225a 100644
> --- a/package/oprofile/oprofile.mk
> +++ b/package/oprofile/oprofile.mk
> @@ -6,6 +6,8 @@
>
> OPROFILE_VERSION = 0.9.7
> OPROFILE_SITE = http://downloads.sourceforge.net/project/oprofile/oprofile/oprofile-$(OPROFILE_VERSION)
> +OPROFILE_LICENSE = GPLv2
Only a few files specify the license, but the ones that do specify
"or later" - including the man page. So it should be GPLv2+.
(libjvmti, libjvmpi and libopagent libraries are LGPLv2.1+, for which no
license file is included. However, since we don't install to staging, this
is probably not relevant.)
Regards,
Arnout
> +OPROFILE_LICENSE_FILES = COPYING
> OPROFILE_CONF_OPT = --localstatedir=/var --with-kernel-support
> OPROFILE_BINARIES = utils/ophelp pp/opannotate pp/oparchive pp/opgprof
> OPROFILE_BINARIES += pp/opreport opjitconv/opjitconv daemon/oprofiled
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply
* [Buildroot] [git commit] gmp: add license information
From: Peter Korsgaard @ 2012-12-04 21:55 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=bf0ea51fdd963d3b955847ba7c4de6270c078428
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/gmp/gmp.mk | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/package/gmp/gmp.mk b/package/gmp/gmp.mk
index 5bcc6c1..72673c7 100644
--- a/package/gmp/gmp.mk
+++ b/package/gmp/gmp.mk
@@ -8,6 +8,8 @@ GMP_VERSION = 5.0.5
GMP_SITE = $(BR2_GNU_MIRROR)/gmp
GMP_SOURCE = gmp-$(GMP_VERSION).tar.bz2
GMP_INSTALL_STAGING = YES
+GMP_LICENSE = LGPLv3+
+GMP_LICENSE_FILES = COPYING.LIB
# Bad ARM assembly breaks on pure thumb
ifeq ($(ARCH),arm)
^ permalink raw reply related
* [Buildroot] [PATCH 4/8] gmp: add license information
From: Peter Korsgaard @ 2012-12-04 21:55 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50BE6D2B.7090008@mind.be>
>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:
Arnout> On 30/11/12 11:14, spdawson at gmail.com wrote:
>> Signed-off-by: Simon Dawson<spdawson@gmail.com>
Arnout> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] argus: add license information
From: Peter Korsgaard @ 2012-12-04 21:56 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=329ffe5a60d35f45087fe4aacad6e9026740617f
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/argus/argus.mk | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/package/argus/argus.mk b/package/argus/argus.mk
index da7ecac..a4b5330 100644
--- a/package/argus/argus.mk
+++ b/package/argus/argus.mk
@@ -8,6 +8,8 @@ ARGUS_SOURCE:=argus_$(ARGUS_VERSION).orig.tar.gz
ARGUS_PATCH:=argus_$(ARGUS_VERSION)-1.diff.gz
ARGUS_SITE:=$(BR2_DEBIAN_MIRROR)/debian/pool/main/a/argus/
ARGUS_DEPENDENCIES=libpcap
+ARGUS_LICENSE = GPLv2+
+ARGUS_LICENSE_FILES = COPYING
define ARGUS_DEBIAN_PATCH_APPLY
if [ -d $(@D)/debian/patches ]; then \
^ permalink raw reply related
* [Buildroot] [PATCH 2/8] argus: add license information
From: Peter Korsgaard @ 2012-12-04 21:56 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50BE6B7A.6080404@mind.be>
>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:
Arnout> On 30/11/12 11:14, spdawson at gmail.com wrote:
>> Signed-off-by: Simon Dawson<spdawson@gmail.com>
Arnout> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
* [Buildroot] [git commit] beecrypt: add license information
From: Peter Korsgaard @ 2012-12-04 21:56 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=914274b4e446396c90c4ca4143705b12dc15d238
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Signed-off-by: Simon Dawson <simond@trainfx.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
package/beecrypt/beecrypt.mk | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/package/beecrypt/beecrypt.mk b/package/beecrypt/beecrypt.mk
index d165aee..a9cf133 100644
--- a/package/beecrypt/beecrypt.mk
+++ b/package/beecrypt/beecrypt.mk
@@ -7,6 +7,8 @@ BEECRYPT_VERSION = 4.2.1
BEECRYPT_SITE = http://downloads.sourceforge.net/project/beecrypt/beecrypt/$(BEECRYPT_VERSION)
BEECRYPT_AUTORECONF = YES
BEECRYPT_INSTALL_STAGING = YES
+BEECRYPT_LICENSE = LGPLv2.1+
+BEECRYPT_LICENSE_FILES = COPYING.LIB
# beecrypt contains C++ code that g++ 4.7 doesn't really
# like. Upstream does not seem to be really active, so workaround this
^ permalink raw reply related
* [Buildroot] [PATCH 3/8] beecrypt: add license information
From: Peter Korsgaard @ 2012-12-04 21:56 UTC (permalink / raw)
To: buildroot
In-Reply-To: <50BE6BC8.8090808@mind.be>
>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:
Arnout> On 30/11/12 11:14, spdawson at gmail.com wrote:
>> Signed-off-by: Simon Dawson<simond@trainfx.com>
Arnout> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox