kumquat-buildroot/board/olimex/stmp1_olinuxino
Thomas Petazzoni 97fc9b2a7f board/*/genimage.cfg: use partition-table-type = "gpt"
The gpt = "true" form is deprecated in genimage, use
partition-table-type = "gpt" instead.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-07-23 15:36:21 +02:00
..
rootfs_overlay/boot/extlinux
genimage.cfg board/*/genimage.cfg: use partition-table-type = "gpt" 2022-07-23 15:36:21 +02:00
linux.config
readme.txt

STMP157-OLinuXino-LIME2

Intro
=====

These are open hardware boards, all based on the STmicro STMP157 SoC.

for more details about the board see the following pages:
 - https://www.olimex.com/Products/OLinuXino/open-source-hardware
 - https://www.olimex.com/Products/OLinuXino/STMP1/STMP157-OLinuXino-LIME2/

The following defconfigs are available:
 - olimex_stmp157_olinuxino_lime_defconfig

How to build it
===============

Configure Buildroot:

    $ make <board>_defconfig

Compile everything and build the rootfs image:

    $ make

Result of the build
-------------------

After building, you should get a tree like this:

    output/images/
    +-- rootfs.ext2
    +-- rootfs.ext4 -> rootfs.ext2
    +-- sdcard.img
    +-- stm32mp1xx-olinuxino-lime.dtb
    +-- u-boot-spl.stm32
    +-- u-boot.img
    `-- zImage


How to write the 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 a uSD
card:

    # dd if=output/images/sdcard.img of=/dev/sdX

Where 'sdX' is the device node of the uSD.

Eject the SD card, insert it in the STMP1-OLinuXino board, and power it up.