Skip to content

uvaxut/OrangePI-Lite2-Boot-From-SPIFLASH

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Small howto

For Orange Pi Lite 2 boards

Build docker

cd orangepilite2
docker build \
    -t uboot_builder .

Copy u-boot spi image

cd orangepilite2
docker run --rm \
    --mount type=bind,source="$(pwd)"/output,target=/output \
    uboot_builder \
    cp /u-boot-sunxi-with-spl.bin /output

ls -al ./output

For Orange Pi PC boards

Build docker

cd orangepipc
docker build \
    -t uboot_builder .

Copy u-boot spi image

cd orangepipc 
docker run --rm \
    --mount type=bind,source="$(pwd)"/output,target=/output \
    uboot_builder \
    cp /u-boot-sunxi-with-spl.bin /output

ls -al ./output

For Orange Pi Zero Plus boards

Build docker

cd orangepizeroplus
docker build \
    -t uboot_builder .

Copy u-boot spi image

cd orangepizeroplus
docker run --rm \
    --mount type=bind,source="$(pwd)"/output,target=/output \
    uboot_builder \
    cp /u-boot-sunxi-with-spl.bin /output

ls -al ./output

About

Dockerfile to build u-boot image

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 100.0%