Edition | Build | Size | Version | Stars | Pulls | Docker Hub |
---|---|---|---|---|---|---|
x86-64 | ufpc | |||||
arm7hf | ufpcarm |
See issues
- build image with stock fpc 3.0.0
- download and prepare ultibo fpc and core
- compile ultibo fpc as x86-64
- compile ultibo fpc as x86-64 cross arm
- compile ultibo rtl/packages/etc
- compile ultibohub/Examples for rpi models
- test kernel7.img using rpi3b
- configure and compile qemu targets of ultibohub/Examples
- test kernel.bin using qemu
- test the arm7hf edition (ufpcarm) on raspbian - docker install failed - will retry with fresh raspbian
Install docker. The docker run command will pull the docker image from docker hub the first time it is used.
- ufpc is for an x86-64 host
# (edit rpi2 project.lpr in current directory)
docker run --rm -v $(pwd):/workdir markfirmware/ufpc \
-B -Tultibo -O2 -Parm -CpARMV7A -WpRPI2B @/root/ultibo/core/fpc/bin/rpi2.cfg \
project.lpr
- ufpcarm is for an arm7hf host
# (edit rpi2 project.lpr in current directory)
docker run --rm -v $(pwd):/workdir markfirmware/ufpcarm \
-B -Tultibo -O2 -Parm -CpARMV7A -WpRPI2B @/root/ultibo/core/fpc/bin/rpi2.cfg \
project.lpr
- include lazarus?
That is all