Lichee Pi Nano (English article, old site) is a very small single-board computer that is about the size of an SD card. It can run Linux. There is a good amount of official documentation on the original manufacturer site (in Chinese, but easily readable thanks to Google Translate). However, the tooling used to build the full card/SPI-Flash images is mostly made up of custom shell scripts, and is not always easy to extend or maintain.
This repository contains a Buildroot config extension that allows all of those build steps to be handled via a single Buildroot make
command. That means fully building the U-Boot image, Linux kernel, the rootfs image and the final partitioned binary image for flashing onto the bootable micro SD card (I did not finish the work on SPI-Flash boot image builds yet).
All the configuration is packaged as a BR2_EXTERNAL
Buildroot extension to avoid the need to fork the entire Buildroot repo. You can fork this project or integrate it as a Git subtree to customize your own OS build on top of it as needed.
The build can be run inside Docker on Windows/Mac, or directly in your Linux host as well.
The config files should be reasonably readable, e.g. here is the main Buildroot defconfig file: configs/licheepi_nano_defconfig. You will most likely need to update the Linux DTS (device tree) file to match your board usage, for which you can edit suniv-f1c100s-licheepi-nano-custom.dts. Sample peripheral descriptions are listed in comments there - uncomment and modify what you need. This custom DTS file includes the original suniv-f1c100s-licheepi-nano.dts in the kernel tree, so you don't need to fork the kernel or duplicate code to make your local customizations. I may also set up an equivalent customizable U-Boot DTS file in the future.
More customization is available by changing other files in the board
and configs
directories, such as the kernel boot command, kernel defconfig and SD image layout. There is also a preconfigured rootfs overlay folder, ready to populate.
This effort heavily borrowed from the work done by the FunKey Zero project: https://github.com/Squonk42/buildroot-licheepi-zero/. The latter targets Lichee Pi Zero, a sibling board to the Nano, but I was able to adapt it for use with Nano, and also converted the content to be a BR2_EXTERNAL
extension rather than a full Buildroot fork.
Also check out https://github.com/florpor/licheepi-nano: that work was done prior to mine but I somehow didn't find it until later, oops.
For Docker-based builds the needed prerequisites are installed automatically. Multi-stage syntax support is needed (available since Docker Engine 17.05 release in 2017). BuildKit support is optional for extra convenience.
For manual build in your Linux host, ensure you have:
- OS equivalent to Ubuntu Bionic or newer
- Buildroot 2020.02 (see project downloads page)
Buildroot takes care of downloading any further dependencies. Please note that I have not tested Buildroot versions other than 2020.02
.
The easiest way is using Docker (on Windows/MacOS/Linux).
First, clone this repo to your host:
git clone [email protected]:unframework/licheepi-nano-buildroot.git
Run the image build command:
docker build --output type=tar,dest=- . | tar x -C dist
The full build may take up to an hour, depending on your host machine.
The built image will be available in dist/sdcard.img
- you can write this to your bootable micro SD card (see below).
This assumes you are in your home folder.
Download Buildroot and extract it to ~/buildroot-2020.02
.
Clone this repo to your host in a separate folder than Buildroot:
git clone [email protected]:unframework/licheepi-nano-buildroot.git ~/licheepi-nano-buildroot
# also ensure scripts are executable
chmod a+x ~/licheepi-nano-buildroot/board/licheepi_nano/*.sh
Merge toolchain settings from licheepi_nano_sdk_defconfig
helper into main licheepi_nano_defconfig
. This is unfortunately complex because I split out the two as separate Docker build stages.
Install build dependencies. For example, on Ubuntu:
apt-get update
apt-get install -qy \
bc \
bison \
build-essential \
bzr \
chrpath \
cpio \
cvs \
devscripts \
diffstat \
dosfstools \
fakeroot \
flex \
gawk \
git \
libncurses5-dev \
libssl-dev \
locales \
python3-dev \
python3-distutils \
python3-setuptools \
rsync \
subversion \
swig \
texinfo \
unzip \
wget \
whiptail
Set locale for the toolchain:
update-locale LC_ALL=C
Go inside the Buildroot folder and run configuration tasks (BR2_EXTERNAL
envvar points to the cloned folder of this repo):
cd ~/buildroot-2020.02
BR2_EXTERNAL=~/licheepi-nano-buildroot make licheepi_nano_defconfig
# optional - change/add packages as needed, but don't forget to commit your saved defconfig in Git
make menuconfig
Run the build!
make
Note: you may try using an external toolchain to speed up the build, but I did not have much success with that (tried Linaro GCC 7.5, issue with bundled glibc?).
A successful build will produce an output/images
folder inside Buildroot folder. That folder contains a file sdcard.img
that can now be written to the bootable SD card.
On Windows, use Rufus or Balena Etcher to write the bootable SD card image (sdcard.img
). Typical image size is at least 18-20Mb, which should fit on most modern SD cards.
Example command to write image to SD card on Linux host:
sudo dd if=output/images/sdcard.img of=DEVICE # e.g. /dev/sd?, etc
Then, plug in the micro SD card into your Lichee Nano and turn it on!
For faster iteration without restarting the entire build process from scratch, use Dockerfile.dev
. It pulls in an existing Docker image (pre-built by repo maintainer), re-copies the defconfig and board folder from local workspace into it, and triggers a Buildroot rebuild.
The pre-built base image already has a lot of the intermediate compiled files, so the rebuild should be much faster (though sometimes Buildroot needs extra nudges to notice config changes). This is helpful when tweaking and iterating on Linux configuration, target packages, etc.
Dev mode build command:
docker build -f Dockerfile.dev --output type=tar,dest=- . | tar x -C dist
Here is how the base image is generated (these commands are just for the repo maintainer):
docker build -f Dockerfile --target main -t unframework/licheepi-nano-buildroot:latest -t unframework/licheepi-nano-buildroot:$(git rev-parse --short HEAD) .
docker push unframework/licheepi-nano-buildroot:latest unframework/licheepi-nano-buildroot:$(git rev-parse --short HEAD)
The built kernel is a Linux fork based off 5.11, with hardware-specific customizations. I have cherry-picked the original customizations from @Lichee-Pi Linux repo nano-5.2-tf branch and nano-5.2-flash branch (both based off Linux version 5.2) and added tiny fixes due to newer kernel version.
The built U-Boot is a fork based off v2021.01 with hardware-specific customizations, which I ported over from the original @Lichee-Pi v2018.01 fork referenced in the docs. By the way, the latter is actually itself a rebase of an earlier repo branch maintained by @Icenowy. Splash screen support is not yet ported.
By default, the suniv-f1c100s-licheepi-nano.dts
device tree expects a 800x480 TFT screen to be plugged into the 40-pin flex-PCB connector on the board. You can change this to be a 480x272 TFT screen - simply uncomment the panel
block at line 14 in suniv-f1c100s-licheepi-nano-custom.dts. This will override the compatible
string for the driver and trigger the lower resolution (see also original docs).