mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] doc: bcm283x: update documentation for Raspberry Pi
@ 2018-01-30 11:25 Roland Hieber
  2018-02-05 13:10 ` Roland Hieber
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Roland Hieber @ 2018-01-30 11:25 UTC (permalink / raw)
  To: barebox; +Cc: Roland Hieber

The old way does not seem to work for RPi 3, as the UART pins are
mapped differently and the NOOBS bootcode does not seem to read a
config.txt.

Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
 Documentation/boards/bcm2835.rst | 34 ++++++++++++++++++++++++++--------
 1 file changed, 26 insertions(+), 8 deletions(-)

diff --git a/Documentation/boards/bcm2835.rst b/Documentation/boards/bcm2835.rst
index 13cebb01c4..1a78cfba3c 100644
--- a/Documentation/boards/bcm2835.rst
+++ b/Documentation/boards/bcm2835.rst
@@ -1,17 +1,35 @@
-Broadcom BCM2835
+Broadcom BCM283x
 ================
 
 Raspberry Pi
 ------------
 
-  1. Prepare a card with a FAT filesystem. Download a tiny NOOBS LITE
-     zip archive and unpack it into FAT partition.
-     See http://www.raspberrypi.org/help/noobs-setup/ for details.
+  1. Prepare an SD or microSD card with a FAT filesystem of at least 30 MB in size.
+       
+  2. Download the `Raspberry Pi firmware`_ (120 MB), unzip it, and copy the
+     contents of the ``boot/`` folder to your card.
 
-  2. Compile ``barebox.bin`` image (use ``rpi_defconfig``).
-     Copy it to the SD/microSD card and name it ``recovery.img``.
+  3. Use ``make rpi_defconfig; make`` to build barebox. This will create the following images:
 
-  3. Connect to board's UART (115200 8N1);
+     - ``images/barebox-raspberry-pi-1.img`` for the BCM2835/ARM1176JZF-S (Raspberry Pi 1)
+     - ``images/barebox-raspberry-pi-2.img`` for the BCM2836/CORTEX-A7 (Raspberry Pi 2)
+     - ``images/barebox-raspberry-pi-3.img`` for the BCM2837/CORTEX-A53 (Raspberry Pi 3, Raspberry Pi Zero)
+    
+     Copy the respective image for your model to your SD card and name it
+     ``barebox.img``.
+
+  4. Create a text file ``config.txt`` on the SD card with the following content::
+
+         kernel=barebox.img
+         enable_uart=1
+         dtoverlay=pi3-miniuart-bt
+
+     (For more information, refer to the `documentation for config.txt`_.)
+
+  5. Connect to board's UART (115200 8N1);
      Use PIN6 (GND), PIN8 (UART_TX), PIN10 (UART_RX) pins.
 
-  4. Turn board's power on.
+  6. Turn board's power on.
+
+.. _Raspberry Pi firmware: https://codeload.github.com/raspberrypi/firmware/zip/80e1fbeb78f9df06701d28c0ed3a3060a3f557ef
+.. _documentation for config.txt: https://www.raspberrypi.org/documentation/configuration/config-txt/
-- 
2.11.0


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

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

* Re: [PATCH] doc: bcm283x: update documentation for Raspberry Pi
  2018-01-30 11:25 [PATCH] doc: bcm283x: update documentation for Raspberry Pi Roland Hieber
@ 2018-02-05 13:10 ` Roland Hieber
  2018-02-06  8:52 ` Sascha Hauer
  2018-04-09  8:59 ` [RESEND] " Roland Hieber
  2 siblings, 0 replies; 6+ messages in thread
From: Roland Hieber @ 2018-02-05 13:10 UTC (permalink / raw)
  To: barebox

Yes/no/further discussion needed? :)

  - Roland

On 30.01.2018 12:25, Roland Hieber wrote:
> The old way does not seem to work for RPi 3, as the UART pins are
> mapped differently and the NOOBS bootcode does not seem to read a
> config.txt.
> 
> Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
> ---
>   Documentation/boards/bcm2835.rst | 34 ++++++++++++++++++++++++++--------
>   1 file changed, 26 insertions(+), 8 deletions(-)
> 
> diff --git a/Documentation/boards/bcm2835.rst b/Documentation/boards/bcm2835.rst
> index 13cebb01c4..1a78cfba3c 100644
> --- a/Documentation/boards/bcm2835.rst
> +++ b/Documentation/boards/bcm2835.rst
> @@ -1,17 +1,35 @@
> -Broadcom BCM2835
> +Broadcom BCM283x
>   ================
>   
>   Raspberry Pi
>   ------------
>   
> -  1. Prepare a card with a FAT filesystem. Download a tiny NOOBS LITE
> -     zip archive and unpack it into FAT partition.
> -     See http://www.raspberrypi.org/help/noobs-setup/ for details.
> +  1. Prepare an SD or microSD card with a FAT filesystem of at least 30 MB in size.
> +
> +  2. Download the `Raspberry Pi firmware`_ (120 MB), unzip it, and copy the
> +     contents of the ``boot/`` folder to your card.
>   
> -  2. Compile ``barebox.bin`` image (use ``rpi_defconfig``).
> -     Copy it to the SD/microSD card and name it ``recovery.img``.
> +  3. Use ``make rpi_defconfig; make`` to build barebox. This will create the following images:
>   
> -  3. Connect to board's UART (115200 8N1);
> +     - ``images/barebox-raspberry-pi-1.img`` for the BCM2835/ARM1176JZF-S (Raspberry Pi 1)
> +     - ``images/barebox-raspberry-pi-2.img`` for the BCM2836/CORTEX-A7 (Raspberry Pi 2)
> +     - ``images/barebox-raspberry-pi-3.img`` for the BCM2837/CORTEX-A53 (Raspberry Pi 3, Raspberry Pi Zero)
> +
> +     Copy the respective image for your model to your SD card and name it
> +     ``barebox.img``.
> +
> +  4. Create a text file ``config.txt`` on the SD card with the following content::
> +
> +         kernel=barebox.img
> +         enable_uart=1
> +         dtoverlay=pi3-miniuart-bt
> +
> +     (For more information, refer to the `documentation for config.txt`_.)
> +
> +  5. Connect to board's UART (115200 8N1);
>        Use PIN6 (GND), PIN8 (UART_TX), PIN10 (UART_RX) pins.
>   
> -  4. Turn board's power on.
> +  6. Turn board's power on.
> +
> +.. _Raspberry Pi firmware: https://codeload.github.com/raspberrypi/firmware/zip/80e1fbeb78f9df06701d28c0ed3a3060a3f557ef
> +.. _documentation for config.txt: https://www.raspberrypi.org/documentation/configuration/config-txt/
> 

-- 
Pengutronix e.K.                  | Roland Hieber               |
Industrial Linux Solutions        | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim | Phone: +49-5121-206917-5086 |
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] 6+ messages in thread

* Re: [PATCH] doc: bcm283x: update documentation for Raspberry Pi
  2018-01-30 11:25 [PATCH] doc: bcm283x: update documentation for Raspberry Pi Roland Hieber
  2018-02-05 13:10 ` Roland Hieber
@ 2018-02-06  8:52 ` Sascha Hauer
  2018-03-26  9:31   ` Roland Hieber
  2018-04-09  8:59 ` [RESEND] " Roland Hieber
  2 siblings, 1 reply; 6+ messages in thread
From: Sascha Hauer @ 2018-02-06  8:52 UTC (permalink / raw)
  To: Roland Hieber; +Cc: barebox

On Tue, Jan 30, 2018 at 12:25:23PM +0100, Roland Hieber wrote:
> The old way does not seem to work for RPi 3, as the UART pins are
> mapped differently and the NOOBS bootcode does not seem to read a
> config.txt.
> 
> Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
> ---
>  Documentation/boards/bcm2835.rst | 34 ++++++++++++++++++++++++++--------
>  1 file changed, 26 insertions(+), 8 deletions(-)

Applied, thanks

Sascha

> 
> diff --git a/Documentation/boards/bcm2835.rst b/Documentation/boards/bcm2835.rst
> index 13cebb01c4..1a78cfba3c 100644
> --- a/Documentation/boards/bcm2835.rst
> +++ b/Documentation/boards/bcm2835.rst
> @@ -1,17 +1,35 @@
> -Broadcom BCM2835
> +Broadcom BCM283x
>  ================
>  
>  Raspberry Pi
>  ------------
>  
> -  1. Prepare a card with a FAT filesystem. Download a tiny NOOBS LITE
> -     zip archive and unpack it into FAT partition.
> -     See http://www.raspberrypi.org/help/noobs-setup/ for details.
> +  1. Prepare an SD or microSD card with a FAT filesystem of at least 30 MB in size.
> +       
> +  2. Download the `Raspberry Pi firmware`_ (120 MB), unzip it, and copy the
> +     contents of the ``boot/`` folder to your card.
>  
> -  2. Compile ``barebox.bin`` image (use ``rpi_defconfig``).
> -     Copy it to the SD/microSD card and name it ``recovery.img``.
> +  3. Use ``make rpi_defconfig; make`` to build barebox. This will create the following images:
>  
> -  3. Connect to board's UART (115200 8N1);
> +     - ``images/barebox-raspberry-pi-1.img`` for the BCM2835/ARM1176JZF-S (Raspberry Pi 1)
> +     - ``images/barebox-raspberry-pi-2.img`` for the BCM2836/CORTEX-A7 (Raspberry Pi 2)
> +     - ``images/barebox-raspberry-pi-3.img`` for the BCM2837/CORTEX-A53 (Raspberry Pi 3, Raspberry Pi Zero)
> +    
> +     Copy the respective image for your model to your SD card and name it
> +     ``barebox.img``.
> +
> +  4. Create a text file ``config.txt`` on the SD card with the following content::
> +
> +         kernel=barebox.img
> +         enable_uart=1
> +         dtoverlay=pi3-miniuart-bt
> +
> +     (For more information, refer to the `documentation for config.txt`_.)
> +
> +  5. Connect to board's UART (115200 8N1);
>       Use PIN6 (GND), PIN8 (UART_TX), PIN10 (UART_RX) pins.
>  
> -  4. Turn board's power on.
> +  6. Turn board's power on.
> +
> +.. _Raspberry Pi firmware: https://codeload.github.com/raspberrypi/firmware/zip/80e1fbeb78f9df06701d28c0ed3a3060a3f557ef
> +.. _documentation for config.txt: https://www.raspberrypi.org/documentation/configuration/config-txt/
> -- 
> 2.11.0
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
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] 6+ messages in thread

* Re: [PATCH] doc: bcm283x: update documentation for Raspberry Pi
  2018-02-06  8:52 ` Sascha Hauer
@ 2018-03-26  9:31   ` Roland Hieber
  0 siblings, 0 replies; 6+ messages in thread
From: Roland Hieber @ 2018-03-26  9:31 UTC (permalink / raw)
  To: Sascha Hauer; +Cc: barebox

On 06.02.2018 09:52, Sascha Hauer wrote:
> On Tue, Jan 30, 2018 at 12:25:23PM +0100, Roland Hieber wrote:
>> The old way does not seem to work for RPi 3, as the UART pins are
>> mapped differently and the NOOBS bootcode does not seem to read a
>> config.txt.
>>
>> Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
>> ---
>>   Documentation/boards/bcm2835.rst | 34 ++++++++++++++++++++++++++--------
>>   1 file changed, 26 insertions(+), 8 deletions(-)
> 
> Applied, thanks
> 
> Sascha

I do not see this one in current master (ca880912a4). Did it get lost?

  - Roland

>>
>> diff --git a/Documentation/boards/bcm2835.rst b/Documentation/boards/bcm2835.rst
>> index 13cebb01c4..1a78cfba3c 100644
>> --- a/Documentation/boards/bcm2835.rst
>> +++ b/Documentation/boards/bcm2835.rst
>> @@ -1,17 +1,35 @@
>> -Broadcom BCM2835
>> +Broadcom BCM283x
>>   ================
>>   
>>   Raspberry Pi
>>   ------------
>>   
>> -  1. Prepare a card with a FAT filesystem. Download a tiny NOOBS LITE
>> -     zip archive and unpack it into FAT partition.
>> -     See http://www.raspberrypi.org/help/noobs-setup/ for details.
>> +  1. Prepare an SD or microSD card with a FAT filesystem of at least 30 MB in size.
>> +
>> +  2. Download the `Raspberry Pi firmware`_ (120 MB), unzip it, and copy the
>> +     contents of the ``boot/`` folder to your card.
>>   
>> -  2. Compile ``barebox.bin`` image (use ``rpi_defconfig``).
>> -     Copy it to the SD/microSD card and name it ``recovery.img``.
>> +  3. Use ``make rpi_defconfig; make`` to build barebox. This will create the following images:
>>   
>> -  3. Connect to board's UART (115200 8N1);
>> +     - ``images/barebox-raspberry-pi-1.img`` for the BCM2835/ARM1176JZF-S (Raspberry Pi 1)
>> +     - ``images/barebox-raspberry-pi-2.img`` for the BCM2836/CORTEX-A7 (Raspberry Pi 2)
>> +     - ``images/barebox-raspberry-pi-3.img`` for the BCM2837/CORTEX-A53 (Raspberry Pi 3, Raspberry Pi Zero)
>> +
>> +     Copy the respective image for your model to your SD card and name it
>> +     ``barebox.img``.
>> +
>> +  4. Create a text file ``config.txt`` on the SD card with the following content::
>> +
>> +         kernel=barebox.img
>> +         enable_uart=1
>> +         dtoverlay=pi3-miniuart-bt
>> +
>> +     (For more information, refer to the `documentation for config.txt`_.)
>> +
>> +  5. Connect to board's UART (115200 8N1);
>>        Use PIN6 (GND), PIN8 (UART_TX), PIN10 (UART_RX) pins.
>>   
>> -  4. Turn board's power on.
>> +  6. Turn board's power on.
>> +
>> +.. _Raspberry Pi firmware: https://codeload.github.com/raspberrypi/firmware/zip/80e1fbeb78f9df06701d28c0ed3a3060a3f557ef
>> +.. _documentation for config.txt: https://www.raspberrypi.org/documentation/configuration/config-txt/
>> -- 
>> 2.11.0
>>
>>
>> _______________________________________________
>> barebox mailing list
>> barebox@lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/barebox
>>
> 

-- 
Pengutronix e.K.                  | Roland Hieber               |
Industrial Linux Solutions        | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim | Phone: +49-5121-206917-5086 |
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] 6+ messages in thread

* [RESEND] doc: bcm283x: update documentation for Raspberry Pi
  2018-01-30 11:25 [PATCH] doc: bcm283x: update documentation for Raspberry Pi Roland Hieber
  2018-02-05 13:10 ` Roland Hieber
  2018-02-06  8:52 ` Sascha Hauer
@ 2018-04-09  8:59 ` Roland Hieber
  2018-04-10  7:08   ` Sascha Hauer
  2 siblings, 1 reply; 6+ messages in thread
From: Roland Hieber @ 2018-04-09  8:59 UTC (permalink / raw)
  To: barebox; +Cc: Roland Hieber

The old way does not seem to work for RPi 3, as the UART pins are
mapped differently and the NOOBS bootcode does not seem to read a
config.txt.

Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
 Documentation/boards/bcm2835.rst | 34 ++++++++++++++++++++++++++--------
 1 file changed, 26 insertions(+), 8 deletions(-)
---
Although Sascha said he had applied the patch, I cannot find traces of
it in the current master. It probably got lost, so I'm resending it.
Note that this patch is independent of Lucas' RPi patch series and also
applies to the current state of RPi support.

 - Roland

diff --git a/Documentation/boards/bcm2835.rst b/Documentation/boards/bcm2835.rst
index 13cebb01c4..1a78cfba3c 100644
--- a/Documentation/boards/bcm2835.rst
+++ b/Documentation/boards/bcm2835.rst
@@ -1,17 +1,35 @@
-Broadcom BCM2835
+Broadcom BCM283x
 ================
 
 Raspberry Pi
 ------------
 
-  1. Prepare a card with a FAT filesystem. Download a tiny NOOBS LITE
-     zip archive and unpack it into FAT partition.
-     See http://www.raspberrypi.org/help/noobs-setup/ for details.
+  1. Prepare an SD or microSD card with a FAT filesystem of at least 30 MB in size.
+       
+  2. Download the `Raspberry Pi firmware`_ (120 MB), unzip it, and copy the
+     contents of the ``boot/`` folder to your card.
 
-  2. Compile ``barebox.bin`` image (use ``rpi_defconfig``).
-     Copy it to the SD/microSD card and name it ``recovery.img``.
+  3. Use ``make rpi_defconfig; make`` to build barebox. This will create the following images:
 
-  3. Connect to board's UART (115200 8N1);
+     - ``images/barebox-raspberry-pi-1.img`` for the BCM2835/ARM1176JZF-S (Raspberry Pi 1)
+     - ``images/barebox-raspberry-pi-2.img`` for the BCM2836/CORTEX-A7 (Raspberry Pi 2)
+     - ``images/barebox-raspberry-pi-3.img`` for the BCM2837/CORTEX-A53 (Raspberry Pi 3, Raspberry Pi Zero)
+    
+     Copy the respective image for your model to your SD card and name it
+     ``barebox.img``.
+
+  4. Create a text file ``config.txt`` on the SD card with the following content::
+
+         kernel=barebox.img
+         enable_uart=1
+         dtoverlay=pi3-miniuart-bt
+
+     (For more information, refer to the `documentation for config.txt`_.)
+
+  5. Connect to board's UART (115200 8N1);
      Use PIN6 (GND), PIN8 (UART_TX), PIN10 (UART_RX) pins.
 
-  4. Turn board's power on.
+  6. Turn board's power on.
+
+.. _Raspberry Pi firmware: https://codeload.github.com/raspberrypi/firmware/zip/80e1fbeb78f9df06701d28c0ed3a3060a3f557ef
+.. _documentation for config.txt: https://www.raspberrypi.org/documentation/configuration/config-txt/
-- 
2.11.0


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

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

* Re: [RESEND] doc: bcm283x: update documentation for Raspberry Pi
  2018-04-09  8:59 ` [RESEND] " Roland Hieber
@ 2018-04-10  7:08   ` Sascha Hauer
  0 siblings, 0 replies; 6+ messages in thread
From: Sascha Hauer @ 2018-04-10  7:08 UTC (permalink / raw)
  To: Roland Hieber; +Cc: barebox

On Mon, Apr 09, 2018 at 10:59:33AM +0200, Roland Hieber wrote:
> The old way does not seem to work for RPi 3, as the UART pins are
> mapped differently and the NOOBS bootcode does not seem to read a
> config.txt.
> 
> Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
> ---
>  Documentation/boards/bcm2835.rst | 34 ++++++++++++++++++++++++++--------
>  1 file changed, 26 insertions(+), 8 deletions(-)
> ---
> Although Sascha said he had applied the patch, I cannot find traces of
> it in the current master. It probably got lost, so I'm resending it.
> Note that this patch is independent of Lucas' RPi patch series and also
> applies to the current state of RPi support.

Applied, thanks. Yes, now I *really* did.

Sascha

> 
>  - Roland
> 
> diff --git a/Documentation/boards/bcm2835.rst b/Documentation/boards/bcm2835.rst
> index 13cebb01c4..1a78cfba3c 100644
> --- a/Documentation/boards/bcm2835.rst
> +++ b/Documentation/boards/bcm2835.rst
> @@ -1,17 +1,35 @@
> -Broadcom BCM2835
> +Broadcom BCM283x
>  ================
>  
>  Raspberry Pi
>  ------------
>  
> -  1. Prepare a card with a FAT filesystem. Download a tiny NOOBS LITE
> -     zip archive and unpack it into FAT partition.
> -     See http://www.raspberrypi.org/help/noobs-setup/ for details.
> +  1. Prepare an SD or microSD card with a FAT filesystem of at least 30 MB in size.
> +       
> +  2. Download the `Raspberry Pi firmware`_ (120 MB), unzip it, and copy the
> +     contents of the ``boot/`` folder to your card.
>  
> -  2. Compile ``barebox.bin`` image (use ``rpi_defconfig``).
> -     Copy it to the SD/microSD card and name it ``recovery.img``.
> +  3. Use ``make rpi_defconfig; make`` to build barebox. This will create the following images:
>  
> -  3. Connect to board's UART (115200 8N1);
> +     - ``images/barebox-raspberry-pi-1.img`` for the BCM2835/ARM1176JZF-S (Raspberry Pi 1)
> +     - ``images/barebox-raspberry-pi-2.img`` for the BCM2836/CORTEX-A7 (Raspberry Pi 2)
> +     - ``images/barebox-raspberry-pi-3.img`` for the BCM2837/CORTEX-A53 (Raspberry Pi 3, Raspberry Pi Zero)
> +    
> +     Copy the respective image for your model to your SD card and name it
> +     ``barebox.img``.
> +
> +  4. Create a text file ``config.txt`` on the SD card with the following content::
> +
> +         kernel=barebox.img
> +         enable_uart=1
> +         dtoverlay=pi3-miniuart-bt
> +
> +     (For more information, refer to the `documentation for config.txt`_.)
> +
> +  5. Connect to board's UART (115200 8N1);
>       Use PIN6 (GND), PIN8 (UART_TX), PIN10 (UART_RX) pins.
>  
> -  4. Turn board's power on.
> +  6. Turn board's power on.
> +
> +.. _Raspberry Pi firmware: https://codeload.github.com/raspberrypi/firmware/zip/80e1fbeb78f9df06701d28c0ed3a3060a3f557ef
> +.. _documentation for config.txt: https://www.raspberrypi.org/documentation/configuration/config-txt/
> -- 
> 2.11.0
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
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] 6+ messages in thread

end of thread, other threads:[~2018-04-10  7:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-30 11:25 [PATCH] doc: bcm283x: update documentation for Raspberry Pi Roland Hieber
2018-02-05 13:10 ` Roland Hieber
2018-02-06  8:52 ` Sascha Hauer
2018-03-26  9:31   ` Roland Hieber
2018-04-09  8:59 ` [RESEND] " Roland Hieber
2018-04-10  7:08   ` Sascha Hauer

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