X-Git-Url: https://git.saurik.com/cydia.git/blobdiff_plain/9b083d0312cf210e09f34825f11b63badf0494aa..09e03d2385c301e68025da688831f50dd2e3734d:/Library/firmware.sh diff --git a/Library/firmware.sh b/Library/firmware.sh index 9326842d..f7479ba8 100755 --- a/Library/firmware.sh +++ b/Library/firmware.sh @@ -8,7 +8,7 @@ shopt -s nullglob version=$(sw_vers -productVersion) cpu=$(uname -p) -if [[ ${cpu} == arm ]]; then +if [[ ${cpu} == arm || ${cpu} == arm64 ]]; then data=/var/lib/dpkg model=hw.machine arch=iphoneos-arm @@ -41,6 +41,7 @@ Installed-Size: 0 Architecture: ${arch} Version: ${version} Description: ${description} +Maintainer: Jay Freeman (saurik) Tag: role::cydia EOF @@ -49,6 +50,11 @@ EOF } # }}} +output=$(mktemp "${data}"/status-tmp.XXXXXX) +chmod 644 "${output}" +xxxxxx=${output##*/status-tmp.} +rm -f "${data}"/status-tmp.!("${xxxxxx}") + { # Delete Old Packages {{{ @@ -87,21 +93,36 @@ EOF fi # }}} - if [[ ${cpu} == arm ]]; then - pseudo "firmware" "${version}" "almost impressive Apple frameworks" + if [[ ${cpu} == arm || ${cpu} == arm64 ]]; then + pseudo "firmware" "${version}" "almost impressive Apple frameworks" "iOS Firmware" + + while [[ 1 ]]; do + gssc=$(gssc 2>&1) + if [[ ${gssc} != *'(null)'* ]]; then + break + fi + sleep 1 + done - gssc 2>&1 | sed -re ' + echo "${gssc}" | sed -re ' /^ [^ ]* = [0-9.]*;$/ ! d; s/^ ([^ ]*) = ([0-9.]*);$/\1 \2/; - s/([A-Z])/-\L\1/g; s/^"([^ ]*)"/\1/; + s/([A-Z])/-\L\1/g; + s/^"([^ ]*)"/\1/; s/^-//; / 0$/ d; - ' | while read -r name value; do - pseudo "gsc.${name}" "${value}" "virtual GraphicsServices dependency" - done + ' | while read -r name value; do case "${name}" in + (ipad) for name in ipad wildcat; do + pseudo "gsc.${name}" "${value}" "this device has a very large screen" "iPad" + done;; + + (*) + pseudo "gsc.${name}" "${value}" "virtual GraphicsServices dependency" + ;; + esac; done fi - if [[ ${cpu} == arm ]]; then + if [[ ${cpu} == arm || ${cpu} == arm64 ]]; then os=ios else os=macosx @@ -118,14 +139,16 @@ EOF pseudo "cy+kernel.$(lower <<<$(sysctl -n kern.ostype))" "$(sysctl -n kern.osrelease)" "virtual kernel dependency" -} >"${status}"_ + pseudo "cy+lib.corefoundation" "$(/usr/libexec/cydia/cfversion)" "virtual corefoundation dependency" + +} >"${output}" -mv -f "${status}"{_,} +mv -f "${output}" "${status}" -if [[ ${cpu} == arm ]]; then +if [[ ${cpu} == arm || ${cpu} == arm64 ]]; then if [[ ! -h /User && -d /User ]]; then cp -afT /User /var/mobile fi && rm -rf /User && ln -s "/var/mobile" /User - echo 3 >/var/lib/cydia/firmware.ver + echo 6 >/var/lib/cydia/firmware.ver fi