mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* A little bit fixing and extending the existing documentation
@ 2015-01-26 10:39 Juergen Borleis
  2015-01-26 10:39 ` [PATCH 1/9] Docs: just fix a typo Juergen Borleis
                   ` (9 more replies)
  0 siblings, 10 replies; 15+ messages in thread
From: Juergen Borleis @ 2015-01-26 10:39 UTC (permalink / raw)
  To: barebox

Just some minor changes...

jbe


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH 1/9] Docs: just fix a typo
  2015-01-26 10:39 A little bit fixing and extending the existing documentation Juergen Borleis
@ 2015-01-26 10:39 ` Juergen Borleis
  2015-01-26 10:39 ` [PATCH 2/9] Docs: just mark the 'bootm' command like the 'go' command as well Juergen Borleis
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 15+ messages in thread
From: Juergen Borleis @ 2015-01-26 10:39 UTC (permalink / raw)
  To: barebox

Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
---
 Documentation/boards/imx.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/boards/imx.rst b/Documentation/boards/imx.rst
index 0fde3e7..21ea825 100644
--- a/Documentation/boards/imx.rst
+++ b/Documentation/boards/imx.rst
@@ -91,7 +91,7 @@ command for writing to NAND flash.
 i.MX boards
 -----------
 
-Not supported all boards have a description here. Many newer boards also do
+Not all supported boards have a description here. Many newer boards also do
 not have individual defconfig files, they are covered by ``imx_v7_defconfig``
 or ``imx_defconfig`` instead.
 
