From: Peter Korsgaard <peter@korsgaard.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 9/9] boards/zynq: use genimage to generate a bootable SD card image
Date: Mon, 11 Dec 2017 22:40:38 +0100 [thread overview]
Message-ID: <87fu8huend.fsf@dell.be.48ers.dk> (raw)
In-Reply-To: <1512855007-1834-10-git-send-email-luca@lucaceresoli.net> (Luca Ceresoli's message of "Sat, 9 Dec 2017 22:30:07 +0100")
>>>>> "Luca" == Luca Ceresoli <luca@lucaceresoli.net> writes:
> [Run-time tested on ZedBoard, build-tested on the other boards]
> Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
> ---
> board/zynq/genimage.cfg | 25 +++++++++++++++++++++++++
> board/zynq/post-image.sh | 2 ++
> board/zynq/readme.txt | 14 +++++++-------
> configs/zynq_microzed_defconfig | 1 +
> configs/zynq_zc706_defconfig | 1 +
> configs/zynq_zed_defconfig | 1 +
> 6 files changed, 37 insertions(+), 7 deletions(-)
> create mode 100644 board/zynq/genimage.cfg
> diff --git a/board/zynq/genimage.cfg b/board/zynq/genimage.cfg
> new file mode 100644
> index 000000000000..76e61c3a0987
> --- /dev/null
> +++ b/board/zynq/genimage.cfg
> @@ -0,0 +1,25 @@
> +image boot.vfat {
> + vfat {
> + files = {
> + "boot.bin",
> + "u-boot.img",
> + "devicetree.dtb",
> + "uImage"
> + }
> + file uramdisk.image.gz {
> + image = "rootfs.cpio.uboot"
> + }
> + }
> + size = 32M
> +}
> +
> +image sdcard.img {
> + hdimage {
> + }
> +
> + partition boot {
> + partition-type = 0xC
> + bootable = "true"
> + image = "boot.vfat"
> + }
> +}
> diff --git a/board/zynq/post-image.sh b/board/zynq/post-image.sh
> index 449f4a23725a..d7dde97b72ce 100755
> --- a/board/zynq/post-image.sh
> +++ b/board/zynq/post-image.sh
> @@ -9,3 +9,5 @@ FIRST_DT=$(sed -n \
> ${BR2_CONFIG})
> ln -fs ${FIRST_DT}.dtb ${BINARIES_DIR}/devicetree.dtb
> +
> +support/scripts/genimage.sh -c board/zynq/genimage.cfg
> diff --git a/board/zynq/readme.txt b/board/zynq/readme.txt
> index c5506fe9668c..162734963a27 100644
> --- a/board/zynq/readme.txt
> +++ b/board/zynq/readme.txt
> @@ -14,13 +14,13 @@ Steps to create a working system for a Zynq board:
> make zynq_microzed_defconfig (MicroZed)
> 2) make
> 3) All needed files will be available in the output/images directory.
> - Create a FAT32 partition at the beginning of your SD Card and copy files:
> - - boot.bin
> - - u-boot.img
> - - uImage
> - - uramdisk.image.gz (should be renamed from rootfs.cpio.uboot)
> - - devicetree.dtb (should be renamed from zynq-***.dtb)
> - into your SD card
> + The sdcard.img file is a complete bootable image ready to be written
> + on the boot medium. To install it, simply copy the image to an SD
> + card:
> +
> + # dd if=output/images/sdcard.img of=/dev/sdX
> +
> + Where 'sdX' is the device node of the uSD.
> 4) boot your board
> You can alter the booting procedure by creating a file uEnv.txt
> diff --git a/configs/zynq_microzed_defconfig b/configs/zynq_microzed_defconfig
> index c6685a4bc189..98879cada04d 100644
> --- a/configs/zynq_microzed_defconfig
> +++ b/configs/zynq_microzed_defconfig
> @@ -28,3 +28,4 @@ BR2_TARGET_UBOOT_NEEDS_OPENSSL=y
> BR2_TARGET_UBOOT_FORMAT_IMG=y
> BR2_TARGET_UBOOT_SPL=y
> BR2_TARGET_UBOOT_SPL_NAME="spl/boot.bin"
> +BR2_PACKAGE_HOST_GENIMAGE=y
We also need
BR2_PACKAGE_HOST_DOSFSTOOLS=y
BR2_PACKAGE_HOST_MTOOLS=y
For creating / populating the vfat image. Committed with that fixed,
thanks.
--
Bye, Peter Korsgaard
next prev parent reply other threads:[~2017-12-11 21:40 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-09 21:29 [Buildroot] [PATCH 0/9] zynq boards: use genimage and update kernel + u-boot Luca Ceresoli
2017-12-09 21:29 ` [Buildroot] [PATCH 1/9] support/scripts/genimage.sh: show usage when invoked incorrectly Luca Ceresoli
2017-12-11 19:14 ` Peter Korsgaard
2017-12-09 21:30 ` [Buildroot] [PATCH 2/9] zynq_zed: linux: bump to xilinx-v2017.3 (based on 4.9) Luca Ceresoli
2017-12-11 17:19 ` Alistair Francis
2017-12-11 19:16 ` Peter Korsgaard
2017-12-09 21:30 ` [Buildroot] [PATCH 3/9] zynq_zed: u-boot: bump to xilinx-v2017.3 Luca Ceresoli
2017-12-11 17:19 ` Alistair Francis
2017-12-11 19:17 ` Peter Korsgaard
2017-12-09 21:30 ` [Buildroot] [PATCH 4/9] zynq_microzed: linux: bump to xilinx-v2017.3 (based on 4.9) Luca Ceresoli
2017-12-11 17:19 ` Alistair Francis
2017-12-11 19:17 ` Peter Korsgaard
2017-12-09 21:30 ` [Buildroot] [PATCH 5/9] zynq_microzed: u-boot: bump to xilinx-v2017.3 Luca Ceresoli
2017-12-11 17:20 ` Alistair Francis
2017-12-11 19:17 ` Peter Korsgaard
2017-12-09 21:30 ` [Buildroot] [PATCH 6/9] zynq_zc706: linux: bump to xilinx-v2017.3 (based on 4.9) Luca Ceresoli
2017-12-11 17:20 ` Alistair Francis
2017-12-11 19:20 ` Peter Korsgaard
2017-12-09 21:30 ` [Buildroot] [PATCH 7/9] zynq_zc706: u-boot: bump to xilinx-v2017.3 Luca Ceresoli
2017-12-11 17:20 ` Alistair Francis
2017-12-11 19:20 ` Peter Korsgaard
2017-12-09 21:30 ` [Buildroot] [PATCH 8/9] boards/zynq: rename the DTB to be loaded by U-Boot Luca Ceresoli
2017-12-11 21:37 ` Peter Korsgaard
2017-12-09 21:30 ` [Buildroot] [PATCH 9/9] boards/zynq: use genimage to generate a bootable SD card image Luca Ceresoli
2017-12-11 21:40 ` Peter Korsgaard [this message]
2017-12-12 8:24 ` Luca Ceresoli
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=87fu8huend.fsf@dell.be.48ers.dk \
--to=peter@korsgaard.com \
--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