Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v3 0/7] Support for the BeagleV platform
Date: Sat, 8 May 2021 00:00:05 +0200	[thread overview]
Message-ID: <20210507220005.GC2137340@scaer> (raw)
In-Reply-To: <20210504205139.1055360-1-thomas.petazzoni@bootlin.com>

Thomas, All,

On 2021-05-04 22:51 +0200, Thomas Petazzoni spake thusly:
> Hello,
> 
> Here is a third iteration of the BeagleV patch series, which brings a
> few fixes:
> 
>  * The post-build script of v1 calling "make printvars" was working
>    only for in-tree builds. Following a comment from Frank Hunleth on
>    the v1, it was changed in v2 to use "make -C ${O} printvars", which
>    made out-of-tree builds work, but broke in-tree builds. So in this
>    new version, we introduced a preliminary patch that exposes
>    $(CONFIG_DIR) to post-build/post-image scripts, to make such "make
>    printvars" invocations possible.
> 
>  * The beaglev_defconfig is updated to take into account the rename of
>    the Git repositories by Starfive for Linux, U-Boot and OpenSBI.
> 
>  * Reviewed-by tags from Bin Meng are added on beaglev-ddrinit,
>    beaglev-secondboot and the corresponding beaglev_defconfig
>    update. Thanks Bin!

Series applied to master, thanks.

I'll reply to each individual patches where I did some changes.

Regards,
Yann E. MORIN.

> As usual, the whole thing is also available at:
> 
>   https://github.com/tpetazzoni/buildroot/commits/beaglev
> 
> Best regards,
> 
> Thomas Petazzoni
> 
> Thomas Petazzoni (7):
>   package/Makefile.in: expose CONFIG_DIR to post-build/post-image
>     scripts
>   boot/opensbi: add options to enable/disable image installation
>   configs/beaglev_defconfig: new defconfig
>   package/riscv64-elf-toolchain: new package
>   boot/beaglev-ddrinit: new package
>   boot/beaglev-secondboot: new package
>   configs/beaglev: enable building of low-level firmware
> 
>  DEVELOPERS                                    |   5 +
>  board/beaglev/extlinux.conf                   |   4 +
>  board/beaglev/genimage.cfg                    |  12 ++
>  ...s-starfive-vic7100-adjust-fdt_addr_r.patch |  39 ++++++
>  board/beaglev/post-build.sh                   |  17 +++
>  board/beaglev/readme.txt                      | 122 ++++++++++++++++++
>  boot/Config.in                                |   2 +
>  boot/beaglev-ddrinit/Config.in                |   9 ++
>  boot/beaglev-ddrinit/beaglev-ddrinit.mk       |  29 +++++
>  boot/beaglev-secondboot/Config.in             |   9 ++
>  boot/beaglev-secondboot/beaglev-secondboot.mk |  29 +++++
>  boot/opensbi/Config.in                        |  20 +++
>  boot/opensbi/opensbi.mk                       |  16 ++-
>  configs/beaglev_defconfig                     |  37 ++++++
>  docs/manual/customize-post-image.txt          |   3 +-
>  docs/manual/customize-rootfs.txt              |   3 +
>  package/Makefile.in                           |   1 +
>  .../riscv64-elf-toolchain.mk                  |  25 ++++
>  18 files changed, 375 insertions(+), 7 deletions(-)
>  create mode 100644 board/beaglev/extlinux.conf
>  create mode 100644 board/beaglev/genimage.cfg
>  create mode 100644 board/beaglev/patches/uboot/0001-include-configs-starfive-vic7100-adjust-fdt_addr_r.patch
>  create mode 100755 board/beaglev/post-build.sh
>  create mode 100644 board/beaglev/readme.txt
>  create mode 100644 boot/beaglev-ddrinit/Config.in
>  create mode 100644 boot/beaglev-ddrinit/beaglev-ddrinit.mk
>  create mode 100644 boot/beaglev-secondboot/Config.in
>  create mode 100644 boot/beaglev-secondboot/beaglev-secondboot.mk
>  create mode 100644 configs/beaglev_defconfig
>  create mode 100644 package/riscv64-elf-toolchain/riscv64-elf-toolchain.mk
> 
> -- 
> 2.30.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

  parent reply	other threads:[~2021-05-07 22:00 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-04 20:51 [Buildroot] [PATCH v3 0/7] Support for the BeagleV platform Thomas Petazzoni
2021-05-04 20:51 ` [Buildroot] [PATCH v3 1/7] package/Makefile.in: expose CONFIG_DIR to post-build/post-image scripts Thomas Petazzoni
2021-05-06 21:03   ` Yann E. MORIN
2021-05-08 14:32   ` Peter Korsgaard
2021-05-04 20:51 ` [Buildroot] [PATCH v3 2/7] boot/opensbi: add options to enable/disable image installation Thomas Petazzoni
2021-05-05  1:03   ` Alistair Francis
2021-05-04 20:51 ` [Buildroot] [PATCH v3 3/7] configs/beaglev_defconfig: new defconfig Thomas Petazzoni
2021-05-05  1:05   ` Alistair Francis
2021-05-07 22:02   ` Yann E. MORIN
2021-05-08 18:23     ` Thomas Petazzoni
2021-05-04 20:51 ` [Buildroot] [PATCH v3 4/7] package/riscv64-elf-toolchain: new package Thomas Petazzoni
2021-05-04 20:51 ` [Buildroot] [PATCH v3 5/7] boot/beaglev-ddrinit: " Thomas Petazzoni
2021-05-07 22:04   ` Yann E. MORIN
2021-05-07 22:06     ` Yann E. MORIN
2021-05-07 23:30     ` Drew Fustini
2021-05-08  7:37       ` Yann E. MORIN
2021-05-08  7:48         ` Drew Fustini
2021-05-08 16:01           ` Khem Raj
2021-05-08 18:20             ` Yann E. MORIN
2021-05-08 19:54               ` Drew Fustini
2021-05-08 21:10             ` Drew Fustini
2021-05-08 22:09               ` Khem Raj
2021-05-09 20:23                 ` Drew Fustini
2021-05-09 20:26                   ` Khem Raj
2021-05-09 20:34                     ` Drew Fustini
2021-05-08 18:21     ` Thomas Petazzoni
2021-05-09 11:03     ` Arnout Vandecappelle
2021-05-09 11:04       ` Arnout Vandecappelle
2021-05-09 20:29         ` Drew Fustini
2021-05-09 20:31           ` Khem Raj
2021-05-10  7:02           ` Drew Fustini
2021-05-10  9:07             ` Peter Korsgaard
2021-05-04 20:51 ` [Buildroot] [PATCH v3 6/7] boot/beaglev-secondboot: " Thomas Petazzoni
2021-05-07 22:07   ` Yann E. MORIN
2021-05-04 20:51 ` [Buildroot] [PATCH v3 7/7] configs/beaglev: enable building of low-level firmware Thomas Petazzoni
2021-05-07 22:08   ` Yann E. MORIN
2021-05-07 22:00 ` Yann E. MORIN [this message]
2021-05-14 21:06 ` [Buildroot] [PATCH v3 0/7] Support for the BeagleV platform Drew Fustini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210507220005.GC2137340@scaer \
    --to=yann.morin.1998@free.fr \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox