From 59f52bcdd820a1e2ba77a720c1e2c33ed1db2329 2018-11-17 23:49:01 From: Unknown Date: 2018-11-17 23:49:01 Subject: [PATCH] this shouldn't be part of this pull req --- diff --git a/bootstrap.d/41-uboot.sh b/bootstrap.d/41-uboot.sh index 992e532..67c4657 100644 --- a/bootstrap.d/41-uboot.sh +++ b/bootstrap.d/41-uboot.sh @@ -66,20 +66,6 @@ if [ "$ENABLE_UBOOT" = true ] ; then fi fi - if [ "$SET_ARCH" = 64 ] ; then - echo "Setting up config.txt to boot 64bit uboot" - - printf "\n# 64bit-mode" >> "${BOOT_DIR}/config.txt" - printf "\n# arm_control=0x200 is deprecated https://www.raspberrypi.org/documentation/configuration/config-txt/misc.md" >> "${BOOT_DIR}/config.txt" - printf "\narm_64bit=1" >> "${BOOT_DIR}/config.txt" - sed -i "s|bootz|booti|g" "${BOOT_DIR}/uboot.mkimage" - fi - - # instead of sd, boot from usb device - if [ "$ENABLE_UBOOTUSB" = true ] ; then - sed -i "s|mmc|usb|g" "${BOOT_DIR}/uboot.mkimage" - fi - # Set mkfile to use the correct dtb file sed -i "s/^\(setenv dtbfile \).*/\1${DTB_FILE}/" "${BOOT_DIR}/uboot.mkimage"