summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorPeter Korsgaard <peter@korsgaard.com>2019-09-14 07:56:20 +0200
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2019-09-15 16:00:56 +0200
commit4bed0934bcab9fe5d23b4d300b353d1eb3085025 (patch)
treebc70e50781ca1389cd48fc8c404a5e32658e0715 /board
parent0aa66343184676482b0d77446614e332ee5ccd99 (diff)
configs/lafrite: new defconfig
Add basic support for the Libre Computer "La Frite" SBC. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'board')
-rw-r--r--board/librecomputer/lafrite/genimage.cfg10
-rw-r--r--board/librecomputer/lafrite/overlay/extlinux/extlinux.conf4
-rw-r--r--board/librecomputer/lafrite/readme.txt34
3 files changed, 48 insertions, 0 deletions
diff --git a/board/librecomputer/lafrite/genimage.cfg b/board/librecomputer/lafrite/genimage.cfg
new file mode 100644
index 0000000000..212f829527
--- /dev/null
+++ b/board/librecomputer/lafrite/genimage.cfg
@@ -0,0 +1,10 @@
+image usb.img {
+ hdimage {
+ }
+
+ partition rootfs {
+ partition-type = 0x83
+ image = "rootfs.ext4"
+ size = 512M
+ }
+}
diff --git a/board/librecomputer/lafrite/overlay/extlinux/extlinux.conf b/board/librecomputer/lafrite/overlay/extlinux/extlinux.conf
new file mode 100644
index 0000000000..60aa9d6e70
--- /dev/null
+++ b/board/librecomputer/lafrite/overlay/extlinux/extlinux.conf
@@ -0,0 +1,4 @@
+label linux
+ kernel /boot/Image
+ devicetree /boot/meson-gxl-s805x-libretech-ac.dtb
+ append console=ttyAML0,115200 earlyprintk root=/dev/sda1 rootwait
diff --git a/board/librecomputer/lafrite/readme.txt b/board/librecomputer/lafrite/readme.txt
new file mode 100644
index 0000000000..c439c5e91d
--- /dev/null
+++ b/board/librecomputer/lafrite/readme.txt
@@ -0,0 +1,34 @@
+Intro
+=====
+
+Libre Computer "La Frite" is a low cost SBC based around an Amlogic
+s805x SoC (quad A53), 512MB/1GB DDR4 and a 16MB SPI NOR flash:
+
+https://libre.computer/products/boards/aml-s805x-ac/
+
+How to build it
+===============
+
+Configure Buildroot:
+
+ $ make lafrite_defconfig
+
+Compile everything and build the USB flash drive image:
+
+ $ make
+
+How to write the USB flash drive image
+======================================
+
+Once the build process is finished you will have an image called "usb.img"
+in the output/images/ directory.
+
+Copy the bootable "usb.img" onto a USB flash drive with "dd":
+
+ $ sudo dd if=output/images/usb.img of=/dev/sdX
+
+How to boot
+===========
+
+Insert flash drive to the USB connector furthest away from the IR
+receiver and power up board. The system will boot automatically.