-- 
2.1.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH 2/9] Docs: just mark the 'bootm' command like the 'go' command as well
  2015-01-26 10:39 A little bit fixing and extending the existing documentation Juergen Borleis
  2015-01-26 10:39 ` [PATCH 1/9] Docs: just fix a typo Juergen Borleis
@ 2015-01-26 10:39 ` Juergen Borleis
  2015-01-26 10:46   ` Lucas Stach
  2015-01-26 10:39 ` [PATCH 3/9] Docs: add some info about the Ka-Ro TX25 related bootloader images Juergen Borleis
                   ` (7 subsequent siblings)
  9 siblings, 1 reply; 15+ messages in thread
From: Juergen Borleis @ 2015-01-26 10:39 UTC (permalink / raw)
  To: barebox

Just a try to be consistent in one sentence.

Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
---
 Documentation/boards/mxs.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/boards/mxs.rst b/Documentation/boards/mxs.rst
index 6c8bdb5..879663c 100644
--- a/Documentation/boards/mxs.rst
+++ b/Documentation/boards/mxs.rst
@@ -115,5 +115,5 @@ mxsboot tool which changes this sector number in the image.
 Booting second stage
 --------------------
 
-The second stage images can be started with the barebox bootm command or
+The second stage images can be started with the barebox 'bootm' command or
 just jumped into using the 'go' command.
-- 
2.1.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH 3/9] Docs: add some info about the Ka-Ro TX25 related bootloader images
  2015-01-26 10:39 A little bit fixing and extending the existing documentation Juergen Borleis
  2015-01-26 10:39 ` [PATCH 1/9] Docs: just fix a typo Juergen Borleis
  2015-01-26 10:39 ` [PATCH 2/9] Docs: just mark the 'bootm' command like the 'go' command as well Juergen Borleis
@ 2015-01-26 10:39 ` Juergen Borleis
  2015-01-26 10:39 ` [PATCH 4/9] Docs: add some info about the Phytec's phyCORE27 and phyCARD27 " Juergen Borleis
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 15+ messages in thread
From: Juergen Borleis @ 2015-01-26 10:39 UTC (permalink / raw)
  To: barebox

Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
---
 Documentation/boards/imx/Karo-TX25.rst | 10 ++++++++++
 1 file changed, 10 insertions(+)
 create mode 100644 Documentation/boards/imx/Karo-TX25.rst

diff --git a/Documentation/boards/imx/Karo-TX25.rst b/Documentation/boards/imx/Karo-TX25.rst
new file mode 100644
index 0000000..756c99d
--- /dev/null
+++ b/Documentation/boards/imx/Karo-TX25.rst
@@ -0,0 +1,10 @@
+Ka-Ro TX25
+==========
+
+Building the bootloader image for this target is covered by the ``imx_defconfig``
+multiimage configuration if the ``System Type`` menu entry ``Ka-Ro TX25``
+is enabled.
+
+Use the corresponding ``barebox-karo-tx25.img`` for external NAND boot.
+Use the corresponding ``barebox-karo-tx25-internal.img`` for internal NAND, USB
+or SD card boot.
-- 
2.1.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH 4/9] Docs: add some info about the Phytec's phyCORE27 and phyCARD27 related bootloader images
  2015-01-26 10:39 A little bit fixing and extending the existing documentation Juergen Borleis
                   ` (2 preceding siblings ...)
  2015-01-26 10:39 ` [PATCH 3/9] Docs: add some info about the Ka-Ro TX25 related bootloader images Juergen Borleis
@ 2015-01-26 10:39 ` Juergen Borleis
  2015-01-26 10:39 ` [PATCH 5/9] Docs: extend the mentioned commands with a link to their documentation Juergen Borleis
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 15+ messages in thread
From: Juergen Borleis @ 2015-01-26 10:39 UTC (permalink / raw)
  To: barebox

Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
---
 Documentation/boards/imx/Phytec-phyCARD-i.MX27.rst | 8 ++++++++
 Documentation/boards/imx/Phytec-phyCORE-i.MX27.rst | 8 ++++++++
 2 files changed, 16 insertions(+)
 create mode 100644 Documentation/boards/imx/Phytec-phyCARD-i.MX27.rst
 create mode 100644 Documentation/boards/imx/Phytec-phyCORE-i.MX27.rst

diff --git a/Documentation/boards/imx/Phytec-phyCARD-i.MX27.rst b/Documentation/boards/imx/Phytec-phyCARD-i.MX27.rst
new file mode 100644
index 0000000..d5d3837
--- /dev/null
+++ b/Documentation/boards/imx/Phytec-phyCARD-i.MX27.rst
@@ -0,0 +1,8 @@
+Phytec phyCARD-i.MX27
+=====================
+
+Building the bootloader image for this target is covered by the ``imx_defconfig``
+multiimage configuration if the ``System Type`` menu entry ``phyCard-i.MX27``
+is enabled.
+
+Use the corresponding ``barebox-phytec-phycard-imx27.img`` file for this target.
diff --git a/Documentation/boards/imx/Phytec-phyCORE-i.MX27.rst b/Documentation/boards/imx/Phytec-phyCORE-i.MX27.rst
new file mode 100644
index 0000000..4b40be7
--- /dev/null
+++ b/Documentation/boards/imx/Phytec-phyCORE-i.MX27.rst
@@ -0,0 +1,8 @@
+Phytec phyCORE-i.MX27
+=====================
+
+Building the bootloader image for this target is covered by the ``imx_defconfig``
+multiimage configuration if the ``System Type`` menu entry ``phyCORE-i.MX27``
+is enabled.
+
+Use the corresponding ``barebox-phytec-phycore-imx27.img`` file for this target.
-- 
2.1.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH 5/9] Docs: extend the mentioned commands with a link to their documentation
  2015-01-26 10:39 A little bit fixing and extending the existing documentation Juergen Borleis
                   ` (3 preceding siblings ...)
  2015-01-26 10:39 ` [PATCH 4/9] Docs: add some info about the Phytec's phyCORE27 and phyCARD27 " Juergen Borleis
@ 2015-01-26 10:39 ` Juergen Borleis
  2015-01-26 10:39 ` [PATCH 6/9] Docs: move the individual MXS target documentation where they belong to Juergen Borleis
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 15+ messages in thread
From: Juergen Borleis @ 2015-01-26 10:39 UTC (permalink / raw)
  To: barebox

Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
---
 Documentation/boards/mxs.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/boards/mxs.rst b/Documentation/boards/mxs.rst
index 879663c..1c26826 100644
--- a/Documentation/boards/mxs.rst
+++ b/Documentation/boards/mxs.rst
@@ -115,5 +115,5 @@ mxsboot tool which changes this sector number in the image.
 Booting second stage
 --------------------
 
-The second stage images can be started with the barebox 'bootm' command or
-just jumped into using the 'go' command.
+The second stage images can be started with the barebox :ref:`command_bootm` command or
+just jumped into using the :ref:`command_go` command.
-- 
2.1.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH 6/9] Docs: move the individual MXS target documentation where they belong to
  2015-01-26 10:39 A little bit fixing and extending the existing documentation Juergen Borleis
                   ` (4 preceding siblings ...)
  2015-01-26 10:39 ` [PATCH 5/9] Docs: extend the mentioned commands with a link to their documentation Juergen Borleis
@ 2015-01-26 10:39 ` Juergen Borleis
  2015-01-26 10:39 ` [PATCH 7/9] Docs: the name of the default config file for the FSL i.MX23 evk has changed Juergen Borleis
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 15+ messages in thread
From: Juergen Borleis @ 2015-01-26 10:39 UTC (permalink / raw)
  To: barebox

i.MX and MXS differs in their global documentation. Honor this.

Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
---
 Documentation/boards/imx.rst |  1 -
 Documentation/boards/mxs.rst | 12 ++++++++++++
 2 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/Documentation/boards/imx.rst b/Documentation/boards/imx.rst
index 21ea825..466f69c 100644
--- a/Documentation/boards/imx.rst
+++ b/Documentation/boards/imx.rst
@@ -101,4 +101,3 @@ or ``imx_defconfig`` instead.
   :maxdepth: 1
 
   imx/*
-  mxs/*
diff --git a/Documentation/boards/mxs.rst b/Documentation/boards/mxs.rst
index 1c26826..cfcd4c7 100644
--- a/Documentation/boards/mxs.rst
+++ b/Documentation/boards/mxs.rst
@@ -117,3 +117,15 @@ Booting second stage
 
 The second stage images can be started with the barebox :ref:`command_bootm` command or
 just jumped into using the :ref:`command_go` command.
+
+i.MXs boards
+------------
+
+Not all supported boards have a description here.
+
+.. toctree::
+  :glob:
+  :numbered:
+  :maxdepth: 1
+
+  mxs/*
-- 
2.1.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH 7/9] Docs: the name of the default config file for the FSL i.MX23 evk has changed
  2015-01-26 10:39 A little bit fixing and extending the existing documentation Juergen Borleis
                   ` (5 preceding siblings ...)
  2015-01-26 10:39 ` [PATCH 6/9] Docs: move the individual MXS target documentation where they belong to Juergen Borleis
@ 2015-01-26 10:39 ` Juergen Borleis
  2015-01-26 10:39 ` [PATCH 8/9] Docs: extend the mentioned commands with a link to their documentation Juergen Borleis
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 15+ messages in thread
From: Juergen Borleis @ 2015-01-26 10:39 UTC (permalink / raw)
  To: barebox

Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
---
 Documentation/boards/mxs/Freescale-i.MX23-evk.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/boards/mxs/Freescale-i.MX23-evk.rst b/Documentation/boards/mxs/Freescale-i.MX23-evk.rst
index 85dde46..cb73ec1 100644
--- a/Documentation/boards/mxs/Freescale-i.MX23-evk.rst
+++ b/Documentation/boards/mxs/Freescale-i.MX23-evk.rst
@@ -21,7 +21,7 @@ How to get the bootloader binary image
 
 Using the default configuration::
 
-  make ARCH=arm imx23evk_defconfig
+  make ARCH=arm freescale-mx23-evk_defconfig
 
 Build the bootloader binary image::
 
-- 
2.1.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH 8/9] Docs: extend the mentioned commands with a link to their documentation
  2015-01-26 10:39 A little bit fixing and extending the existing documentation Juergen Borleis
                   ` (6 preceding siblings ...)
  2015-01-26 10:39 ` [PATCH 7/9] Docs: the name of the default config file for the FSL i.MX23 evk has changed Juergen Borleis
@ 2015-01-26 10:39 ` Juergen Borleis
  2015-01-26 10:39 ` [PATCH 9/9] Docs: add some info about the Olimex's Olinuxino related bootloader images Juergen Borleis
  2015-01-27  7:39 ` A little bit fixing and extending the existing documentation Sascha Hauer
  9 siblings, 0 replies; 15+ messages in thread
