diff --git a/scripts/images/raspberry-pi-hypriot64/Dockerfile.dapper b/scripts/images/raspberry-pi-hypriot64/Dockerfile.dapper index ddd5866d1..3baadce51 100644 --- a/scripts/images/raspberry-pi-hypriot64/Dockerfile.dapper +++ b/scripts/images/raspberry-pi-hypriot64/Dockerfile.dapper @@ -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"] diff --git a/scripts/images/raspberry-pi-hypriot64/scripts/build.sh b/scripts/images/raspberry-pi-hypriot64/scripts/build.sh index b596a0460..50dadb9e0 100755 --- a/scripts/images/raspberry-pi-hypriot64/scripts/build.sh +++ b/scripts/images/raspberry-pi-hypriot64/scripts/build.sh @@ -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