mirror of
https://github.com/tihmstar/futurerestore.git
synced 2024-12-22 17:35:29 +00:00
fixed 64bit device detection
This commit is contained in:
parent
7152d931c9
commit
58baea2135
|
@ -69,9 +69,6 @@ futurerestore::futurerestore(bool isUpdateInstall) : _isUpdateInstall(isUpdateIn
|
||||||
|
|
||||||
struct stat st{0};
|
struct stat st{0};
|
||||||
if (stat(FUTURERESTORE_TMP_PATH, &st) == -1) __mkdir(FUTURERESTORE_TMP_PATH, 0755);
|
if (stat(FUTURERESTORE_TMP_PATH, &st) == -1) __mkdir(FUTURERESTORE_TMP_PATH, 0755);
|
||||||
if (!is_image4_supported(_client)){
|
|
||||||
info("[INFO] 32bit device detected\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
//tsschecker nocache
|
//tsschecker nocache
|
||||||
nocache = 1;
|
nocache = 1;
|
||||||
|
@ -80,7 +77,13 @@ futurerestore::futurerestore(bool isUpdateInstall) : _isUpdateInstall(isUpdateIn
|
||||||
|
|
||||||
bool futurerestore::init(){
|
bool futurerestore::init(){
|
||||||
if (_didInit) return _didInit;
|
if (_didInit) return _didInit;
|
||||||
return _didInit = (check_mode(_client) != MODE_UNKNOWN);
|
_didInit = (check_mode(_client) != MODE_UNKNOWN);
|
||||||
|
if (!(_client->image4supported = is_image4_supported(_client))){
|
||||||
|
info("[INFO] 32bit device detected\n");
|
||||||
|
}else{
|
||||||
|
info("[INFO] 64bit device detected\n");
|
||||||
|
}
|
||||||
|
return _didInit;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t futurerestore::getDeviceEcid(){
|
uint64_t futurerestore::getDeviceEcid(){
|
||||||
|
|
Loading…
Reference in a new issue