From: Juergen Borleis @ 2015-01-26 10:39 UTC (permalink / raw)
  To: barebox

Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
---
 Documentation/boards/mxs/KaRo-TX28.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/boards/mxs/KaRo-TX28.rst b/Documentation/boards/mxs/KaRo-TX28.rst
index 0c5dc71..6cad5eb 100644
--- a/Documentation/boards/mxs/KaRo-TX28.rst
+++ b/Documentation/boards/mxs/KaRo-TX28.rst
@@ -38,5 +38,5 @@ This produces the following images:
 
  * barebox-karo-tx28-bootstream.img - Use with the bcb command
  * barebox-karo-tx28-sd.img - Use for SD cards
- * barebox-karo-tx28-2nd.img - Use for 2nd stage booting (with bootm)
+ * barebox-karo-tx28-2nd.img - Use for 2nd stage booting (with :ref:`command_bootm`)
 
-- 
2.1.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [PATCH 9/9] Docs: add some info about the Olimex's Olinuxino related bootloader images
  2015-01-26 10:39 A little bit fixing and extending the existing documentation Juergen Borleis
                   ` (7 preceding siblings ...)
  2015-01-26 10:39 ` [PATCH 8/9] Docs: extend the mentioned commands with a link to their documentation Juergen Borleis
@ 2015-01-26 10:39 ` Juergen Borleis
  2015-01-27  7:39 ` A little bit fixing and extending the existing documentation Sascha Hauer
  9 siblings, 0 replies; 15+ messages in thread
