Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/images/raspberry-pi-hypriot64/Dockerfile.dapper
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ENV KERNEL_URL=https://github.com/burmilla/os-rpi-kernel/releases/download/v5.10
ENV BOOTLOADER_URL=https://github.com/burmilla/os-rpi-kernel/releases/download/v5.10.1-burmilla/rpi-bootloader.tar.gz

RUN curl -fL ${KERNEL_URL} > /source/assets/kernel.tar.gz
RUN curl -fL ${BOOTLOADER_URL} > /source/assets/rpi-bootfiles.tar.gz
RUN curl -fL ${BOOTLOADER_URL} > /source/assets/rpi-bootloader.tar.gz

WORKDIR /source
CMD ["./scripts/build.sh"]
2 changes: 1 addition & 1 deletion scripts/images/raspberry-pi-hypriot64/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ echo "RancherOS: root partition" > build/root/root.txt
#- doing this on a local folder keeps our resulting image clean (no dirty blocks from a delete)
mkdir -p build/basefs
tar -C build/basefs -zxvf build/kernel.tar.gz
tar -C build/basefs -zxvf build/rpi-bootfiles.tar.gz
tar -C build/basefs -zxvf build/rpi-bootloader.tar.gz

# populate kernel, bootloader and RancherOS rootfs
cp -R build/basefs/* build/root
Expand Down