1
0
mirror of https://github.com/rancher/os.git synced 2025-09-18 08:06:48 +00:00

Rename bootfiles to bootloader (#69)

It is downloading the bootloader, not the bootfiles.
This commit is contained in:
He Liu
2021-03-25 21:55:18 -07:00
committed by GitHub
parent 2ab4b23a5f
commit 791c924cd9
2 changed files with 2 additions and 2 deletions

View File

@@ -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"]

View File

@@ -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