Skip to content

Commit 791c924

Browse files
authored
Rename bootfiles to bootloader (#69)
It is downloading the bootloader, not the bootfiles.
1 parent 2ab4b23 commit 791c924

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/images/raspberry-pi-hypriot64/Dockerfile.dapper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ENV KERNEL_URL=https://github.com/burmilla/os-rpi-kernel/releases/download/v5.10
1414
ENV BOOTLOADER_URL=https://github.com/burmilla/os-rpi-kernel/releases/download/v5.10.1-burmilla/rpi-bootloader.tar.gz
1515

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

1919
WORKDIR /source
2020
CMD ["./scripts/build.sh"]

scripts/images/raspberry-pi-hypriot64/scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ echo "RancherOS: root partition" > build/root/root.txt
5858
#- doing this on a local folder keeps our resulting image clean (no dirty blocks from a delete)
5959
mkdir -p build/basefs
6060
tar -C build/basefs -zxvf build/kernel.tar.gz
61-
tar -C build/basefs -zxvf build/rpi-bootfiles.tar.gz
61+
tar -C build/basefs -zxvf build/rpi-bootloader.tar.gz
6262

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

0 commit comments

Comments
 (0)