35635cdc5b
This patch adds a new defconfig for the Star64 board made by Pine64. This board is based on the Starfive JH7110 RISC-V 64 bits SoC. See: https://wiki.pine64.org/wiki/STAR64. This patch uses a custom Kernel and U-Boot made for this board. The SPL has to be signed with the Starfive SPL-Tool which is a software provided by the vendor to get the necessary headers on the SPL. The image configuration is based on the work done by Ivan Velickovic <i.velickovic@unsw.edu.au>. Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
33 lines
688 B
Plaintext
33 lines
688 B
Plaintext
Pine64 Star64
|
|
=============
|
|
|
|
The Star64 is a low-cost RISC-V 64-bit based platform, powered by a
|
|
Starfive JH7110 processor.
|
|
|
|
https://wiki.pine64.org/wiki/STAR64
|
|
|
|
How to build
|
|
============
|
|
|
|
$ make pine64_star64_defconfig
|
|
$ make
|
|
|
|
How to write the SD card
|
|
========================
|
|
|
|
Once the build process is finished you will have an image called "sdcard.img"
|
|
in the output/images/ directory.
|
|
|
|
Copy the bootable "sdcard.img" onto an SD card with "dd":
|
|
|
|
$ sudo dd if=output/images/sdcard.img of=/dev/sdX conv=fdatasync
|
|
|
|
Preparing the board
|
|
===================
|
|
|
|
Connect a TTL UART cable to pin 6 (GND), 8 (TX) and 10 (RX).
|
|
|
|
Insert your SD card.
|
|
|
|
Power-up the board using a 12V power supply.
|