config.sh: Drop Raspberry Pi specific logic

This image description is aimed for Apple Macs, not Raspberry Pi
devices.
This commit is contained in:
Neal Gompa 2022-09-18 12:36:37 -04:00
parent 3d0b7fb9b3
commit 877fb9d3d1

View File

@ -70,20 +70,6 @@ else
systemctl set-default multi-user.target
fi
#======================================
# Setup device firmware
#--------------------------------------
# Find the architecture we are on
arch=$(uname -m)
# Setup Raspberry Pi firmware
if [[ "$arch" == "aarch64" ]]; then
cp -P /usr/share/uboot/rpi_3/u-boot.bin /boot/efi/rpi3-u-boot.bin
cp -P /usr/share/uboot/rpi_4/u-boot.bin /boot/efi/rpi4-u-boot.bin
cp -P /usr/share/uboot/rpi_arm64/u-boot.bin /boot/efi/rpi-u-boot.bin
fi
#======================================
# Import GPG keys
#--------------------------------------