From: Juergen Borleis @ 2015-01-26 10:39 UTC (permalink / raw)
  To: barebox

Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
---
 Documentation/boards/mxs/Olimex-olinuxino.rst | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 Documentation/boards/mxs/Olimex-olinuxino.rst

diff --git a/Documentation/boards/mxs/Olimex-olinuxino.rst b/Documentation/boards/mxs/Olimex-olinuxino.rst
new file mode 100644
index 0000000..a06eb33
--- /dev/null
+++ b/Documentation/boards/mxs/Olimex-olinuxino.rst
@@ -0,0 +1,26 @@
+Olimex LTD Olinuxino
+====================
+
+The CPU module
+--------------
+
+This CPU module is based on a Freescale i.MX23 CPU.
+
+How to get the bootloader binary image
+--------------------------------------
+
+Using the default configuration::
+
+  make ARCH=arm imx233-olinuxino_defconfig
+
+Build the binary image::
+
+  make ARCH=arm CROSS_COMPILE=armv5compiler
+
+**NOTE:** replace the armv5compiler with your ARM v5 cross compiler.
+
+This produces the following images:
+
+ * barebox-olinuxino-imx23-bootstream.img - Use with the bcb command
+ * barebox-olinuxino-imx23-sd.img - Use for SD cards
+ * barebox-olinuxino-imx23-2nd.img - Use for 2nd stage booting (with :ref:`command_bootm`)
-- 
2.1.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2/9] Docs: just mark the 'bootm' command like the 'go' command as well
  2015-01-26 10:39 ` [PATCH 2/9] Docs: just mark the 'bootm' command like the 'go' command as well Juergen Borleis
@ 2015-01-26 10:46   ` Lucas Stach
  2015-01-26 10:50     ` Lucas Stach
  0 siblings, 1 reply; 15+ messages in thread
From: Lucas Stach @ 2015-01-26 10:46 UTC (permalink / raw)
  To: Juergen Borleis; +Cc: barebox

Am Montag, den 26.01.2015, 11:39 +0100 schrieb Juergen Borleis:
> Just a try to be consistent in one sentence.
> 
> Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
> ---
>  Documentation/boards/mxs.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/boards/mxs.rst b/Documentation/boards/mxs.rst
> index 6c8bdb5..879663c 100644
> --- a/Documentation/boards/mxs.rst
> +++ b/Documentation/boards/mxs.rst
> @@ -115,5 +115,5 @@ mxsboot tool which changes this sector number in the image.
>  Booting second stage
>  --------------------
>  
> -The second stage images can be started with the barebox bootm command or
> +The second stage images can be started with the barebox 'bootm' command or
>  just jumped into using the 'go' command.

Wouldn't it be better to directly link to those commands by
using :ref:`command_bootm` (same for go), like in other parts of the
documentation?

Regards,
Lucas


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2/9] Docs: just mark the 'bootm' command like the 'go' command as well
  2015-01-26 10:46   ` Lucas Stach
