View Single Post
Old 12-02-2023, 11:00 AM   #1191
mergen3107
Wizard
mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.mergen3107 ought to be getting tired of karma fortunes by now.
 
mergen3107's Avatar
 
Posts: 1,099
Karma: 4234828
Join Date: Feb 2012
Location: Cape Canaveral
Device: Kindle Scribe
The other check on /etc/uks.sqsh is OK, it is root:root
Code:
if [ -f "${ROOT}/etc/uks.sqsh" ] && [ -f "${MKK_PERSISTENT_STORAGE}/updater_keys.sqsh" ] ; then
	# Check it.
	if [ "$(md5sum "${ROOT}/etc/uks.sqsh" | awk '{ print $1; }')" != "f62830065dd99921c42c90f6f8347bf5" ] ; then
		# Unknown (?!) jailbreak keystore, install it
		install_touch_update_key_squash
	fi
	if [ ! -O "${ROOT}/etc/uks.sqsh" ] || [ ! -G "${ROOT}/etc/uks.sqsh" ] ; then
		# Not our own? Make it so!
		install_touch_update_key_squash
	fi
fi
mergen3107 is offline   Reply With Quote