Merge pull request #10097 from chewitt/spelling

Rockchip: fix spelling of 'existent' in update script
This commit is contained in:
Rudi Heitbaum 2025-05-29 19:17:48 +10:00 committed by GitHub
commit 7f38ba01fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -51,7 +51,7 @@ fi
cp -p ${SYSTEM_ROOT}/usr/share/bootloader/${dtb} ${BOOT_ROOT} cp -p ${SYSTEM_ROOT}/usr/share/bootloader/${dtb} ${BOOT_ROOT}
echo "done" echo "done"
elif [ "$(grep -c "FDT /${dtb}" ${BOOT_ROOT}/extlinux/extlinux.conf)" -ne 0 ]; then elif [ "$(grep -c "FDT /${dtb}" ${BOOT_ROOT}/extlinux/extlinux.conf)" -ne 0 ]; then
non_existend_dtb="${dtb}" non_existent_dtb="${dtb}"
fi fi
fi fi
done done
@ -68,8 +68,8 @@ fi
mount -o remount,ro ${BOOT_ROOT} mount -o remount,ro ${BOOT_ROOT}
# warning if device tree was not updated # warning if device tree was not updated
if [ -n "${non_existend_dtb}" ]; then if [ -n "${non_existent_dtb}" ]; then
echo "The device tree ${non_existend_dtb} your installation uses does not exist in this update package." echo "The device tree ${non_existent_dtb} your installation uses does not exist in this update package."
echo "The updated system will continue to use the device tree from the previous system and your installation might be broken." echo "The updated system will continue to use the device tree from the previous system and your installation might be broken."
echo "Please check documentation to find out which boards are supported by this package." echo "Please check documentation to find out which boards are supported by this package."
sleep 10 sleep 10