Linux systems for LuckFox Pico series, including Pico Mini b, Pico Plus and Pico Pro Max (all models with SPI flash).
Currently only Alpine Linux is available.
Check out Github Actions Artifacts for latest Alpine Linux images.
See
the official docs
for instructions on flashing update.img
to your Pico board.
For example, to flash Pico Pro Max boards, connect the board to your computer while pressing BOOT key, then execute
sudo ./upgrade_tool uf pico-pro-max-sysupgrade.img
The default username/password is root:luckfox
.
UART serial debug port is enabled,
and sshd
server is installed and enabled as well.
To connect to it via ethernet, simply do
ssh root@<ip_of_pico_board>
This system image has RNDIS enabled for all boards. To connect to your Pico through RNDIS, check out the official guide.
The board's static IP is 172.32.0.93
.
Below is a brief guide to connect via RNDIS on Linux:
ip link # obtain network device name of pico
sudo ip addr add 172.32.0.100/16 dev <network_device_of_pico>
ping 172.32.0.93 # it works!
Just fork this repo and trigger Github Actions after you made your changes!
For example,
- To add software packages, edit
bootstrap.sh
. - To change files in the system image, edit
overlay/
.