* [ptxdist] [PATCH] We have 2014 (yes, I'm sure)
@ 2014-01-23 11:32 Juergen Beisert
2014-01-23 11:32 ` [ptxdist] [PATCH 1/2] Barebox: we have the year 2014, reflect this in the default value Juergen Beisert
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Juergen Beisert @ 2014-01-23 11:32 UTC (permalink / raw)
To: ptxdist
Should we reflect this in various default values? If yes, here are some
changes to do so. :)
Juergen
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 6+ messages in thread
* [ptxdist] [PATCH 1/2] Barebox: we have the year 2014, reflect this in the default value
2014-01-23 11:32 [ptxdist] [PATCH] We have 2014 (yes, I'm sure) Juergen Beisert
@ 2014-01-23 11:32 ` Juergen Beisert
2014-01-23 11:32 ` [ptxdist] [PATCH 2/2] Toolchain/gdb: we have the year 2014, reflect this in the default values Juergen Beisert
2014-01-23 21:12 ` [ptxdist] [PATCH] We have 2014 (yes, I'm sure) Uwe Kleine-König
2 siblings, 0 replies; 6+ messages in thread
From: Juergen Beisert @ 2014-01-23 11:32 UTC (permalink / raw)
To: ptxdist
Seems long time ago this menu entry was created :)
Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
---
platforms/barebox.in | 2 +-
platforms/barebox_mlo.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/platforms/barebox.in b/platforms/barebox.in
index 80b19f0..224bb41 100644
--- a/platforms/barebox.in
+++ b/platforms/barebox.in
@@ -19,7 +19,7 @@ if BAREBOX
config BAREBOX_VERSION
prompt "barebox version"
string
- default "2010.10.0"
+ default "2014.01.0"
config BAREBOX_MD5
prompt "barebox source md5sum"
diff --git a/platforms/barebox_mlo.in b/platforms/barebox_mlo.in
index 2176792..01c8669 100644
--- a/platforms/barebox_mlo.in
+++ b/platforms/barebox_mlo.in
@@ -12,7 +12,7 @@ config BAREBOX_MLO_VERSION
prompt "barebox version" if !BAREBOX
string
default "${PTXCONF_BAREBOX_VERSION}" if BAREBOX
- default "2010.10.0" if !BAREBOX
+ default "2014.01.0" if !BAREBOX
config BAREBOX_MLO_MD5
prompt "barebox source md5sum" if !BAREBOX
--
1.8.5.2
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 6+ messages in thread
* [ptxdist] [PATCH 2/2] Toolchain/gdb: we have the year 2014, reflect this in the default values
2014-01-23 11:32 [ptxdist] [PATCH] We have 2014 (yes, I'm sure) Juergen Beisert
2014-01-23 11:32 ` [ptxdist] [PATCH 1/2] Barebox: we have the year 2014, reflect this in the default value Juergen Beisert
@ 2014-01-23 11:32 ` Juergen Beisert
2014-01-23 16:57 ` Michael Olbrich
2014-01-23 21:12 ` [ptxdist] [PATCH] We have 2014 (yes, I'm sure) Uwe Kleine-König
2 siblings, 1 reply; 6+ messages in thread
From: Juergen Beisert @ 2014-01-23 11:32 UTC (permalink / raw)
To: ptxdist
The defaults are now pointing to the last year toolchain (2013.12) release.
This includes gdb which is used in this toolchain release.
Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
---
platforms/toolchain.in | 8 ++++----
| 4 ++--
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/platforms/toolchain.in b/platforms/toolchain.in
index 90d62ad..2807bc7 100644
--- a/platforms/toolchain.in
+++ b/platforms/toolchain.in
@@ -5,7 +5,7 @@ menu "toolchain "
config CROSSCHAIN_VENDOR
string
prompt "check for specific toolchain vendor"
- default "OSELAS.Toolchain-1.99.3"
+ default "OSELAS.Toolchain-2013.12"
help
Add here an unique vendor string to ensure this project will
be build with the correct toolchain.
@@ -19,7 +19,7 @@ config CROSSCHAIN_VENDOR
config CROSSCHAIN_CHECK
string
prompt "check for specific gcc version"
- default "4.3.2"
+ default "4.8.2"
help
PTXdist calls your cross compiler with -dumpversion and
compares the output with this string. This should help
@@ -47,7 +47,7 @@ if LIBC_GLIBC
config GLIBC_VERSION
string
prompt "check for specific glibc version"
- default "2.8"
+ default "2.18"
help
Specify the glibc version this BSP shall be built with. This information
is used to guess the toolchain path if you use "ptxdist toolchain"
@@ -58,7 +58,7 @@ if LIBC_UCLIBC
config UCLIBC_VERSION
string
prompt "check for specific uClibc version"
- default "0.9.30.2"
+ default "0.9.33.2"
help
Specify the uClibc version this BSP shall be built with. This information
is used to guess the toolchain path if you use "ptxdist toolchain"
--git a/rules/gdb-menu.in b/rules/gdb-menu.in
index 610aeb2..79e876b 100644
--- a/rules/gdb-menu.in
+++ b/rules/gdb-menu.in
@@ -8,11 +8,11 @@ if GDB || GDBSERVER
config GDB_VERSION
string "gdb version"
- default "7.2"
+ default "7.6.1"
config GDB_MD5
string "gdb source md5sum"
- default "64260e6c56979ee750a01055f16091a5"
+ default "fbc4dab4181e6e9937075b43a4ce2732"
endif
--
1.8.5.2
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [ptxdist] [PATCH 2/2] Toolchain/gdb: we have the year 2014, reflect this in the default values
2014-01-23 11:32 ` [ptxdist] [PATCH 2/2] Toolchain/gdb: we have the year 2014, reflect this in the default values Juergen Beisert
@ 2014-01-23 16:57 ` Michael Olbrich
0 siblings, 0 replies; 6+ messages in thread
From: Michael Olbrich @ 2014-01-23 16:57 UTC (permalink / raw)
To: ptxdist
On Thu, Jan 23, 2014 at 12:32:51PM +0100, Juergen Beisert wrote:
> The defaults are now pointing to the last year toolchain (2013.12) release.
> This includes gdb which is used in this toolchain release.
>
Thnaks, both applied.
Michael
> Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
> ---
> platforms/toolchain.in | 8 ++++----
> rules/gdb-menu.in | 4 ++--
> 2 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/platforms/toolchain.in b/platforms/toolchain.in
> index 90d62ad..2807bc7 100644
> --- a/platforms/toolchain.in
> +++ b/platforms/toolchain.in
> @@ -5,7 +5,7 @@ menu "toolchain "
> config CROSSCHAIN_VENDOR
> string
> prompt "check for specific toolchain vendor"
> - default "OSELAS.Toolchain-1.99.3"
> + default "OSELAS.Toolchain-2013.12"
> help
> Add here an unique vendor string to ensure this project will
> be build with the correct toolchain.
> @@ -19,7 +19,7 @@ config CROSSCHAIN_VENDOR
> config CROSSCHAIN_CHECK
> string
> prompt "check for specific gcc version"
> - default "4.3.2"
> + default "4.8.2"
> help
> PTXdist calls your cross compiler with -dumpversion and
> compares the output with this string. This should help
> @@ -47,7 +47,7 @@ if LIBC_GLIBC
> config GLIBC_VERSION
> string
> prompt "check for specific glibc version"
> - default "2.8"
> + default "2.18"
> help
> Specify the glibc version this BSP shall be built with. This information
> is used to guess the toolchain path if you use "ptxdist toolchain"
> @@ -58,7 +58,7 @@ if LIBC_UCLIBC
> config UCLIBC_VERSION
> string
> prompt "check for specific uClibc version"
> - default "0.9.30.2"
> + default "0.9.33.2"
> help
> Specify the uClibc version this BSP shall be built with. This information
> is used to guess the toolchain path if you use "ptxdist toolchain"
> diff --git a/rules/gdb-menu.in b/rules/gdb-menu.in
> index 610aeb2..79e876b 100644
> --- a/rules/gdb-menu.in
> +++ b/rules/gdb-menu.in
> @@ -8,11 +8,11 @@ if GDB || GDBSERVER
>
> config GDB_VERSION
> string "gdb version"
> - default "7.2"
> + default "7.6.1"
>
> config GDB_MD5
> string "gdb source md5sum"
> - default "64260e6c56979ee750a01055f16091a5"
> + default "fbc4dab4181e6e9937075b43a4ce2732"
>
> endif
>
> --
> 1.8.5.2
>
>
> --
> ptxdist mailing list
> ptxdist@pengutronix.de
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [ptxdist] [PATCH] We have 2014 (yes, I'm sure)
2014-01-23 11:32 [ptxdist] [PATCH] We have 2014 (yes, I'm sure) Juergen Beisert
2014-01-23 11:32 ` [ptxdist] [PATCH 1/2] Barebox: we have the year 2014, reflect this in the default value Juergen Beisert
2014-01-23 11:32 ` [ptxdist] [PATCH 2/2] Toolchain/gdb: we have the year 2014, reflect this in the default values Juergen Beisert
@ 2014-01-23 21:12 ` Uwe Kleine-König
2014-01-24 8:30 ` Juergen Beisert
2 siblings, 1 reply; 6+ messages in thread
From: Uwe Kleine-König @ 2014-01-23 21:12 UTC (permalink / raw)
To: ptxdist
On Thu, Jan 23, 2014 at 12:32:49PM +0100, Juergen Beisert wrote:
> Should we reflect this in various default values? If yes, here are some
> changes to do so. :)
Yeah, we have 2014, so you could do:
git config --global user.name "Jürgen Beisert"
echo 'set realname = "Jürgen Beisert"' >> .mutt/muttrc
SCNR
Uwe
>
> Juergen
--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | http://www.pengutronix.de/ |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [ptxdist] [PATCH] We have 2014 (yes, I'm sure)
2014-01-23 21:12 ` [ptxdist] [PATCH] We have 2014 (yes, I'm sure) Uwe Kleine-König
@ 2014-01-24 8:30 ` Juergen Beisert
0 siblings, 0 replies; 6+ messages in thread
From: Juergen Beisert @ 2014-01-24 8:30 UTC (permalink / raw)
To: ptxdist; +Cc: Uwe Kleine-König
On Thursday 23 January 2014 22:12:09 Uwe Kleine-König wrote:
> On Thu, Jan 23, 2014 at 12:32:49PM +0100, Juergen Beisert wrote:
> > Should we reflect this in various default values? If yes, here are some
> > changes to do so. :)
>
> Yeah, we have 2014, so you could do:
>
> git config --global user.name "Jürgen Beisert"
> echo 'set realname = "Jürgen Beisert"' >> .mutt/muttrc
The umlauts are not related to 2014 :))
jbe
--
Pengutronix e.K. | Juergen Beisert |
Linux Solutions for Science and Industry | http://www.pengutronix.de/ |
--
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-01-24 8:30 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-23 11:32 [ptxdist] [PATCH] We have 2014 (yes, I'm sure) Juergen Beisert
2014-01-23 11:32 ` [ptxdist] [PATCH 1/2] Barebox: we have the year 2014, reflect this in the default value Juergen Beisert
2014-01-23 11:32 ` [ptxdist] [PATCH 2/2] Toolchain/gdb: we have the year 2014, reflect this in the default values Juergen Beisert
2014-01-23 16:57 ` Michael Olbrich
2014-01-23 21:12 ` [ptxdist] [PATCH] We have 2014 (yes, I'm sure) Uwe Kleine-König
2014-01-24 8:30 ` Juergen Beisert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox