mbox

[pull,request] raspberrypi: update packages and defconfigs

Message ID cover.1435529863.git.yann.morin.1998@free.fr
State Not Applicable
Headers show

Pull-request

git://git.busybox.net/~ymorin/git/buildroot yem/rpi

Message

Yann E. MORIN June 28, 2015, 10:25 p.m. UTC
Hello All!

This series updates our support for the RaspberryPi line of boards:
RaspberryPi models A and B, A+ and B+, and model 2 B.

Patch 1 reinstates the Kconfig knob to install the DTBs, as the ones
from rpi-firmware are kernel-version specific, and can't be used with
kernels >= 3.19 (boot hangs because no root device found).

Patch 2 adds an option to intall the DTB overlays. They are bundled in
source form in thre kernel tree, but Buildroot lacks the infra to build
DT overlays in the kernel, so we install them from rpi-firmware.

Patch 3 adds the option to install a utility to diagnmose issues when
talking to the GPU (useful to debug DT-related issues... when booted!)

Patches 4-5 update our rpi-firmware and rpi-userland packages. Nothing
tremenduously interesting, though, except the usual fixes and small
improvement for new hardware support.

Patches 6-10 update our defconfig files and drops the defconfig without
DT support.

Patch 11 update the board instructions.

Thanks to Floris and Pascal for their initial works! :-)

Regards,
Yann E. MORIN.


The following changes since commit 70ad172e6e50d739f723c6000b0714799eff21fe:

  libpng: rebase ignore-symbol-prefix patch to apply cleanly (2015-06-28 23:05:36 +0200)

are available in the git repository at:

  git://git.busybox.net/~ymorin/git/buildroot yem/rpi

for you to fetch changes up to e2dbaf3e7a9135b57d2e90c3e70380bd0ec56187:

  boards/raspberrypi: update instructions (2015-06-28 23:48:12 +0200)

----------------------------------------------------------------
Floris Bos (1):
      rpi-firmware: allow disabling installation of binary DTBs

Yann E. MORIN (10):
      package/rpi-firmware: add option to install DTB overlays
      package/rpi-firmware: add option to install vcdbg
      package/rpi-firmware: bump version
      package/rpi-userland: bump version
      configs/raspberrypi: update the DT-enabled config
      configs/raspberrypi_plus: new defconfig
      configs/raspberrypi2: update our defconfig
      config/raspberrypi: remove non-DT defconfig
      config/raspberrypi: rename our defconfig files
      boards/raspberrypi: update instructions

 board/raspberrypi/linux-3.18-rpi-dt.defconfig | 204 --------------------------
 board/raspberrypi/readme.txt                  |  48 +++---
 configs/raspberrypi2_defconfig                |  16 +-
 configs/raspberrypi_defconfig                 |  26 ++--
 configs/raspberrypi_dt_defconfig              |  20 ---
 configs/raspberrypi_plus_defconfig            |  27 ++++
 package/rpi-firmware/Config.in                |  29 ++++
 package/rpi-firmware/rpi-firmware.mk          |  17 ++-
 package/rpi-userland/rpi-userland.mk          |   2 +-
 9 files changed, 124 insertions(+), 265 deletions(-)
 delete mode 100644 board/raspberrypi/linux-3.18-rpi-dt.defconfig
 delete mode 100644 configs/raspberrypi_dt_defconfig
 create mode 100644 configs/raspberrypi_plus_defconfig

Comments

Thomas Petazzoni June 29, 2015, 8:22 p.m. UTC | #1
Yann,

On Mon, 29 Jun 2015 00:25:14 +0200, Yann E. MORIN wrote:

> Floris Bos (1):
>       rpi-firmware: allow disabling installation of binary DTBs

Applied.

> 
> Yann E. MORIN (10):
>       package/rpi-firmware: add option to install DTB overlays

Applied.

>       package/rpi-firmware: add option to install vcdbg

Marked as Changes Requested, see my comments.

>       package/rpi-firmware: bump version
>       package/rpi-userland: bump version

Both applied.

>       configs/raspberrypi: update the DT-enabled config
>       configs/raspberrypi_plus: new defconfig
>       configs/raspberrypi2: update our defconfig
>       config/raspberrypi: remove non-DT defconfig
>       config/raspberrypi: rename our defconfig files
>       boards/raspberrypi: update instructions

Marked as Changes Requested: I'd like to have a single defconfig for
RPi A/B and RPi A+/B+ by simply building two DTBs.

Can you respin the patches 3 and 6-11 ?

Thanks!

Thomas
Yann E. MORIN June 29, 2015, 8:26 p.m. UTC | #2
Thomas, All,

On 2015-06-29 22:22 +0200, Thomas Petazzoni spake thusly:
> On Mon, 29 Jun 2015 00:25:14 +0200, Yann E. MORIN wrote:
> >       package/rpi-firmware: add option to install vcdbg
> Marked as Changes Requested, see my comments.

OK, will use a select.

> >       configs/raspberrypi: update the DT-enabled config
> >       configs/raspberrypi_plus: new defconfig
> >       configs/raspberrypi2: update our defconfig
> >       config/raspberrypi: remove non-DT defconfig
> >       config/raspberrypi: rename our defconfig files
> >       boards/raspberrypi: update instructions
> 
> Marked as Changes Requested: I'd like to have a single defconfig for
> RPi A/B and RPi A+/B+ by simply building two DTBs.
> 
> Can you respin the patches 3 and 6-11 ?

Yup, already on it! :-)

Thanks!

Regards,
Yann E. MORIN.