diff options
author | Martin Szulecki | 2010-07-14 04:13:37 +0200 |
---|---|---|
committer | Martin Szulecki | 2010-07-14 04:13:37 +0200 |
commit | 50c1616ff66ccb4e674405659cb2e6f8207bc915 (patch) | |
tree | e1aaa4a7c9dec9d02fc6956b2c0bc94e7b8b8471 /src/ipsw.h | |
parent | 38b8439c0b9b4b64aae1c812da322146d0843446 (diff) | |
download | idevicerestore-50c1616ff66ccb4e674405659cb2e6f8207bc915.tar.gz idevicerestore-50c1616ff66ccb4e674405659cb2e6f8207bc915.tar.bz2 |
Refactor tss request requirements to work with iPhone 3G and iOS 4
This gets rid of the device model checking code and allows
devices like the iPhone 3G to get shsh blobs as required by iOS 4.
The requirement if the components need to be signed is determined
by which kind of manifest filename is within the IPSW.
Diffstat (limited to 'src/ipsw.h')
-rw-r--r-- | src/ipsw.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -38,7 +38,7 @@ typedef struct { } ipsw_file; int ipsw_extract_to_memory(const char* ipsw, const char* infile, char** pbuffer, uint32_t* psize); -int ipsw_extract_build_manifest(const char* ipsw, plist_t* buildmanifest); +int ipsw_extract_build_manifest(const char* ipsw, plist_t* buildmanifest, int *tss_enabled); void ipsw_free_file(ipsw_file* file); #ifdef __cplusplus |