@ 2015-01-26 10:50     ` Lucas Stach
  0 siblings, 0 replies; 15+ messages in thread
From: Lucas Stach @ 2015-01-26 10:50 UTC (permalink / raw)
  To: Juergen Borleis; +Cc: barebox

Am Montag, den 26.01.2015, 11:46 +0100 schrieb Lucas Stach:
> Am Montag, den 26.01.2015, 11:39 +0100 schrieb Juergen Borleis:
> > Just a try to be consistent in one sentence.
> > 
> > Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
> > ---
> >  Documentation/boards/mxs.rst | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/Documentation/boards/mxs.rst b/Documentation/boards/mxs.rst
> > index 6c8bdb5..879663c 100644
> > --- a/Documentation/boards/mxs.rst
> > +++ b/Documentation/boards/mxs.rst
> > @@ -115,5 +115,5 @@ mxsboot tool which changes this sector number in the image.
> >  Booting second stage
> >  --------------------
> >  
> > -The second stage images can be started with the barebox bootm command or
> > +The second stage images can be started with the barebox 'bootm' command or
> >  just jumped into using the 'go' command.
> 
> Wouldn't it be better to directly link to those commands by
> using :ref:`command_bootm` (same for go), like in other parts of the
> documentation?
> 
And I just noticed you do exactly that in Patch 5/9.



_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: A little bit fixing and extending the existing documentation
  2015-01-26 10:39 A little bit fixing and extending the existing documentation Juergen Borleis
                   ` (8 preceding siblings ...)
  2015-01-26 10:39 ` [PATCH 9/9] Docs: add some info about the Olimex's Olinuxino related bootloader images Juergen Borleis
@ 2015-01-27  7:39 ` Sascha Hauer
  9 siblings, 0 replies; 15+ messages in thread
From: Sascha Hauer @ 2015-01-27  7:39 UTC (permalink / raw)
  To: Juergen Borleis; +Cc: barebox

On Mon, Jan 26, 2015 at 11:39:47AM +0100, Juergen Borleis wrote:
> Just some minor changes...

Thanks. Applied all but the second patch.

Sascha


-- 
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 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: A little bit fixing and extending the existing documentation
  2015-02-27 14:07 Juergen Borleis
@ 2015-03-01  7:12 ` Sascha Hauer
  0 siblings, 0 replies; 15+ messages in thread
From: Sascha Hauer @ 2015-03-01  7:12 UTC (permalink / raw)
  To: Juergen Borleis; +Cc: barebox

On Fri, Feb 27, 2015 at 03:07:28PM +0100, Juergen Borleis wrote:
> This time I changed two older platforms to the new default environment and
> added some more documentation snippets.
> 
> The result of the change to the new default environment was tested on real
> targets.

Applied all, thanks

Sascha

-- 
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 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

* A little bit fixing and extending the existing documentation
@ 2015-02-27 14:07 Juergen Borleis
  2015-03-01  7:12 ` Sascha Hauer
  0 siblings, 1 reply; 15+ messages in thread
From: Juergen Borleis @ 2015-02-27 14:07 UTC (permalink / raw)
  To: barebox

This time I changed two older platforms to the new default environment and
added some more documentation snippets.

The result of the change to the new default environment was tested on real
targets.

Regards,
Juergen


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2015-03-01  7:12 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-26 10:39 A little bit fixing and extending the existing documentation Juergen Borleis
2015-01-26 10:39 ` [PATCH 1/9] Docs: just fix a typo Juergen Borleis
2015-01-26 10:39 ` [PATCH 2/9] Docs: just mark the 'bootm' command like the 'go' command as well Juergen Borleis
2015-01-26 10:46   ` Lucas Stach
2015-01-26 10:50     ` Lucas Stach
2015-01-26 10:39 ` [PATCH 3/9] Docs: add some info about the Ka-Ro TX25 related bootloader images Juergen Borleis
2015-01-26 10:39 ` [PATCH 4/9] Docs: add some info about the Phytec's phyCORE27 and phyCARD27 " Juergen Borleis
2015-01-26 10:39 ` [PATCH 5/9] Docs: extend the mentioned commands with a link to their documentation Juergen Borleis
2015-01-26 10:39 ` [PATCH 6/9] Docs: move the individual MXS target documentation where they belong to Juergen Borleis
2015-01-26 10:39 ` [PATCH 7/9] Docs: the name of the default config file for the FSL i.MX23 evk has changed Juergen Borleis
2015-01-26 10:39 ` [PATCH 8/9] Docs: extend the mentioned commands with a link to their documentation Juergen Borleis
2015-01-26 10:39 ` [PATCH 9/9] Docs: add some info about the Olimex's Olinuxino related bootloader images Juergen Borleis
2015-01-27  7:39 ` A little bit fixing and extending the existing documentation Sascha Hauer
2015-02-27 14:07 Juergen Borleis
2015-03-01  7:12 ` Sascha Hauer

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