This repository has been archived on 2024-06-02. You can view files and clone it, but cannot push or open issues or pull requests.
upsilon-docker/Makefile

110 lines
3.8 KiB
Makefile
Raw Normal View History

2023-05-30 16:10:03 -04:00
.PHONY: images f4pga buildroot litex clone help attach hardware-image \
buildroot-image litex-f4pga-image hardware-container \
2023-06-02 13:45:35 -04:00
upsilon.tar.gz upsilon-opensbi.tar.gz
2023-05-26 15:00:46 -04:00
2023-05-30 16:10:03 -04:00
###### Images
2023-06-02 13:45:35 -04:00
images: hardware-image buildroot-image opensbi-image
2023-05-26 15:00:46 -04:00
hardware-image:
docker build -f scripts/Dockerfile.litex_f4pga -t "upsilon-litex-f4pga-env" .
2023-05-29 14:39:02 -04:00
buildroot-image: buildroot.tar.gz
docker build -f scripts/Dockerfile.buildroot -t "upsilon-buildroot-env" .
2023-05-29 14:39:02 -04:00
2023-06-02 13:45:35 -04:00
opensbi-image: opensbi.tar.gz
docker build -f scripts/Dockerfile.opensbi -t "upsilon-opensbi-env" .
2023-05-30 16:10:03 -04:00
###### Containers
2023-05-26 17:09:30 -04:00
2023-06-02 13:45:35 -04:00
### Hardware container
2023-05-30 16:10:03 -04:00
hardware-container:
docker run -d --name upsilon-hardware-container upsilon-litex-f4pga-env /bin/sh -c 'while true; do sleep 2; done'
2023-06-02 13:45:35 -04:00
hardware-container-copy: upsilon-hardware.tar.gz
# XXX: this always fails if there are very high UIDs, but the
# file is copied successfully.
-docker cp upsilon-hardware.tar.gz upsilon-hardware-container:/home/user/upsilon-hardware.tar.gz
2023-05-30 16:10:03 -04:00
hardware-container-shell:
docker exec -ti upsilon-hardware-container /bin/bash -l
hardware-container-clean:
-docker container stop upsilon-hardware-container
-docker container rm upsilon-hardware-container
2023-05-26 17:09:30 -04:00
2023-06-02 13:45:35 -04:00
### OpenSBI Container
opensbi-container:
docker run -d --name upsilon-opensbi-container upsilon-opensbi-env /bin/sh -c 'while true; do sleep 2; done'
opensbi-container-copy: upsilon-opensbi.tar.gz
2023-06-02 16:02:45 -04:00
-docker cp upsilon-opensbi.tar.gz upsilon-opensbi-container:/home/user/upsilon-opensbi.tar.gz
opensbi-container-execute:
docker exec -ti upsilon-opensbi-container /bin/bash -c ' \
2023-06-02 16:16:13 -04:00
tar -xvf upsilon-opensbi.tar.gz && \
cd opensbi && \
make CROSS_COMPILE=riscv64-linux-gnu- PLATFORM=litex/vexriscv \
2023-06-02 16:02:45 -04:00
'
2023-06-02 13:45:35 -04:00
opensbi-container-clean:
2023-06-02 16:02:45 -04:00
-docker container stop upsilon-opensbi-container
-docker container rm upsilon-opensbi-container
2023-06-02 13:45:35 -04:00
2023-06-02 16:16:13 -04:00
### Buildroot Container
buildroot-container:
docker run -d --name upsilon-buildroot-container upsilon-buildroot-env /bin/sh -c 'while true; do sleep 2; done'
buildroot-container-copy: upsilon-buildroot.tar.gz
-docker cp upsilon-buildroot.tar.gz upsilon-buildroot-container:/home/user/upsilon-buildroot.tar.gz
buildroot-container-execute:
docker exec -ti upsilon-buildroot-container /bin/bash -c ' \
tar -xvf upsilon-buildroot.tar.gz && \
cd buildroot && \
make BR2_EXTERNAL=../upsilon/buildroot litex_vexriscv_defconfig && \
make '
buildroot-container-clean:
-docker container stop upsilon-buildroot-container
-docker container rm upsilon-buildroot-container
2023-05-30 16:10:03 -04:00
###### External projects
2023-05-26 17:09:30 -04:00
2023-06-02 13:45:35 -04:00
clone: f4pga buildroot litex opensbi
2023-05-26 15:00:46 -04:00
f4pga:
if [ ! -d 'f4pga' ]; then \
git clone https://github.com/chipsalliance/f4pga; \
fi
cd f4pga && git checkout main && git pull && \
2023-05-30 16:10:03 -04:00
git checkout -B upsilon_stable 835a40534f9efd70770d74f56f25fef6cfc6ebc6 \
tar -czvf f4pga.tar.gz f4pga
2023-05-26 15:00:46 -04:00
buildroot:
if [ ! -d 'buildroot' ]; then \
git clone https://git.buildroot.org/buildroot; \
fi
cd buildroot && git checkout master && git pull && \
git checkout -B upsilon_stable 2023.02.1
tar -czvf buildroot.tar.gz buildroot/
litex:
if [ ! -d 'litex' ]; then \
git clone https://github.com/enjoy-digital/litex; \
fi
cd litex && git checkout master && git pull && \
git checkout -B upsilon_stable c6ccb626e88168045edacced3743f6bd98746742
2023-05-30 16:10:03 -04:00
2023-06-02 13:45:35 -04:00
upsilon-hardware.tar.gz:
tar -czvf upsilon-hardware.tar.gz upsilon/firmware/
2023-06-02 16:16:13 -04:00
upsilon-buildroot.tar.gz:
tar -czvf upsilon-buildroot.tar.gz upsilon/buildroot/
2023-06-02 13:45:35 -04:00
# This script only works for GNU tar. It renames the extraction directory.
upsilon-opensbi.tar.gz:
tar -czvf upsilon-opensbi.tar.gz upsilon/opensbi/ --transform 's|upsilon/opensbi|opensbi/platform|'
opensbi:
if [ ! -d 'opensbi' ]; then \
git clone https://github.com/riscv-software-src/opensbi; \
fi
cd opensbi && git checkout master && git pull && \
git checkout -B upsilon_stable v1.2
opensbi.tar.gz:
tar -czvf opensbi.tar.gz opensbi/