This repository contains Buildroot 2023.05 configured for the Lichee Pi Zero development board, based on the Allwinner V3s (ARM Cortex-A7) SoC.
my-buildroot-project/
├── buildroot/ # Buildroot 2023.05 source
├── configs/ # (optional) Custom configs will go here
└── board/licheepi-zero/ # (optional) Board-specific files
| Tool | Version |
|---|---|
| Host OS | Linux (Ubuntu recommended) |
| GCC Toolchain | Installed by Buildroot |
| Dependencies | git build-essential ncurses-dev bison flex python3 |
| SD Card | 8GB or more |
sudo apt update
sudo apt install git build-essential bc bison flex libssl-dev ncurses-dev python3 wget cpio unzipcd buildroot
make distclean
make licheepi_zero_defconfig
make -j$(nproc)Located in:
buildroot/output/images/
| File | Description |
|---|---|
rootfs.ext4 |
Root filesystem |
u-boot-sunxi-with-spl.bin |
Bootloader |
zImage |
Kernel |
sun8i-v3s-licheepi-zero.dtb |
Device Tree |
cd buildroot/output/images/
sudo dd if=u-boot-sunxi-with-spl.bin of=/dev/sdX bs=1024 seek=8Partition layout:
| Partition | Format | Purpose |
|---|---|---|
| p1 | FAT32 | Kernel + DTB |
| p2 | EXT4 | Rootfs |
- Baud: 115200
- Command:
picocom -b 115200 /dev/ttyUSB0Login:
root
- Buildroot Manual: https://buildroot.org/downloads/manual/manual.html
- Lichee Pi Zero Docs: https://licheepizero.readthedocs.io
- Linux-Sunxi: https://linux-sunxi.org