* [Buildroot] [PATCH] legacy: marked BR2_PACKAGE_GCC_TARGET and BR2_HAVE_DEVFILES as removed
@ 2013-08-30 4:08 Samuel Martin
2013-08-30 7:33 ` Thomas Petazzoni
2013-09-02 20:38 ` Peter Korsgaard
0 siblings, 2 replies; 5+ messages in thread
From: Samuel Martin @ 2013-08-30 4:08 UTC (permalink / raw)
To: buildroot
These 2 symbols were removed when the gcc has been converted to the
Buildroot package infrastructures.
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
Config.in.legacy | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/Config.in.legacy b/Config.in.legacy
index 763f16c..30a44c6 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -96,6 +96,23 @@ config BR2_VFP_FLOAT
been replaced with a choice of options that allows to select
between various VFP versions/capabilities.
+config BR2_PACKAGE_GCC_TARGET
+ bool "gcc on the target filesystem has been removed"
+ select BR2_LEGACY
+ help
+ The support for gcc in the target filesystem was deprecated
+ since a while, and has been removed completely from Buildroot.
+ See Buildroot's documentation for more explanations.
+
+config BR2_HAVE_DEVFILES
+ bool "development files in target filesystem has been removed"
+ select BR2_LEGACY
+ help
+ The installation of the development files in the target
+ filesystem was deprecated since a while, and has been removed
+ completely from Buildroot.
+ See Buildroot's documentation for more explanations.
+
###############################################################################
comment "Legacy options removed in 2013.05"
--
1.8.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] legacy: marked BR2_PACKAGE_GCC_TARGET and BR2_HAVE_DEVFILES as removed
2013-08-30 4:08 [Buildroot] [PATCH] legacy: marked BR2_PACKAGE_GCC_TARGET and BR2_HAVE_DEVFILES as removed Samuel Martin
@ 2013-08-30 7:33 ` Thomas Petazzoni
2013-09-02 20:39 ` Peter Korsgaard
2013-09-02 20:38 ` Peter Korsgaard
1 sibling, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2013-08-30 7:33 UTC (permalink / raw)
To: buildroot
Dear Samuel Martin,
On Fri, 30 Aug 2013 06:08:59 +0200, Samuel Martin wrote:
> These 2 symbols were removed when the gcc has been converted to the
> Buildroot package infrastructures.
>
> Signed-off-by: Samuel Martin <s.martin49@gmail.com>
> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This should certainly be merged for 2013.08.
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 [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] legacy: marked BR2_PACKAGE_GCC_TARGET and BR2_HAVE_DEVFILES as removed
2013-08-30 4:08 [Buildroot] [PATCH] legacy: marked BR2_PACKAGE_GCC_TARGET and BR2_HAVE_DEVFILES as removed Samuel Martin
2013-08-30 7:33 ` Thomas Petazzoni
@ 2013-09-02 20:38 ` Peter Korsgaard
1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2013-09-02 20:38 UTC (permalink / raw)
To: buildroot
>>>>> "Samuel" == Samuel Martin <s.martin49@gmail.com> writes:
Samuel> These 2 symbols were removed when the gcc has been converted to the
Samuel> Buildroot package infrastructures.
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] legacy: marked BR2_PACKAGE_GCC_TARGET and BR2_HAVE_DEVFILES as removed
2013-08-30 7:33 ` Thomas Petazzoni
@ 2013-09-02 20:39 ` Peter Korsgaard
2013-09-02 20:46 ` Thomas Petazzoni
0 siblings, 1 reply; 5+ messages in thread
From: Peter Korsgaard @ 2013-09-02 20:39 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
Thomas> Dear Samuel Martin,
Thomas> On Fri, 30 Aug 2013 06:08:59 +0200, Samuel Martin wrote:
>> These 2 symbols were removed when the gcc has been converted to the
>> Buildroot package infrastructures.
>>
>> Signed-off-by: Samuel Martin <s.martin49@gmail.com>
>> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Thomas> This should certainly be merged for 2013.08.
Ups, I somehow missed this :/
It seems like we're having enough fixes for a bugfix release (neon,
ti-gfx and this), so I will most likely release a .1 by next weekend.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] legacy: marked BR2_PACKAGE_GCC_TARGET and BR2_HAVE_DEVFILES as removed
2013-09-02 20:39 ` Peter Korsgaard
@ 2013-09-02 20:46 ` Thomas Petazzoni
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2013-09-02 20:46 UTC (permalink / raw)
To: buildroot
Dear Peter Korsgaard,
On Mon, 02 Sep 2013 22:39:56 +0200, Peter Korsgaard wrote:
> It seems like we're having enough fixes for a bugfix release (neon,
> ti-gfx and this), so I will most likely release a .1 by next weekend.
Neon? The recent Neon fix I posted was fixing a patch that has been
merged into master after 2013.08 was tagged.
Other than that, I agree that there is enough fixes to do a 2013.08.1.
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 [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-09-02 20:46 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-30 4:08 [Buildroot] [PATCH] legacy: marked BR2_PACKAGE_GCC_TARGET and BR2_HAVE_DEVFILES as removed Samuel Martin
2013-08-30 7:33 ` Thomas Petazzoni
2013-09-02 20:39 ` Peter Korsgaard
2013-09-02 20:46 ` Thomas Petazzoni
2013-09-02 20:38 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox