Platform Name

sql> select platform_name from v$database;
Linux IA (32-bit)
What's IA in platform name? I hope it's not Itanium ...

Here IA means Intel Architecture,not Itanium:
http://en.wikipedia.org/wiki/IA-32
Werner

Similar Messages

  • Problem Create ANE,ArgumentError: Error #3500: The extension context does not have a method with the name

    I little confuse about build ANE, I already follow all the direction, but the error always #3500 when I try to call the ANE.
    I create ANE using java android.
    The tools I use : Flash Builder running on Win-64 win.7. I think I must straight to the point, here what i made it first step by step;
    1. I create the JAVA application first, with package senigo.extension.android then I create 3 file, Sample.java, SampleContext.java, PassTextFunction.java
    Sample.Java Source Code
    package senigo.extension.android;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    public class Sample implements FREExtension {
      @Override
      public FREContext createContext(String arg0) {
      // TODO Auto-generated method stub
      Log.i("Sample", "createContext");
      return new SampleContext();
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Dispose");
      @Override
      public void initialize() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Initialize");
    SampleContext.Java Source Code
    package senigo.extension.android;
    import java.util.HashMap;
    import java.util.Map;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREFunction;
    public class SampleContext extends FREContext {
      public SampleContext()
      Log.i("SampleContext", "constructor");
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "dispose");
      @Override
      public Map<String, FREFunction> getFunctions() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "getFunctions");
      Map<String, FREFunction> functionMap = new HashMap<String, FREFunction>();
      functionMap.put("passText", new PassTextFunction());
      return functionMap;
    PassTextFunction.Java Source Code
    package senigo.extension.android;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    import com.adobe.fre.FREFunction;
    import com.adobe.fre.FREObject;
    public class PassTextFunction implements FREFunction {
      @Override
      public FREObject call(FREContext arg0, FREObject[] arg1) {
      // TODO Auto-generated method stub
      FREObject result = null;
      try{
      result =  FREObject.newObject("Hello World");
      }catch(Exception e)
      return result;
    after all the file I create the jar file using click right on the tree view >> Export >> Jar File >> Sample.Jar (i already create jar file that just contain the src folder and after i frustrated, i create .jar file contain all the whole project folder but still didn't work out).
    Ok, After that I create project Flex Library Project, That's contain the actionscript to call the native and the extension.xml, here the code.
    Test.as Source Code, FYI : i already create public function and the static function the error still same #3500.
    package senigo.extension.android
      import flash.external.ExtensionContext;
      public class test
      private static var extContext:ExtensionContext = null;
      public function test()
      trace ("Test Constructor");
      if (!extContext)
      initExtension();
      public static function get passText():String
      trace ("Test Pass Text");
      if (!extContext)
      initExtension();
      return extContext.call("passText") as String;
      private static function initExtension():void
      trace ("Vibration Constructor: Create an extension context");
      extContext = ExtensionContext.createExtensionContext("senigo.extension.android", null);
    extension.xml source code
    FYI: in Flex when i put the Native Extension, they said must have Windows-x86 so I already create 3 ANE, that just contain Android-ARM , Contain Android-ARM and Default, Contain Android-ARM,Default and Windows-x86 but the error still same. I didn't got it where is the error.
    <extension xmlns="http://ns.adobe.com/air/extension/3.1">
      <id>senigo.extension.android</id>
      <versionNumber>1.0.0</versionNumber>
      <platforms>
      <platform name="Android-ARM">
      <applicationDeployment>
      <nativeLibrary>Sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      <!-- <platform name="Windows-x86">
      <applicationDeployment>
      <nativeLibrary>sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      -->
       <platform name="default">
    <applicationDeployment/>
    </platform>
      </platforms>
    </extension>
    After I create it, I copy the .swc file and extension file sample with the Sample.jar file.
    I extract the .swc file, copy the library.swf to folder Android-ARM,Default,Windows-86 and I create build.bat that contain the command like this
    adt -package  -storetype PKCS12 -keystore senigo.p12 -storepass l10nk1ng -target ane senigo.extension.android.ane extension.xml -swc AndroidLib.swc -platform Android-ARM -C ./Android-ARM/ . -platform default -C ./default/ .
    the I put the ane to Flex mobile project that I created:
    I run it but got error #3500, I really confuse?? what's wrong with my code? is there something I wrong or I Miss it?
    Please any one help me.. and when is already ane file can I debug it in Flex Mobile Project? I wanna looks the log.i code that i wrote but i confuse how to looking up in flash builder.
    at the end, I wanna said Sorry if my english not very goods, and thanks, because wanna see my problem and thank you very much if You can gave me a solution's

    Alex Rekish wrote:
    Why you comment Windows-x86 in your extension.xml ?
    I think that is a problem. You launch your application on Windows but ANE haven't got Windows-x86 implementation (also you don't include it while packaging). So your application use default implementation. But default implementation don't use any native code and cannot use ExtensionContext. And you got error.
    If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation.
    Thanks for you answer Alex Rekish, Sorry I didn't screen shoot all about the extension.xml. I comment it because the latest ANE that I build is contain Android-ARM and default. so I commented. but I already try it using just ANE that's just contain Android-ARM, with Android-ARM and windows-x86,and Android-ARM, and default, and Android-ARM,default,Windows-x86 the error still the same.
    here the screen shoot, I embeded the ane that's i contain Windows-x86
    in action script test.as I didn't change it anythings, I just play it on extension.xml to build the ane. is there any mistake over there? I interact with your answer that "If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation." I didn't need to user ExtensionContext? is means? in the actionscript? or in extension.xml? can you explained

  • How to use Mysql platform with oracle 9i

    Currently it is only supported in toplink 10x and above, for business reasons we need to use toplink 9i workbench, any help?
    thanks

    I did the following, copied the mysql4.xml onto config/platforms, back ported oracle.toplink.platform.database.MySQL4Platform class
    from toplink 10g, when I open my project I get the following exception, any ideas? thanks a lot,
    Exception Stack:
    ==========
    Exception [TOPLINK-6044] (OracleAS TopLink - 10g (9.0.4.5) (Build 040930)): oracle.toplink.exceptions.QueryException
    Exception Description: The primary key read from the row [DatabaseRow(
         database-platform.name => MySQL4
         database-platform.runtime-platform-class => oracle.toplink.platform.database.MySQL4Platform
         database-platform.supports-native-sequencing => true
         database-platform.database-types => SDKFieldValue(database-type - 32 element(s))
         database-platform.jdbc-mappings => SDKFieldValue(jdbc-mapping - 29 element(s)))] during the execution of the query was detected to be null. Primary keys must not contain null.
    Query: ReadAllQuery(oracle.toplink.workbench.model.db.MWDatabasePlatform)
         at oracle.toplink.exceptions.QueryException.nullPrimaryKeyInBuildingObject(QueryException.java:542)
         at oracle.toplink.internal.descriptors.ObjectBuilder.buildObject(ObjectBuilder.java:262)
         at oracle.toplink.internal.descriptors.ObjectBuilder.buildObjectsInto(ObjectBuilder.java:382)
         at oracle.toplink.internal.queryframework.DatabaseQueryMechanism.buildObjectsFromRows(DatabaseQueryMechanism.java:146)
         at oracle.toplink.queryframework.ReadAllQuery.execute(ReadAllQuery.java:448)
         at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:493)
         at oracle.toplink.queryframework.ReadQuery.execute(ReadQuery.java:125)
         at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:1958)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1086)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:1038)
         at oracle.toplink.publicinterface.Session.readAllObjects(Session.java:2372)
         at oracle.toplink.workbench.persistence.MWDatabasePlatformManager.readPlatforms(MWDatabasePlatformManager.java:80)
         at oracle.toplink.workbench.persistence.MWDatabasePlatformManager.platforms(MWDatabasePlatformManager.java:87)
         at oracle.toplink.workbench.ui.ProjectCreationDialog.getSupportedPlatformNames(ProjectCreationDialog.java:50)

  • I need a sql statment that return the platform on which oracle is installed

    hi all
    in Oracle 10g there is a column in v$database names platform_name that contain the platform name on which oracle is installed.
    do you know how can I check it in oracle 9i/9i ?

    And just to note:
    Sandeep's solution only works if your user has access to the V$DATABASE view which most standard users won't.
    Kamal's solution will work with most users providing they haven't had permission taken away from them in regards the dbms_utility package.

  • To get latest release for particular platform

    Hi,
    I have one table which contains, columns such that one column contains platform name and released versions.
    like linux -> 11.1.0.6.0 , linux -> 10.2.0.5.0 , etc. Here issue is :- versions can be 11.2 or 9.2.0.1.50
    Please, can you help me with any sql procedure who can get versions and format to proper format
    and get latest version for that platform.
    1. 11.1.0.6.0 --> convert to 2 digits --> 11.01.06.00
    2. 11.2 --> complete proper version like --> 11.2.0.0.0 (by appending zeros) --> 11.02.00.00.00
    3. 9.2.0.1.50 --> convert to 2 digits -> 09.02.00.01.50
    Now final output we can trim "." and compare numerically.. like 11010600 with 1102000000 with 0902000150
    Here 2nd no is greatest , hence we can return that for current selected platfrom.
    Or any other simple implementation ?
    Thanks,
    DVS !

    Try this sql query.
    with test
    as
    select '11.1.0.6.0' col1 from dual union all
          select '11.2'from dual union all
          select '9.2.0.1.50' from dual    
    select col1,version, replace(version,'.')
    from (
    select col1, nvl(lpad(substr(col1||'.',1,instr(col1||'.','.',1,1)-1),2,'0'),'00')||'.'||        
                     nvl(lpad(substr(col1||'.',instr(col1||'.','.',1,1)+1,instr(col1||'.','.',1,2)-instr(col1||'.','.',1,1)-1),2,'0'),'00')||'.'||        
                     nvl(lpad(substr(col1||'.',instr(col1||'.','.',1,2)+1,instr(col1||'.','.',1,3)-instr(col1||'.','.',1,2)-1),2,'0'),'00')||'.'||        
                     nvl(lpad(substr(col1||'.',instr(col1||'.','.',1,3)+1,instr(col1||'.','.',1,4)-instr(col1||'.','.',1,3)-1),2,'0'),'00')||'.'||          
                     nvl(lpad(substr(col1||'.',instr(col1||'.','.',1,4)+1,instr(col1||'.','.',1,5)-instr(col1||'.','.',1,4)-1),2,'0'),'00') version
    from test)
    COL1       VERSION        REPLACE(VERSIO                                       
    11.1.0.6.0 11.01.00.06.00 1101000600                                           
    11.2       11.02.00.00.00 1102000000                                           
    9.2.0.1.50 09.02.00.01.50 0902000150

  • How to know the platform through InDesign javascript?

    Hi
    I want to find the platform (Windows/Mac) of the running indesign using javascript,
    eg:  alert(app.name);
    will result "Adobe InDesign"
    like the same way, is there any way to find the platform ?
    please anyone suggest a solution for this
    Thank you!
    Vimal

    You can try
    alert($.os);
    this will return the exact platform name and you can maybe check for the string whether it contains Windows or Mac in it
    -Javed

  • Problems upgrading iPhone 4 to latest iOS (7.1.2)

    Hi, I'm trying to upgrade an iPhone 4 from iOS 6.0.1 to the latest version (7.1.2) but facing the dreaded 3194 error in iTunes. I have tried everything from resetting my hosts file to disabling my firewall and anti-virus but the error just will not go away.. it occurs right at the end of the restore process after the software has been restored and is being verified. I looked through the update log and it seems to be an issue with updating the baseband. Copying a section of the log below.
    This phone has never been jailbroken or modified in any way. Please help!!!
    [20:50:15.0138] update_baseband: requesting baseband firmware data
    [20:50:15.0138] [nand_part_core:INF@3169] next 87 pages of boot blocks written with LLB image of size 133632 bytes
    [20:50:15.0138] [nand_part_core:INF@3172] final 39 pages of boot blocks left unprogrammed
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x95213420
    [20:50:15.0138] recv(13, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] 0: RamrodErrorDomain/3: update_baseband: host failed to provide baseband data
    [20:50:15.0138] unable to convert ramrod error 3
    [20:50:15.0138] restore failed with CFError:
    [20:50:15.0138] 0: AMRestoreErrorDomain/ffffffff: failed to update device firmware
    [20:50:15.0138] 1: AMRestoreErrorDomain/ffffffff: ramrod firmware update failed
    [20:50:15.0138] 2: RamrodErrorDomain/3: update_baseband: host failed to provide baseband data
    [20:50:15.0138] send(13, 31560) failed: Broken pipe
    [20:50:15.0138] error sending final status message: -1
    [20:50:15.0138] waiting for host to acknowledge final status received...
    [20:50:15.0138] recv(13, 4) failed: Connection reset by peer
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] received NULL message from host, expected final status
    Full log as follows:
    2014-07-12 01:48:30.497 [4552:135c]: restore library built Feb 12 2014 at 16:27:17
    2014-07-12 01:48:30.497 [4552:135c]: iTunes: iTunes 11.2.2.3
    2014-07-12 01:48:30.497 [4552:135c]: iTunes: Software payload version: 11D257 (option key)
    2014-07-12 01:48:30.497 [4552:135c]: iTunes: Using MobileRestore state machine
    [20:49:26.0904] Changing state from 'Idle' to 'Restoring'
    [20:49:26.0904] requested restore behavior: Erase
    [20:49:26.0914] requested variant: Erase
    [20:49:26.0914] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:27.0729] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is True
    [20:49:27.0729] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreLogo" Digest = "<CFData 0724AF80 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreDeviceTree" Digest = "<CFData 0724B0A0 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreKernelCache" Digest = "<CFData 0724B208 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreRamDisk" Digest = "<CFData 0724B1C0 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBEC" Digest = "<CFData 0724A050 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBSS" Digest = "<CFData 0724AEF0 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "KernelCache" Digest = "<CFData 0724AE18 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow1" Digest = "<CFData 07249FC0 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow0" Digest = "<CFData 0724AB48 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "LLB" Digest = "<CFData 0724ACF8 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBoot" Digest = "<CFData 0724B3B8 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "DeviceTree" Digest = "<CFData 0724ADD0 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging1" Digest = "<CFData 0724ACB0 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "AppleLogo" Digest = "<CFData 0724AD40 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryPlugin" Digest = "<CFData 0724AAB8 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryFull" Digest = "<CFData 0724A7E8 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging0" Digest = "<CFData 0724A680 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RecoveryMode" Digest = "<CFData 0724A368 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [20:49:27.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: using UniqueBuildID <CFData 07102F28 [731B907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [20:49:27.0749] amai: AMAuthInstallRequestSendSync: SSO function returned NULL, SSO disabled.
    [20:49:27.0759] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Atto/AppData/Local/Temp/Per21A8.tmp/amai/debug/tss-re quest.plist
    [20:49:28.0539] amai: tss_submit_job: HttpQueryInfo returned 200
    [20:49:28.0779] amai: AMAuthInstallRequestSendSync: received tss response (server version: 2.1.0)
    [20:49:28.0779] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Atto/AppData/Local/Temp/Per21A8.tmp/amai/debug/tss-re sponse.plist
    [20:49:28.0899] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "Diags"
    [20:49:28.0929] iBoot build-version = iBoot-1940.10.58
    [20:49:28.0929] iBoot build-style = RELEASE
    [20:49:28.0929] requested restore behavior: Erase
    [20:49:28.0929] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:28.0929] requested restore behavior: Erase
    [20:49:28.0939] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:28.0939] unable to open device_map.txt: No such file or directory
    [20:49:28.0939] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [20:49:28.0939] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [20:49:28.0939] AMDeviceIoControl: GetOverlappedResult failed
    [20:49:28.0939] AMDeviceIoControl: pipe stall
    [20:49:28.0939] USBControlTransfer: error 31, usbd status c0000004
    [20:49:28.0939] command device request for 'getenv radio-error' failed: 2008
    [20:49:28.0939] radio-error not set
    [20:49:28.0939] unable to open device_map.txt: No such file or directory
    [20:49:28.0949] <Recovery Mode Device 06F709F0>: production fused device
    [20:49:28.0949] requested restore behavior: Erase
    [20:49:28.0949] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:28.0949] requested restore behavior: Erase
    [20:49:28.0949] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:28.0949] interface has 1 endpoints, file pipe = 1
    [20:49:28.0949]
    [20:49:28.0949] <Recovery Mode Device 06F709F0>: operation 4 progress -1
    [20:49:29.0009] bootstrapping restore with iBEC
    [20:49:29.0009] requested restore behavior: Erase
    [20:49:29.0019] <Recovery Mode Device 06F709F0>: operation 31 progress -1
    [20:49:30.0019] <Recovery Mode Device 06F709F0>: Recovery mode succeeded
    [20:49:30.0019] Finished Recovery Restore Phase: Successful
    [20:49:30.0529] Recovery mode device disconnected
    [20:49:30.0539] Device removed when in state Restoring, moving device to transition state
    [20:49:30.0539] Changing state from 'Restoring' to 'Transitioning'
    [20:49:30.0539] Creating timer to monitor transition
    [20:49:34.0228] Recovery mode device connected
    [20:49:34.0228] Transitioning device returned, continuing restore.
    [20:49:34.0228] Canceling timer
    [20:49:34.0228] Changing state from 'Transitioning' to 'Restoring'
    [20:49:34.0228] requested restore behavior: Erase
    [20:49:34.0228] requested variant: Erase
    [20:49:34.0238] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBEC" has been previously personalized; skipping it
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    [20:49:35.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [20:49:35.0070] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [20:49:35.0070] iBoot build-version = iBoot-1940.10.58
    [20:49:35.0080] iBoot build-style = RELEASE
    [20:49:35.0080] requested restore behavior: Erase
    [20:49:35.0080] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0080] requested restore behavior: Erase
    [20:49:35.0080] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0080] unable to open device_map.txt: No such file or directory
    [20:49:35.0080] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [20:49:35.0080] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [20:49:35.0080] AMDeviceIoControl: GetOverlappedResult failed
    [20:49:35.0080] AMDeviceIoControl: pipe stall
    [20:49:35.0080] USBControlTransfer: error 31, usbd status c0000004
    [20:49:35.0080] command device request for 'getenv radio-error' failed: 2008
    [20:49:35.0080] radio-error not set
    [20:49:35.0080] unable to open device_map.txt: No such file or directory
    [20:49:35.0090] <Recovery Mode Device 06FA4F28>: production fused device
    [20:49:35.0090] requested restore behavior: Erase
    [20:49:35.0090] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0090] requested restore behavior: Erase
    [20:49:35.0090] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0090] interface has 1 endpoints, file pipe = 1
    [20:49:35.0090]
    [20:49:35.0090] <Recovery Mode Device 06FA4F28>: operation 4 progress -1
    [20:49:35.0140] unable to open device_map.txt: No such file or directory
    [20:49:35.0150] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [20:49:35.0150] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [20:49:35.0150] requested restore behavior: Erase
    [20:49:35.0150] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0150] requested restore behavior: Erase
    [20:49:35.0150] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:35.0150] <Recovery Mode Device 06FA4F28>: operation 42 progress -1
    [20:49:35.0160] requested restore behavior: Erase
    [20:49:35.0160] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:36.0190] <Recovery Mode Device 06FA4F28>: operation 5 progress -1
    [20:49:36.0490] unable to open device_map.txt: No such file or directory
    [20:49:36.0500] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [20:49:36.0500] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [20:49:36.0500] AMDeviceIoControl: GetOverlappedResult failed
    [20:49:36.0500] AMDeviceIoControl: pipe stall
    [20:49:36.0500] USBControlTransfer: error 31, usbd status c0000004
    [20:49:36.0500] command device request for 'getenv ramdisk-delay' failed: 2008
    [20:49:38.0420] <Recovery Mode Device 06FA4F28>: operation 6 progress -1
    [20:49:39.0430] <Recovery Mode Device 06FA4F28>: operation 7 progress -1
    [20:49:39.0700] <Recovery Mode Device 06FA4F28>: operation 8 progress -1
    [20:49:39.0700] unable to open device_map.txt: No such file or directory
    [20:49:39.0700] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [20:49:39.0700] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [20:49:39.0700] <Recovery Mode Device 06FA4F28>: operation 9 progress -1
    [20:49:39.0700] <Recovery Mode Device 06FA4F28>: Recovery mode succeeded
    [20:49:39.0700] Finished Recovery Restore Phase: Successful
    [20:49:42.0030] Recovery mode device disconnected
    [20:49:42.0030] Device removed when in state Restoring, moving device to transition state
    [20:49:42.0030] Changing state from 'Restoring' to 'Transitioning'
    [20:49:42.0030] Creating timer to monitor transition
    [20:49:46.0813] RestoreOS mode device connected
    [20:49:46.0813] Transitioning device returned, continuing restore.
    [20:49:46.0813] Canceling timer
    [20:49:46.0813] Changing state from 'Transitioning' to 'Restoring'
    [20:49:46.0823] <Restore Device 0735FD18>: operation 44 progress -1
    [20:49:46.0823] requested restore behavior: Erase
    [20:49:46.0823] requested variant: Erase
    [20:49:46.0823] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBEC" has been previously personalized; skipping it
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [20:49:47.0673] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [20:49:47.0683] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [20:49:47.0683] requested restore behavior: Erase
    [20:49:47.0683] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:47.0693] device did not return saved USB log
    [20:49:47.0693] device did not return saved panic log
    [20:49:47.0693] previous restore failed with exit status 0x100
    [20:49:47.0693] connected to service com.apple.mobile.restored
    [20:49:47.0693] using protocol version 13
    [20:49:47.0703] unable to open device_map.txt: No such file or directory
    [20:49:47.0703] board config = n90ap
    [20:49:47.0703] no value returned for BootArgs
    [20:49:47.0703] _copyDeviceProperty() failed for restore bootargs
    [20:49:47.0713] no value returned for MarketingPartNumber
    [20:49:47.0713] _copyDeviceProperty() failed for mpn
    [20:49:47.0713] requested restore behavior: Erase
    [20:49:47.0713] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [20:49:47.0723] value query for 'HardwareModel' returned 'N90AP'
    [20:49:47.0743] <Restore Device 0735FD18>: operation 28 progress -1
    [20:50:15.0138] previous restore failed:  0x0
    [20:50:15.0138] Scaler 0 enableDeviceClock(false,FULL_CLOCK_INDEX) = 0x0
    [20:50:15.0138] void AppleRGBOUT::verify_swap_gated(IOMFBSwapIORequest *, bool *) failed fIsDPOut: 0 fDPDriver: 0 fTVOUTDelegate: 0
    [20:50:15.0138] AppleRGBOUT verify_swap failed
    [20:50:15.0138] void AppleRGBOUT::verify_swap_gated(IOMFBSwapIORequest *, bool *) failed fIsDPOut: 0 fDPDriver: 0 fTVOUTDelegate: 0
    [20:50:15.0138] AppleRGBOUT verify_swap failed
    [20:50:15.0138] AppleS5L8920XBasebandSPIController::loadConfiguration: NCLK Frequency 48857142, Prescaler 3
    [20:50:15.0138] BasebandSPIDevice::exitLowPower: Invalid state inactive
    [20:50:15.0138] AppleSerialMultiplexer: adap::start: Frame size is 2048, Rx Buffer count is 16
    [20:50:15.0138] AppleSerialMultiplexer: mux::start: created new mux (17) for spi-baseband with adapter BasebandSPIDevice
    [20:50:15.0138] AppleSerialMultiplexer: debugparams::init: Parsed flags "" ( 0 )
    [20:50:15.0138] AppleSerialMultiplexer: !! mux::setPowerStateGated: Skipping power state change
    [20:50:15.0138] AppleSamsungSerial: Identified Serial Port on ARM Device=uart1 at 0x82600000(0x90d33000)
    [20:50:15.0138] AppleSamsungSerial: Identified Serial Port on ARM Device=uart2 at 0x82700000(0x90d35000)
    [20:50:15.0138] AppleSamsungSerial: Identified Serial Port on ARM Device=uart3 at 0x82800000(0x90d38000)
    [20:50:15.0138] AppleSamsungSerial: Identified Serial Port on ARM Device=uart6 at 0x82b00000(0x90d3a000)
    [20:50:15.0138] [HPark] AUD10::start: 0x80249000, highland-park mIISNub: 0x938fe100, sampleRate = 44100, ol=10, oi=12
    [20:50:15.0138] AppleCS42L61Audio: could not allocate control 395
    [20:50:15.0138] AppleARMBacklight::start: _minDACLevel=456 _maxDACLevel=1971
    [20:50:15.0138] AppleMultitouchN1SPI: successfully started
    [20:50:15.0138] AppleRGBOUT: TVOUT device is detected
    [20:50:15.0138] ApplePinotLCD: _lcdPanelID: 0xb2d105c8 _lcdPanelClass: 2
    [20:50:15.0138] IOReturn AppleMobileCLCD::set_ditherTable_state(bool), mIsCLCDDitherFor8Bits is true, no dynamic dither table.
    [20:50:15.0138] AppleD1815PMUPowerSource: AppleUSBCableDetect 1
    [20:50:15.0138] AppleD1815PMUPowerSource: AppleUSBCableType USBHost
    [20:50:15.0138] [HPark] AUD10::start: 0x80249000, highland-park mIICNub: 0x91b5d540, mIISNub: 0x938fe100, mSerialNub: 0x938a7400, sampleRate = 44100, ol=10, oi=12
    [20:50:15.0138] [HPark] AUD10 ATSc values: [ mic1: 0x000000ef, mic2: 0x0000000b, mic3: 0x00000000, recv: 0x00000013, spk: 0x00000000 ]
    [20:50:15.0138] [HPark] AUD10::setPowerState() function called whereas Start() is not finished
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [20:50:15.0138] AppleMultitouchN1SPI: detected HBPP. driver will be kept alive
    [20:50:15.0138] IOSDIOController::enumerateSlot(): Searching for SDIO device in slot: 0
    [20:50:15.0138] IOSDIOController::enumerateSlot(): Found SDIO I/O device. Function count(1), memory(0)
    [20:50:15.0138] IOSDIOIoCardDevice::parseFn0CISTuple(): Device manufacturer ID 0x2d0, Product ID 0x4329
    [20:50:15.0138] IOSDIOIoCardDevice::parseFn0CISTuple(): Manufacturer: ""
    [20:50:15.0138] IOSDIOIoCardDevice::parseFn0CISTuple(): Product:      ""
    [20:50:15.0138] IOSDIOIoCardDevice::parseFn0CISTuple(): ProductInfo0: "s=B1"
    [20:50:15.0138] IOSDIOIoCardDevice::parseFn0CISTuple(): ProductInfo1: "P=N90 m=3.1 V=m"
    [20:50:15.0138] AppleBCMWLANBusInterfaceSdio::start(): Started by: IOSDIOIoCardDevice, AppleBCMWLANV2-259 Jun 11 2014 20:13:01
    [20:50:15.0138] AppleBCMWLANCore::init(): IO80211-46 Jun 11 2014 20:10:01
    [20:50:15.0138] 000333.424645 wlan.N[0] AppleBCMWLANCore::start(): Starting with MAC Address: <<<mac address>>>
    [20:50:15.0138] IO80211Peer::addPhyStatistics Phy stats started for addr <<<mac address>>>
    [20:50:15.0138] IO80211Peer::addPhyStatistics Tx Completion stats started for addr <<<mac address>>>
    [20:50:15.0138] IO80211PeerManager::initWithInterface cant add monitoring timer
    [20:50:15.0138] Started logging for intf
    [20:50:15.0138] IO80211PeerManager::initWithInterface: inited peer manager
    [20:50:15.0138] IO80211Interface::init peerManager=0x939e8000
    [20:50:15.0138] start:156
    [20:50:15.0138] start:156
    [20:50:15.0138] 000333.428295 wlan.N[1] AppleBCMWLANCore::setPowerStateGated():   powerState 1, fStateFlags 0x20, dev 0x8044f000 (this 1, provider 0)
    [20:50:15.0138] 000333.428339 wlan.N[2] AppleBCMWLANCore::setPowerStateGated():  Received power state change before driver has initialized, ignoring
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [20:50:15.0138] read new style signature 0x43313131 (line:389)
    [20:50:15.0138] [FTL:MSG] VSVFL Register  [OK]
    [20:50:15.0138] [WMR:MSG] Metadata whitening is set in NAND signature
    [20:50:15.0138] [FTL:MSG] VFL Init            [OK]
    [20:50:15.0138] display-scale = 2
    [20:50:15.0138] display-rotation = 0
    [20:50:15.0138] found applelogo at /usr/share/progressui/[email protected]
    [20:50:15.0138] [FTL:MSG] VFL_Open            [OK]
    [20:50:15.0138] [FTL:MSG] YAFTL Register  [OK]
    [20:50:15.0138] found display: primary
    [20:50:15.0138] display: 640 x 960
    [20:50:15.0138] found PTP interface
    [20:50:15.0138] AppleSynopsysOTGDevice - Configuration: PTP
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: PTP
    [20:50:15.0138] AppleSynopsysOTGDevice - Configuration: iPod USB Interface
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: USBAudioControl
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: USBAudioStreaming
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: IapOverUsbHid
    [20:50:15.0138] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: PTP
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [20:50:15.0138] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device + Apple USB Ethernet
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: PTP
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [20:50:15.0138] AppleSynopsysOTGDevice          Interface: AppleUSBEthernet
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioControl
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioStreaming
    [20:50:15.0138] IOAccessoryPortUSB::start
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_registerFunction Register function IapOverUsbHid
    [20:50:15.0138] virtual bool AppleUSBDeviceMux::start(IOService *) build: Jun 11 2014 20:11:28
    [20:50:15.0138] init_waste
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBMux
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBEthernet
    [20:50:15.0138] [FTL:MSG] FTL_Open            [OK]
    [20:50:15.0138] [NAND] _publishServices:642 FTL capabilities: 0x00000000
    [20:50:15.0138] [nand_part_core:INF@ 157] published partition 0
    [20:50:15.0138] [nand_part_core:INF@ 157] published partition 1
    [20:50:15.0138] [nand_part_core:INF@ 157] published partition 2
    [20:50:15.0138] [nand_part_core:INF@ 157] published partition 3
    [20:50:15.0138] [nand_part_core:INF@ 157] published partition 5
    [20:50:15.0138] [nand_part_core:INF@ 157] published partition 6
    [20:50:15.0138] AppleSynopsysOTGDevice::gated_registerFunction Register function PTP
    [20:50:15.0138] AppleSynopsysOTGDevice::startUSBStack Starting usb stack
    [20:50:15.0138] IOReturn AppleUSBDeviceMux::setPropertiesGated(OSObject *) setting debug level to 7
    [20:50:15.0138] [effaceable:INIT] found current generation, 182, in group 1
    [20:50:15.0138] [effaceable:INIT] started
    [20:50:15.0138] [effaceable:INIT] started
    [20:50:15.0138] AppleARMBacklight::start: No AAP function
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x95213580 established 62078<-lo0->49152 62078<-usb->4864
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x95213580
    [20:50:15.0138] recv(13, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x95213580 established 62078<-lo0->49153 62078<-usb->5120
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49154 62078<-usb->5376
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x95213478 established 62078<-lo0->49155 62078<-usb->5632
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x95213580
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x95213580 established 62078<-lo0->49156 62078<-usb->5888
    [20:50:15.0138] recv(13, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x95213420 established 62078<-lo0->49157 62078<-usb->6144
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x95213478
    [20:50:15.0138] recv(15, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x95213580
    [20:50:15.0138] recv(13, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x95213420
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x95213420 established 62078<-lo0->49158 62078<-usb->6400
    [20:50:15.0138] recv(14, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] recv(16, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49159 62078<-usb->6656
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] recv(14, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49160 62078<-usb->6912
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] recv(14, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49161 62078<-usb->7168
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] recv(7, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49162 62078<-usb->7424
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] recv(7, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49163 62078<-usb->7680
    [20:50:15.0138] unrecognized key 'BootArgs' in value query
    [20:50:15.0138] failed to handle value query for key 'BootArgs', sending back empty response
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49164 62078<-usb->7936
    [20:50:15.0138] recv(7, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] unrecognized key 'MarketingPartNumber' in value query
    [20:50:15.0138] failed to handle value query for key 'MarketingPartNumber', sending back empty response
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] recv(7, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952134d0 established 62078<-lo0->49165 62078<-usb->8192
    [20:50:15.0138] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x952134d0
    [20:50:15.0138] recv(7, 4) failed: connection closed
    [20:50:15.0138] unable to read message size: -1
    [20:50:15.0138] could not receive message
    [20:50:15.0138] client protocol version 13
    [20:50:15.0138] *** UUID A6457AB6-F30A-724E-8954-04B63CF72E04 ***
    [20:50:15.0138] Restore options:
    [20:50:15.0138] UUID                           => <CFString 0xe742b0 [0x2f2ae0]>{contents = "A6457AB6-F30A-724E-8954-04B63CF72E04"}
    [20:50:15.0138] MinimumSystemPartition         => <CFNumber 0xe74200 [0x2f2ae0]>{value = +1531, type = kCFNumberSInt64Type}
    [20:50:15.0138] SystemPartitionSize            => <CFNumber 0xe73b70 [0x2f2ae0]>{value = +1531, type = kCFNumberSInt64Type}
    [20:50:15.0138] SystemPartitionPadding         => <CFBasicHash 0xe75210 [0x2f2ae0]>{type = mutable dict, count = 5,
    [20:50:15.0138] entries =>
    [20:50:15.0138] 2 : <CFString 0xe74230 [0x2f2ae0]>{contents = "128"} = <CFNumber 0xe74260 [0x2f2ae0]>{value = +1280, type = kCFNumberSInt64Type}
    [20:50:15.0138] 3 : <CFString 0xe741d0 [0x2f2ae0]>{contents = "16"} = <CFNumber 0xe73e70 [0x2f2ae0]>{value = +160, type = kCFNumberSInt64Type}
    [20:50:15.0138] 4 : <CFString 0xe75dc0 [0x2f2ae0]>{contents = "32"} = <CFNumber 0xe737f0 [0x2f2ae0]>{value = +320, type = kCFNumberSInt64Type}
    [20:50:15.0138] 5 : <CFString 0xe73c30 [0x2f2ae0]>{contents = "8"} = <CFNumber 0xe73b60 [0x2f2ae0]>{value = +80, type = kCFNumberSInt64Type}
    [20:50:15.0138] 8 : <CFString 0xe73800 [0x2f2ae0]>{contents = "64"} = <CFNumber 0xe73c80 [0x2f2ae0]>{value = +640, type = kCFNumberSInt64Type}
    [20:50:15.0138] }
    [20:50:15.0138]
    [20:50:15.0138] entering load_sep_os
    [20:50:15.0138] device has no sep
    [20:50:15.0138] entering partition_nand_device
    [20:50:15.0138] device supports boot-from-NAND
    [20:50:15.0138] nand device is already partitioned
    [20:50:15.0138] entering wait_for_storage_device
    [20:50:15.0138] Searching for NAND service
    [20:50:15.0138] Found NAND service: IOFlashStoragePartition
    [20:50:15.0138] NAND initialized. Waiting for devnode.
    [20:50:15.0138] entering clear_remap_variable
    [20:50:15.0138] executing /usr/sbin/nvram
    [20:50:15.0138] entering format_effaceable_storage
    [20:50:15.0138] effaceable storage is formatted, clearing it
    [20:50:15.0138] effaceable storaged cleared
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] device partitioning scheme is GPT
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [20:50:15.0138] executing /sbin/fsck_hfs
    [20:50:15.0138] ** /dev/rdisk0s1s1
    [20:50:15.0138]    Executing fsck_hfs (version hfs-277.10.5).
    [20:50:15.0138] ** Checking Journaled HFS Plus volume.
    [20:50:15.0138] ** Detected a case-sensitive volume.
    [20:50:15.0138]    The volume name is Sochi11D257.N90OS
    [20:50:15.0138] ** Checking extents overflow file.
    [20:50:15.0138] ** Checking catalog file.
    [20:50:15.0138] ** Checking multi-linked files.
    [20:50:15.0138] ** Checking catalog hierarchy.
    [20:50:15.0138] ** Checking extended attributes file.
    [20:50:15.0138] ** Checking volume bitmap.
    [20:50:15.0138] ** Checking volume information.
    [20:50:15.0138] ** Trimming unused blocks.
    [20:50:15.0138] ** The volume Sochi11D257.N90OS appears to be OK.
    [20:50:15.0138] executing /sbin/mount_hfs
    [20:50:15.0138] /dev/disk0s1s1 mounted on /mnt1
    [20:50:15.0138] entering check_for_restore_log
    [20:50:15.0138] found restore log (size = 29025)
    [20:50:15.0138] entering unmount_filesystems
    [20:50:15.0138] error unmounting '/mnt2': Invalid argument
    [20:50:15.0138] entering clean_NAND
    [20:50:15.0138] NAND format complete
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0 system= data=
    [20:50:15.0138] entering format_storage_for_LwVM
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] device partitioning scheme is GPT
    [20:50:15.0138] unexpected partition 'LwVM' - skipping
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0s1 system= data=
    [20:50:15.0138] entering create_filesystem_partitions
    [20:50:15.0138] User specified system partition size, skipping firmware extras size.
    [20:50:15.0138] system partition padding size is: 167772160 bytes
    [20:50:15.0138] unable to open : No such file or directory
    [20:50:15.0138] creating 2 partitions
    [20:50:15.0138] creating encrypted data partition
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] device partitioning scheme is GPT
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [20:50:15.0138] wipe entire partition: 1 (old = 0 new = 1691)
    [20:50:15.0138] block size for /dev/disk0s1s1: 8192
    [20:50:15.0138] /sbin/newfs_hfs -s -v System -J -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s1
    [20:50:15.0138] executing /sbin/newfs_hfs -s -v System -J -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s1
    [20:50:15.0138] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [20:50:15.0138] block size for /dev/disk0s1s2: 8192
    [20:50:15.0138] /sbin/newfs_hfs -s -v Data -J -P -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s2
    [20:50:15.0138] executing /sbin/newfs_hfs -s -v Data -J -P -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s2
    [20:50:15.0138] Initialized /dev/rdisk0s1s2 as a 13 GB case-sensitive HFS Plus volume with a 8192k journal
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] device partitioning scheme is GPT
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [20:50:15.0138] entering mount_filesystems
    [20:50:15.0138] executing /sbin/fsck_hfs
    [20:50:15.0138] ** /dev/rdisk0s1s1
    [20:50:15.0138]    Executing fsck_hfs (version hfs-277.10.5).
    [20:50:15.0138] ** Checking Journaled HFS Plus volume.
    [20:50:15.0138] ** Detected a case-sensitive volume.
    [20:50:15.0138]    The volume name is System
    [20:50:15.0138] ** Checking extents overflow file.
    [20:50:15.0138] ** Checking catalog file.
    [20:50:15.0138] ** Checking multi-linked files.
    [20:50:15.0138] ** Checking catalog hierarchy.
    [20:50:15.0138] ** Checking extended attributes file.
    [20:50:15.0138] ** Checking volume bitmap.
    [20:50:15.0138] ** Checking volume information.
    [20:50:15.0138] ** Trimming unused blocks.
    [20:50:15.0138] ** The volume System appears to be OK.
    [20:50:15.0138] executing /sbin/mount_hfs
    [20:50:15.0138] /dev/disk0s1s1 mounted on /mnt1
    [20:50:15.0138] executing /sbin/fsck_hfs
    [20:50:15.0138] ** /dev/rdisk0s1s2
    [20:50:15.0138]    Executing fsck_hfs (version hfs-277.10.5).
    [20:50:15.0138] ** Checking Journaled HFS Plus volume.
    [20:50:15.0138] ** Detected a case-sensitive volume.
    [20:50:15.0138]    The volume name is Data
    [20:50:15.0138] ** Checking extents overflow file.
    [20:50:15.0138] ** Checking catalog file.
    [20:50:15.0138] ** Checking multi-linked files.
    [20:50:15.0138] ** Checking catalog hierarchy.
    [20:50:15.0138] ** Checking extended attributes file.
    [20:50:15.0138] ** Checking volume bitmap.
    [20:50:15.0138] ** Checking volume information.
    [20:50:15.0138] ** Trimming unused blocks.
    [20:50:15.0138] ** The volume Data appears to be OK.
    [20:50:15.0138] executing /sbin/mount_hfs
    [20:50:15.0138] mount_hfs: Could not exec re-keying daemon /usr/libexec/rolld: No such file or directory
    [20:50:15.0138] /dev/disk0s1s2 mounted on /mnt2
    [20:50:15.0138] entering resize_system_partition_to_options
    [20:50:15.0138] User specified system partition size, skipping firmware extras size.
    [20:50:15.0138] Found SystemPartitionPadding value of 167772160 bytes
    [20:50:15.0138] Erasing system partition prior to resize operation.
    [20:50:15.0138] block size for /dev/disk0s1s1: 8192
    [20:50:15.0138] /sbin/newfs_hfs -s -v System -J -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s1
    [20:50:15.0138] executing /sbin/newfs_hfs -s -v System -J -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s1
    [20:50:15.0138] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [20:50:15.0138] executing /sbin/fsck_hfs
    [20:50:15.0138] ** /dev/rdisk0s1s1
    [20:50:15.0138]    Executing fsck_hfs (version hfs-277.10.5).
    [20:50:15.0138] ** Checking Journaled HFS Plus volume.
    [20:50:15.0138] ** Detected a case-sensitive volume.
    [20:50:15.0138]    The volume name is System
    [20:50:15.0138] ** Checking extents overflow file.
    [20:50:15.0138] ** Checking catalog file.
    [20:50:15.0138] ** Checking multi-linked files.
    [20:50:15.0138] ** Checking catalog hierarchy.
    [20:50:15.0138] ** Checking extended attributes file.
    [20:50:15.0138] ** Checking volume bitmap.
    [20:50:15.0138] ** Checking volume information.
    [20:50:15.0138] ** Trimming unused blocks.
    [20:50:15.0138] ** The volume System appears to be OK.
    [20:50:15.0138] executing /sbin/mount_hfs
    [20:50:15.0138] /dev/disk0s1s1 mounted on /mnt1
    [20:50:15.0138] Trying to resize system partition to 1773142016 bytes aka 1691 MB
    [20:50:15.0138] entering adjust_partition_preflight
    [20:50:15.0138] partition:0 requiredSize=216448
    [20:50:15.0138] no change in size
    [20:50:15.0138] Successfully resized the system partition
    [20:50:15.0138] entering maximize_data_partition
    [20:50:15.0138] entering adjust_partition_preflight
    [20:50:15.0138] partition:1 requiredSize=<<<<<IMEI>>>>>>8
    [20:50:15.0138] maximizing data partition to 14181990399 bytes
    [20:50:15.0138] entering adjust_partition_preflight
    [20:50:15.0138] partition:1 requiredSize=1731200
    [20:50:15.0138] no change in size
    [20:50:15.0138] Successfully resized data partition to consume free blocks
    [20:50:15.0138] The system partition now has a total HFS+ capacity of 1691 MB
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] device partitioning scheme is GPT
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [20:50:15.0138] entering unmount_filesystems
    [20:50:15.0138] entering ramrod_ticket_update
    [20:50:15.0138] looking up root ticket hash
    [20:50:15.0138] device tree ticket-hash: <CFData 0xe79d80 [0x2f2ae0]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [20:50:15.0138] ticket_hash: <<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>
    [20:50:15.0138] received valid ticket (2741 bytes)
    [20:50:15.0138] entering restore_images
    [20:50:15.0138] Successfully marked device node /dev/rdisk0s1s1 as static data
    [20:50:15.0138] executing /usr/sbin/asr -source asr://localhost:12345 -target /dev/disk0s1s1 -erase -noprompt --chunkchecksum --puppetstrings
    [20:50:15.0138] void AppleUSBDeviceMux::handleConnectResult(struct BulkUSBMuxSession *, errno_t) new session to port 12345 failed: 61
    [20:50:15.0138] void AppleUSBDeviceMux::handleConnectResult(struct BulkUSBMuxSession *, errno_t) new session to port 12345 failed: 61
    [20:50:15.0138] ASR: asr: Unable to disable idle sleep - -536870199
    [20:50:15.0138] ASR STATUS: start 241.1 multicast-client
    [20:50:15.0138] ASR: Waiting for connection attempt from server
    [20:50:15.0138] AppleUSBDeviceMux::handleConnectResult new session 0x952130b0 established 12345<-lo0->49168 12345<-usb->8960
    [20:50:15.0138] ASR STATUS: setup
    [20:50:15.0138] ASR: Validating target...done
    [20:50:15.0138] ASR STATUS: metadata
    [20:50:15.0138] ASR: Validating source...
    [20:50:15.0138] ASR: done
    [20:50:15.0138] ASR: Retrieving scan information...done
    [20:50:15.0138] ASR: Validating sizes...done
    [20:50:15.0138] ASR STATUS: restore
    [20:50:15.0138] ASR RESTORE PROGRESS: 2%
    [20:50:15.0138] ASR RESTORE PROGRESS: 4%
    [20:50:15.0138] ASR RESTORE PROGRESS: 6%
    [20:50:15.0138] ASR RESTORE PROGRESS: 8%
    [20:50:15.0138] ASR RESTORE PROGRESS: 10%
    [20:50:15.0138] ASR RESTORE PROGRESS: 12%
    [20:50:15.0138] ASR RESTORE PROGRESS: 14%
    [20:50:15.0138] ASR RESTORE PROGRESS: 16%
    [20:50:15.0138] ASR RESTORE PROGRESS: 18%
    [20:50:15.0138] ASR RESTORE PROGRESS: 20%
    [20:50:15.0138] ASR RESTORE PROGRESS: 22%
    [20:50:15.0138] ASR RESTORE PROGRESS: 24%
    [20:50:15.0138] ASR RESTORE PROGRESS: 26%
    [20:50:15.0138] ASR RESTORE PROGRESS: 28%
    [20:50:15.0138] ASR RESTORE PROGRESS: 30%
    [20:50:15.0138] ASR RESTORE PROGRESS: 32%
    [20:50:15.0138] ASR RESTORE PROGRESS: 34%
    [20:50:15.0138] ASR RESTORE PROGRESS: 36%
    [20:50:15.0138] ASR RESTORE PROGRESS: 38%
    [20:50:15.0138] ASR RESTORE PROGRESS: 40%
    [20:50:15.0138] ASR RESTORE PROGRESS: 42%
    [20:50:15.0138] ASR RESTORE PROGRESS: 44%
    [20:50:15.0138] ASR RESTORE PROGRESS: 46%
    [20:50:15.0138] ASR RESTORE PROGRESS: 48%
    [20:50:15.0138] ASR RESTORE PROGRESS: 50%
    [20:50:15.0138] ASR RESTORE PROGRESS: 52%
    [20:50:15.0138] ASR RESTORE PROGRESS: 54%
    [20:50:15.0138] ASR RESTORE PROGRESS: 56%
    [20:50:15.0138] ASR RESTORE PROGRESS: 58%
    [20:50:15.0138] ASR RESTORE PROGRESS: 60%
    [20:50:15.0138] ASR RESTORE PROGRESS: 62%
    [20:50:15.0138] ASR RESTORE PROGRESS: 64%
    [20:50:15.0138] ASR RESTORE PROGRESS: 66%
    [20:50:15.0138] ASR RESTORE PROGRESS: 68%
    [20:50:15.0138] ASR RESTORE PROGRESS: 70%
    [20:50:15.0138] ASR RESTORE PROGRESS: 72%
    [20:50:15.0138] ASR RESTORE PROGRESS: 74%
    [20:50:15.0138] ASR RESTORE PROGRESS: 76%
    [20:50:15.0138] ASR RESTORE PROGRESS: 78%
    [20:50:15.0138] ASR RESTORE PROGRESS: 80%
    [20:50:15.0138] ASR RESTORE PROGRESS: 82%
    [20:50:15.0138] ASR RESTORE PROGRESS: 84%
    [20:50:15.0138] ASR RESTORE PROGRESS: 86%
    [20:50:15.0138] ASR RESTORE PROGRESS: 88%
    [20:50:15.0138] ASR RESTORE PROGRESS: 90%
    [20:50:15.0138] ASR RESTORE PROGRESS: 92%
    [20:50:15.0138] ASR RESTORE PROGRESS: 94%
    [20:50:15.0138] ASR RESTORE PROGRESS: 96%
    [20:50:15.0138] ASR RESTORE PROGRESS: 98%
    [20:50:15.0138] AppleUSBDeviceMux::sessionUpcall socket is closed, session 0x952130b0 (12345<-lo0->49168 12345<-usb->8960)
    [20:50:15.0138] ASR RESTORE PROGRESS: 100%
    [20:50:15.0138] ASR: Copied 1605403136 bytes in 197.51 seconds, 7937.88 KiB/s
    [20:50:15.0138] ASR STATUS: verify
    [20:50:15.0138] ASR VERIFY PROGRESS: 2%
    [20:50:15.0138] ASR VERIFY PROGRESS: 4%
    [20:50:15.0138] ASR VERIFY PROGRESS: 6%
    [20:50:15.0138] ASR VERIFY PROGRESS: 8%
    [20:50:15.0138] ASR VERIFY PROGRESS: 10%
    [20:50:15.0138] ASR VERIFY PROGRESS: 12%
    [20:50:15.0138] ASR VERIFY PROGRESS: 14%
    [20:50:15.0138] ASR VERIFY PROGRESS: 16%
    [20:50:15.0138] ASR VERIFY PROGRESS: 18%
    [20:50:15.0138] ASR VERIFY PROGRESS: 20%
    [20:50:15.0138] ASR VERIFY PROGRESS: 22%
    [20:50:15.0138] ASR VERIFY PROGRESS: 24%
    [20:50:15.0138] ASR VERIFY PROGRESS: 26%
    [20:50:15.0138] ASR VERIFY PROGRESS: 28%
    [20:50:15.0138] ASR VERIFY PROGRESS: 30%
    [20:50:15.0138] ASR VERIFY PROGRESS: 32%
    [20:50:15.0138] ASR VERIFY PROGRESS: 34%
    [20:50:15.0138] ASR VERIFY PROGRESS: 36%
    [20:50:15.0138] ASR VERIFY PROGRESS: 38%
    [20:50:15.0138] ASR VERIFY PROGRESS: 40%
    [20:50:15.0138] ASR VERIFY PROGRESS: 42%
    [20:50:15.0138] ASR VERIFY PROGRESS: 44%
    [20:50:15.0138] ASR VERIFY PROGRESS: 46%
    [20:50:15.0138] ASR VERIFY PROGRESS: 48%
    [20:50:15.0138] ASR VERIFY PROGRESS: 50%
    [20:50:15.0138] ASR VERIFY PROGRESS: 52%
    [20:50:15.0138] ASR VERIFY PROGRESS: 54%
    [20:50:15.0138] ASR VERIFY PROGRESS: 56%
    [20:50:15.0138] ASR VERIFY PROGRESS: 58%
    [20:50:15.0138] ASR VERIFY PROGRESS: 60%
    [20:50:15.0138] ASR VERIFY PROGRESS: 62%
    [20:50:15.0138] ASR VERIFY PROGRESS: 64%
    [20:50:15.0138] ASR VERIFY PROGRESS: 66%
    [20:50:15.0138] ASR VERIFY PROGRESS: 68%
    [20:50:15.0138] ASR VERIFY PROGRESS: 70%
    [20:50:15.0138] ASR VERIFY PROGRESS: 72%
    [20:50:15.0138] ASR VERIFY PROGRESS: 74%
    [20:50:15.0138] ASR VERIFY PROGRESS: 76%
    [20:50:15.0138] ASR VERIFY PROGRESS: 78%
    [20:50:15.0138] ASR VERIFY PROGRESS: 80%
    [20:50:15.0138] ASR VERIFY PROGRESS: 82%
    [20:50:15.0138] ASR VERIFY PROGRESS: 84%
    [20:50:15.0138] ASR VERIFY PROGRESS: 86%
    [20:50:15.0138] ASR VERIFY PROGRESS: 88%
    [20:50:15.0138] ASR VERIFY PROGRESS: 90%
    [20:50:15.0138] ASR VERIFY PROGRESS: 92%
    [20:50:15.0138] ASR VERIFY PROGRESS: 94%
    [20:50:15.0138] ASR VERIFY PROGRESS: 96%
    [20:50:15.0138] ASR VERIFY PROGRESS: 98%
    [20:50:15.0138] ASR VERIFY PROGRESS: 100%
    [20:50:15.0138] ASR: Verified SHA-1 checksum 1605403136 bytes in 40.96 seconds, 38271.93 KiB/s
    [20:50:15.0138] ASR STATUS: finish
    [20:50:15.0138] entering ramrod_probe_media
    [20:50:15.0138] device partitioning scheme is GPT
    [20:50:15.0138] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [20:50:15.0138] entering mount_filesystems
    [20:50:15.0138] executing /sbin/fsck_hfs
    [20:50:15.0138] ** /dev/rdisk0s1s1
    [20:50:15.0138]    Executing fsck_hfs (version hfs-277.10.5).
    [20:50:15.0138] ** Checking Journaled HFS Plus volume.
    [20:50:15.0138] ** Detected a case-sensitive volume.
    [20:50:15.0138]    The volume name is Sochi11D257.N90OS
    [20:50:15.0138] ** Checking extents overflow file.
    [20:50:15.0138] ** Checking catalog file.
    [20:50:15.0138] ** Checking multi-linked files.
    [20:50:15.0138] ** Checking catalog hierarchy.
    [20:50:15.0138] ** Checking extended attributes file.
    [20:50:15.0138] ** Checking volume bitmap.
    [20:50:15.0138] ** Checking volume information.
    [20:50:15.0138] ** Trimming unused blocks.
    [20:50:15.0138] ** The volume Sochi11D257.N90OS appears to be OK.
    [20:50:15.0138] executing /sbin/mount_hfs
    [20:50:15.0138] /dev/disk0s1s1 mounted on /mnt1
    [20:50:15.0138] executing /sbin/fsck_hfs
    [20:50:15.0138] ** /dev/rdisk0s1s2
    [20:50:15.0138]    Executing fsck_hfs (version hfs-277.10.5).
    [20:50:15.0138] ** Checking Journaled HFS Plus volume.
    [20:50:15.0138] ** Detected a case-sensitive volume.
    [20:50:15.0138]    The volume name is Data
    [20:50:15.0138] ** Checking extents overflow file.
    [20:50:15.0138] ** Checking catalog file.
    [20:50:15.0138] ** Checking multi-linked files.
    [20:50:15.0138] ** Checking catalog hierarchy.
    [20:50:15.0138] ** Checking extended attributes file.
    [20:50:15.0138] ** Checking volume bitmap.
    [20:50:15.0138] ** Checking volume information.
    [20:50:15.0138] ** Trimming unused blocks.
    [20:50:15.0138] ** The volume Data appears to be OK.
    [20:50:15.0138] executing /sbin/mount_hfs
    [20:50:15.0138] mount_hfs: Could not exec re-keying daemon /usr/libexec/rolld: No such file or directory
    [20:50:15.0138] /dev/disk0s1s2 mounted on /mnt2
    [20:50:15.0138] entering install_kernel_cache
    [20:50:15.0138] writing kernelcache to /mnt1/System/Library/Caches/com.apple.kernelcaches/kernelcache
    [20:50:15.0138] entering install_secure_vault_daemon
    [20:50:15.0138] entering get_hardware_platform
    [20:50:15.0138] platform-name = s5l8930x
    [20:50:15.0138] linking /mnt1/usr/sbin/securekeyvaultd to /mnt1/usr/sbin/securekeyvaultd.s5l8930x
    [20:50:15.0138] no securekeyvaultd for s5l8930x
    [20:50:15.0138] entering ramrod_ticket_write
    [20:50:15.0138] writing ticket to /mnt1/System/Library/Caches/apticket.der
    [20:50:15.0138] entering update_device_firmware
    [20:50:15.0138] create_baseband_update_options: Got imeisv: 22
    [20:50:15.0138] baseband updater options = <CFBasicHash 0xe773a0 [0x2f2ae0]>{type = mutable dict, count = 3,
    [20:50:15.0138] entries =>
    [20:50:15.0138] 0 : <CFString 0xec298 [0x2f2ae0]>{contents = "IMEISwVersion"} = <CFNumber 0xe7a7e0 [0x2f2ae0]>{value = +22, type = kCFNumberSInt32Type}
    [20:50:15.0138] 1 : <CFString 0xec2f8 [0x2f2ae0]>{contents = "autoSetupEnv"} = <CFBoolean 0x2f2e98 [0x2f2ae0]>{value = false}
    [20:50:15.0138] 2 : <CFString 0xec308 [0x2f2ae0]>{contents = "disablePing"} = <CFBoolean 0x2f2e90 [0x2f2ae0]>{value = true}
    [20:50:15.0138] }
    [20:50:15.0138]
    [20:50:15.0138] _baseband_update_requires_system_filesystem_once: querying baseband to determine if it requires system filesystem
    [20:50:15.0138] _baseband_update_requires_system_filesystem_once: query returned <CFBasicHash 0xe7a480 [0x2f2ae0]>{type = immutable dict, count = 1,
    [20:50:15.0138] entries =>
    [20:50:15.0138] 0 : <CFString 0xec068 [0x2f2ae0]>{contents = "requireSystemPartitionMount"} = <CFBoolean 0x2f2e98 [0x2f2ae0]>{value = false}
    [20:50:15.0138] }
    [20:50:15.0138]
    [20:50:15.0138] entering update_iBoot
    [20:50:15.0138] found 'AppleImage3NORAccess' object in IORegistry
    [20:50:15.0138] entering update_iBoot_image3_NOR_access
    [20:50:15.0138] write_image3_data: flashing illb data (length = 0x209d9)
    [20:50:15.0138] write_image3_data: flashing SCAB data (length = 0xb00)
    [20:50:15.0138] ticket updated
    [20:50:15.0138] write_image3_data: flashing ibot data (length = 0x4518c)
    [20:50:15.0138] write_image3_data: flashing chg1 data (length = 0x88cc)
    [20:50:15.0138] write_image3_data: flashing bat0 data (length = 0xaa4c)
    [20:50:15.0138] write_image3_data: flashing batF data (length = 0x1484c)
    [20:50:15.0138] write_image3_data: flashing logo data (length = 0x1a8c)
    [20:50:15.0138] write_image3_data: flashing recm data (length = 0x10f4c)
    [20:50:15.0138] write_image3_data: flashing dtre data (length = 0x1240c)
    [20:50:15.0138] write_image3_data: flashing chg0 data (length = 0x260c)
    [20:50:15.0138] write_image3_data: flashing bat1 data (length = 0x80c)
    [20:50:15.0138] write_image3_data: flashing glyP data (length = 0x2e4c)
    [20:50:15.0138] AppleImage3NORAccess::_getSuperBlock imageVersion: 3
    [20:50:15.0138] AppleImage3NORAccess::_getSuperBlock imageVersion: 3
    [20:50:15.0138] [nand_part_core:INF@2289] first 2 pages of boot blocks written with copies of partition table
    [20:50:15.0138] entering update_gas_gauge
    [20:50:15.0138] entering update_ir_mcu
    [20:50:15.0138] looking for mcu nub...no entry from path!
    [20:50:15.0138] TiSerialFlasher not supported on this platform. Exiting.
    [20:50:15.0138] entering update_baseband
    [20:50:15.0138] update_baseband: registering for progress notifications
    [20:50:15.0138] create_baseband_update_options: Got imeisv: 22
    [20:50:15.0138] baseband updater options = <CFBasicHash 0xe7af30 [0x2f2ae0]>{type = mutable dict, count = 6,
    [20:50:15.0138] entries =>
    [20:50:15.0138] 0 : <CFString 0xec248 [0x2f2ae0]>{contents = "SystemRoot"} = <CFString 0xe76c40 [0x2f2ae0]>{contents = "/mnt1"}
    [20:50:15.0138] 1 : <CFString 0xec298 [0x2f2ae0]>{contents = "IMEISwVersion"} = <CFNumber 0xe75180 [0x2f2ae0]>{value = +22, type = kCFNumberSInt32Type}
    [20:50:15.0138] 2 : <CFString 0xec2f8 [0x2f2ae0]>{contents = "autoSetupEnv"} = <CFBoolean 0x2f2e98 [0x2f2ae0]>{value = false}
    [20:50:15.0138] 3 : <CFString 0xec1d8 [0x2f2ae0]>{contents = "forceUpdate"} = <CFBoolean 0x2f2e90 [0x2f2ae0]>{value = true}
    [20:50:15.0138] 5 : <CFString 0xec308 [0x2f2ae0]>{contents = "disablePing"} = <CFBoolean 0x2f2e90 [0x2f2ae0]>{value = true}
    [20:50:15.0138] 6 : <CFString 0xec1f8 [0x2f2ae0]>{contents = "DisallowFusiing"} = <CFBoolean 0x2f2e90 [0x2f2ae0]>{value = true}
    [20:50:15.0138] }
    [20:50:15.0138]
    [20:50:15.0138] update_baseband: querying baseband info
    [20:50:15.0138] bbupdater: Opening device path /dev/cu.debug, using baud 115200
    [20:50:15.0138] bbupdater: Configuring Hardware Mux...bbupdater: OK
    [20:50:15.0138] bbupdater: [    714981.281435 : 13.00]::: powercycle
    [20:50:15.0138] bbupdater: - Ping failed, trying again, 48 tries left
    [20:50:15.0138] bbupdater: - Ping OK
    [20:50:15.0138] bbupdater: [    714982.987679 : 13.01]::: Polled 1
    [20:50:15.0138] bbupdater: Opening device path /dev/cu.debug, using baud 115200
    [20:50:15.0138] bbupdater: [    714

    Hi Md. Abdur Rahman, 
    Thanks for participating in the Apple Support Communities. 
    If your iPhone 4 is restarting unexpectedly, there are a few things to do depending on how frequently this is happening. 
    If it is restarting intermittently (from time to time), you may want to back up your data and restore the iPhone to factory settings:
    Use iTunes to restore your iOS device to factory settings - Apple Support
    If the same thing occurs, this article suggests contacting Apple Support for more help:
    If your iOS device restarts, displays the Apple logo, or powers off while you're using it - Apple Support
    Make sure your iOS device is up to date. If you still see this issue after updating, contact Apple Support.
    Sincerely,
    Jeremy 

  • Unable To Build iOS App Using Native Extension

    I’m trying to create a native extension for iOS and use that extension as part of an IPA app for iOS I create from a SWF file using the ADT tool (i.e. the normal use-case for iOS). Note: I have already successfully created the native extension and APK app for Android and now I am trying to build the iOS side.
    I have been primarily using the information found at the following websites:
    http://www.adobe.com/devnet/air/articles/building-ane-ios-android-pt3.html
    http://www.adobe.com/devnet/air/articles/building-ane-ios-android-pt5.html
    http://help.adobe.com/en_US/air/build/WS901d38e593cd1bac35eb7b4e12cddc5fbbb-8000.html
    I have also searched the Adobe forums for the answer to my question without success.
    The error I receive is:
    ld: warning: ignoring file /var/folders/c3/mpg4frwn2j1f8scw4jctbmv9hfkswj/T/bd3fbd4a-cf56-4fd6-a06d-d69ea92dc620/lib com.mycompany.MyExtension.a, file was built for archive which is not the architecture being linked (armv7): /var/folders/c3/mpg4frwn2j1f8scw4jctbmv9hfkswj/T/bd3fbd4a-cf56-4fd6-a06d-d69ea92dc620/lib com.mycompany.MyExtension.a
    Undefined symbols for architecture armv7:
      "_MyExtensionInitializer", referenced from:
          _g_com_adobe_air_fre_fmap in aotInfo.o
      "_MyExtensionFinalizer", referenced from:
          _g_com_adobe_air_fre_fmap in aotInfo.o
    ld: symbol(s) not found for architecture armv7
    Compilation failed while executing : ld64
    I receive the above error when I execute the following command:
    adt -package -target ipa-ad-hoc -storetype pkcs12 -keystore certificate.pfx -provisioning-profile provisioning_profile.mobileprovision MyApp.ipa MyApp.xml MyApp.swf -extdir packaged-extensions
    where the folder “packaged-extensions” contains the ANE file I created using this command:
    adt -package -target ane packaged-extensions/MyExtension.ane MyExtension.xml -swc MyExtension.swc -platform Android-ARM -platformoptions platformAndroidARM.xml -C dependencies . -C platform/Android . -platform iPhone-ARM -platformoptions platformiOSARM.xml -C platform/IOS . -platform default -C platform/default library.swf
    where the content of the files are as follows:
    MyApp.xml:
    <application xmlns="http://ns.adobe.com/air/application/4.0">
        <id>MyApp</id>
        <versionNumber>0.0.1</versionNumber>
        <filename>MyApp</filename>
        <initialWindow>
            <content>MyApp.swf</content>
            <visible>true</visible>
            <width>600</width>
            <height>600</height>
        </initialWindow>
        <supportedProfiles>mobileDevice</supportedProfiles>
            <extensions>
                    <extensionID>com.mycompany.MyExtension</extensionID>
            </extensions>
    </application>
    MyExtension.xml:
    <extension xmlns="http://ns.adobe.com/air/extension/4.0">
            <id>com.mycompany.MyExtension</id>
            <versionNumber>0.0.1</versionNumber>
            <platforms>
                    <platform name="Android-ARM">
                            <applicationDeployment>
                                    <nativeLibrary>MyExtension.jar</nativeLibrary>
                                    <initializer>com.mycompany.MyExtension</initializer>
                            </applicationDeployment>               
                    </platform>
                    <platform name="iPhone-ARM">
                            <applicationDeployment>
                                    <nativeLibrary>libMyExtensionIOSLibrary.a</nativeLibrary>
                                    <initializer>MyExtensionInitializer</initializer>
                                    <finalizer>MyExtensionFinalizer</finalizer>
                            </applicationDeployment>
                    </platform>
                    <platform name="default">
                            <applicationDeployment/>
                    </platform>
            </platforms>
    </extension>
    platformiOSARM.xml:
    <platform xmlns="http://ns.adobe.com/air/extension/4.0">
      <linkerOptions>
        <option>-ios_version_min 5.1</option>
        <option>-liconv</option>
      </linkerOptions>
    </platform>
    MyExtensionIOSLibrary.m (yes, I know it doesn't do anything - it's simple on purpose to help isolate the error):
    #import "FlashRuntimeExtensions.h"
    void MyContextInitializer(void* extData, const uint8_t *ctxType, FREContext ctx, uint32_t *numFunctionsToTest, const FRENamedFunction **functionsToSet) {
      return;   
    void MyExtensionInitializer(void **extDataToSet, FREContextInitializer* ctxInitializerToSet, FREContextFinalizer* ctxFinalizerToSet) {
        *extDataToSet = NULL;
        *ctxInitializerToSet = &MyContextInitializer;
    void MyExtensionFinalizer(void *extData)
        return;
    I am using XCode to build MyExtensionIOSLibrary.m into a library file with a .a filename extension. My relevant build settings are:
    iOS Deployment Target: iOS 5.1
    Architectures: armv7
    Build Active Architectures Only: No
    Product Scheme: Release
    Compile Sources As: Objective-C
    Any ideas? Please help.

    Thanks for the reply.
    yes.I've created a static library with 3rd party frameworks and pulled the .a from product folder(Debug-iphoneos).
    and the framework didn't work(armv7 not supported error occurs ..don't know why) with it's original folder structure .
    so I followed below link to change folders inside the 3rd party framework and figured out but now  the application crashes on startup without giving an error message. .
    スタッフ日記 - 【ANE作成】外部フレームワーク を含むANE作成時の注意点(iOS) | 株式会社マリエッタ

  • Can someone tell me what I am doing wrong when creating a native extension for iPad? (Very detailed)

    My company is developing a game for the iPhone and iPad devices using Flash cs5.5 and Air3.0
    The client requires that certain features be supported - such things like GameCenter, Rating system, etc... none of which is currently supported by flash for the iOS.
    However, they did provide us with a bunch of xCode sample files on how they want things to work.
    My idea was to bridge the gap in functionality by creating a native exention that utilized the xcode source that was given to me, thus giving me the functionality that is required.
    But first, I need to actually CREATE a native extension, even just a basic echo/hello world... I have followed all the steps from various guides and tutorials and I have managed to create an ipa and put it on my iPad2 to test, but when the program starts up, nothing happens, I am left with a black screen. When I comment out the lines of code that intialize the extension, it fires up just fine.
    (and yes, I even tried to put things in try blocks in case there was an error - no luck)
    So I am hoping that someone can read through the process of what I am doing below and point out what I am doing wrong, or what I am missing.
    What I am using:
    Mac Mini running OSX 10.7.2 - this is used to run xCode 4.1 build 4B110
    PC - Windows 7 home 64bit - Running Flash CS5.5 (version 11.5.1.3469) with the AIR 3.0 SDK inside it. I also have the AIR 3.0 sdk in a seperate folder for command line running. (This is my primary developement platform)
    The PC does have flash builder installed, but I have never really used it, nor do I know how to use it... everything that has been built to date has been done using Flash CS5.5
    So, this is what I have done.
    The first thing I do is create a .a static library on the mac.
    I open xcode and create a new project.
    Select iOS Framework and Library, then select "Cocoa touch Static Library"
    Give it a name, in this case "EchoExtension" and put it in a folder.
    I then delete the EchoExtension.h file as all the samples I have seen to date don't use it.
    I then add "FlashRuntimeExtension.h" to the project from the AIR3.0 sdk frameworks folder on my PC
    I then delete everything in my .m file and, following several different examples and tutorials, type up the following code:
    //  EchoExtension.m
    //  EchoExtension
    #include "FlashRuntimeExtensions.h"
    FREObject echo(FREContext ctx, void* funcData, uint32_t argc, FREObject argv[]) {
        return argv[0];
    //----------- Extention intializer and finalizer ----------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------ -
    // A native context instance is created
    void ContextInitializer(void* extData, const uint8_t* ctxType, FREContext ctx, uint32_t* numFunctionsToTest, const FRENamedFunction** functionsToSet) {
        // setup the number of functions in this extention
        // for easy reference, set the number of function that this extention will use.
        int FunctionCount = 1;
        // set the pointer reference to the number of function this extention will use.
        *numFunctionsToTest = FunctionCount;
        // create an array to store all the functions we will use.
        FRENamedFunction* func = (FRENamedFunction*)malloc(sizeof(FRENamedFunction)*FunctionCount);
        // create an array entry for each function
        func[0].name = (const uint8_t*)"echo"; // the name of the function
        func[0].functionData = NULL;                    // the data type
        func[0].function = &echo;             // reference to the actual function
        // save the array in a pointer.
        *functionsToSet = func;
    // A native context instance is disposed
    void ContextFinalizer(FREContext ctx) {
        return;
    // Initialization function of each extension
    void ExtInitializer(void** extDataToSet, FREContextInitializer* ctxInitializerToSet, FREContextFinalizer* ctxFinalizerToSet) {
        *extDataToSet = NULL;
        *ctxInitializerToSet = &ContextInitializer;
        *ctxFinalizerToSet = &ContextFinalizer;
    // Called when extension is unloaded
    void ExtFinalizer(void* extData) {
        return;
    I then go "Product", "Build" and it creates libEchoExtension.a
    I copy this .a file over to my PC.
    I am now finish with that god foresaken mac (*shudders*)
    Back on my PC, I create a folder for my test project. For all intents an purposes, let's call this "D:\src\EchoExtension" I then create 2 folders, one called "lib" and one called "app". Lib is where I will create the actionscript source for my extension.
    In my lib folder, I create a new fla in flash cs5.5 called "EchoExtension.fla"
    I create in my lib folder, the following:
    com\extensions\EchoExtension\EchoExtension.as
    a folder called "Build" in which I place my libEchoExtension.a file.
    in my EchoExtension.as file, I place the following code:
    package com.extensions.EchoExtension
        import flash.events.EventDispatcher;
        import flash.events.IEventDispatcher;
        import flash.external.ExtensionContext;
        public class EchoExtension extends EventDispatcher
            protected var _extensionContext:ExtensionContext;
             * Constructor.
            public function EchoExtension()
                super();
                // Initialize extension.
                _extensionContext = ExtensionContext.createExtensionContext( "com.extensions.EchoExtension", "main" );
            public function echo(Prompt:String):String
                return _extensionContext.call( "echo" ) as String;
    In my main fla, on the first layer of the time line, I simply put the following code to make sure that the as file get's included when I publish the swc.
    import com.extensions.EchoExtension.EchoExtension;
    var ext:EchoExtension = new EchoExtension();
    stop();
    I then open up my fla's publish settings, turn off the swf - which I don't need, and check the swc and make sure that it outputs into my build folder.  "./Build/EchoExtension.swc"
    I also set the player to Air 3.0 (which I can do since I have successfully integrated AIR 3.0 along side my AIR 2.6 and can build both without any problems)
    I then publish the swc. So far, so good. No problems.
    I then make a copy of the swc and rename it to EchoExtension.swc.zip, at which point I extract the library.swf file from it and also place it in my build folder.
    I then create extension.xml in by build folder which contains the following code:
    <extension xmlns="http://ns.adobe.com/air/extension/2.5">
      <id>com.extensions.EchoExtension</id>
      <versionNumber>1</versionNumber>
      <platforms>
        <platform name="iPhone-ARM">
            <applicationDeployment>
                <nativeLibrary>libEchoExtension.a</nativeLibrary>
                <initializer>ExtInitializer</initializer>
                <finalizer>ExtFinalizer</finalizer>
            </applicationDeployment>
        </platform>  
      </platforms>
    </extension>
    Now, at this point I am a little wary, because I am building for the iPad2... the platform is iPhone... I thought that may be a problem and at one point I tested the same build on the iPhone4 and had the same results. I have also tested it using the platform name of iPad-ARM and got the same results... So I don't think that is the problem, but I am unsure.
    Now, to make things easier, I created a batch file called "buildane.bat" in my build folder. This is what I will use to create my .ane file and it contains the following command line:
    D:\SDKs\AirSDK30\bin\adt -package -target ane EchoExtension.ane extension.xml -swc EchoExtension.swc -platform iPhone-ARM library.swf libEchoExtension.a
    I then open a command prompt and run buildane.bat and poof. My ane is created. My build folder has the following files in it now:
    buildane.bat
    EchoExtension.ane
    EchoExtension.swc
    EchoExtension.swc.zip
    extension.xml
    libEchoExtension.a
    library.swf
    Now that I have my swc, ane, and all that, it's time to create my sample application that will be used to test my new extension.
    I go back to my D:\src\EchoExtension folder and go into the app folder I created ealier.
    I then create a new flash project called EchoExtensionTester.fla
    I open the action script settings, library paths, and add the swc that I created in my D:\src\EchoExtension\lib\build folder to my project.
    On my stage, I create an input text field called txtInput, a dynamic text field called txtEcho, and a couple of buttons called btnClear, btnRuntime, and btnEcho
    I open up the first layer in the time line and place the following code:
    // basic imports.
    import flash.desktop.NativeApplication;
    import flash.events.MouseEvent;
    import flash.text.TextField;
    // import the extension from our swc.
    import com.extensions.EchoExtension.EchoExtension;
    // set our input text field to need the softkeyboard
    txtInput.needsSoftKeyboard = true;
    // add the event handlers to our buttons.
    btnEcho.addEventListener(MouseEvent.CLICK, btnEcho_Click);
    btnClear.addEventListener(MouseEvent.CLICK, btnClear_Click);
    btnRunTime.addEventListener(MouseEvent.CLICK, btnRunTime_Click);
    // create our extension variable.
    var ext:EchoExtension;
    try
        // initialize our echo extension.
        ext = new EchoExtension();
    } catch (e:Error) {
        txtEcho.text = "Error trying to create new EchoExtension:\n\n" + e;
    stop();
    // clear the echo text field
    function btnClear_Click(e:MouseEvent):void
        txtEcho.text = "";
    // just for testing, put the current version of air runtime into our text field so we can make sure we are running air 3.0
    function btnRunTime_Click(e:MouseEvent):void
        txtEcho.text += "\nRuntime version = " + NativeApplication.nativeApplication.runtimeVersion;
    // call the extension, passing it whatever is in the input text field and have it return it and place it in our echo text field
    function btnEcho_Click(e:MouseEvent):void
        txtEcho.text += "\n";
        try
            txtEcho.text += ext.echo(txtInput.text);
        } catch (e:Error) {
            txtEcho.text += "\nError calling ext.echo: " + e;
    I then save the project, Open the Air for iOS settings and set the following:  (but yes, I know... I am going to have to use adt to do the build, but I need to create the swf first)
    Output file: EchoExtensionTester.ipa
    Appname: EchoExtensionTester
    Version 1.0
    Landscape
    Fullscreen On
    Auto orientation is off
    rendering GPU
    device: iPad and iPhone
    Res: High
    Deployement: I use my certificate and provisionging profile that I use for my Primary project (which work) and set for device testing.
    I close the window and save again... but before I publish, I open  newly created "EchoExtensionTester-app.xml" that is in my app folder.
    I add <extensions>    <extensionID>com.extensions.EchoExtension</extensionID>  </extensions> to the xml file so now it looks like this:
    <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    <application xmlns="http://ns.adobe.com/air/application/3.0">
      <extensions>
        <extensionID>com.extensions.EchoExtension</extensionID>
      </extensions>
      <id>EchoExtensionTester</id>
      <versionNumber>1.0</versionNumber>
      <filename>EchoExtensionTester</filename>
      <description/>
      <!-- To localize the description, use the following format for the description element.<description><text xml:lang="en">English App description goes here</text><text xml:lang="fr">French App description goes here</text><text xml:lang="ja">Japanese App description goes here</text></description>-->
      <name>EchoExtensionTester</name>
      <!-- To localize the name, use the following format for the name element.<name><text xml:lang="en">English App name goes here</text><text xml:lang="fr">French App name goes here</text><text xml:lang="ja">Japanese App name goes here</text></name>-->
      <copyright/>
      <initialWindow>
        <content>EchoExtensionTester.swf</content>
        <systemChrome>standard</systemChrome>
        <transparent>false</transparent>
        <visible>true</visible>
        <fullScreen>true</fullScreen>
        <aspectRatio>landscape</aspectRatio>
        <renderMode>gpu</renderMode>
        <maximizable>true</maximizable>
        <minimizable>true</minimizable>
        <resizable>true</resizable>
        <autoOrients>false</autoOrients>
      </initialWindow>
      <icon/>
      <customUpdateUI>false</customUpdateUI>
      <allowBrowserInvocation>false</allowBrowserInvocation>
      <iPhone>
        <InfoAdditions>
          <![CDATA[<key>UIDeviceFamily</key><array><string>1</string><string>2</string></array>]]>
        </InfoAdditions>
        <requestedDisplayResolution>high</requestedDisplayResolution>
      </iPhone>
    </application>
    I save the changes to the xml and go back to flash. I then publish.
    The swf is created as it should be, but then I get the error message:
    Error creating files.
    An implmentation for native extension 'com.extensions.EchoExtension' required by the application was not found for the target platform.
    Now, while this is a pain in the rear, I new this was going to happen because in my reading of tutorials and samples, they all said that you must use adt to build the ipa... but that's fine... all I wanted anyway was the swf, which I now have in my app folder.
    I close down flash as I don't need it anymore and I create a new batch file: (note: I change the names of the cert, provision profile, and password for this post)
    cls
    "D:\SDKs\AirSDK30\bin\adt" -package -target ipa-ad-hoc -storetype pkcs12 -keystore "D:\src\mycert.p12" -storepass MYPASSWORD -provisioning-profile "D:\src\myprovfile.mobileprovision" "EchoExtensionTester.ipa" "EchoExtensionTester-app.xml" "EchoExtensionTester.swf" -extdir ../lib/Build
    set /p dummy=
    echo done
    I then open a command window in my app folder and run build.bat...
    I wait about 2 minutes....
    YAY! My ipa file has been created with no errors reported so far.... Time to copy this bad boy to the iPad and see what happens.
    I open iTunes, drag "EchoExtensionTester.ipa" over to the Apps, then sync my device....
    YAY! iTunes has successfully installed the ipa on the device... and there is by bright and shiney blank icon for Echo Extension Tester...
    I open the app.... and.....
    nothing.
    I wait
    still nothing.
    I go to the bathroom.
    I get back... still nothing... just a black screen.
    I press the iPad home button, the app minimized, I restore it... nothing... black screen.
    hrm. Time to do a little trial and error to see if I can figure out where the break down is.
    As a test, I open my fla and I comment out the following lines:
    ext = new EchoExtension();
    txtEcho.text += ext.echo(txtInput.text);
    I then rebuild the swf... get the same error (don't care)... I then rebuild the ipa using the batch file.... and re-install it on the device when it's done.
    The exact same thing....
    I open the xml file... and remove the <extensionID>com.extensions.EchoExtension</extensionID> line, save and re-run the batch file again... wait for the ipa to finish, and run it on the device.
    I fire up the program on the iPad and it launches perfectly... except for the commented line of code to actually create and call the extension, everything works as it should. The runtime on the device is reporting as 3.0.0.4080
    As a test, I open the .fla back up and uncomment the 2 lines I commented out above... keeping the extensionID out of the xml file, I re-publish the ipa.... of course, this time, it actually creates the ipa from flash because the extension id is not in the xml.
    I put the ipa file with the extension code in place on the ipad... Fire it up and put some text into the txtInput and press the echo button. I get the following error:Error calling ext.echo: TypeError: Error #1009
    I suspect that is because I failed into include the extension in the descriptor... but when I build it with the extensionid in the xml, I just get a black screen. I am 99% sure that the extension context in the ext object is null (because that is what happens when I run it in flash debug without the extension lines in the xml)
    And here I am stuck.
    Can anyone tell me what I am doing wrong or what I have forgotten to do?
    Thanks.

    I have been trying to get the remote debugging working with my flash and ipad2... but I can't seem to figure it out. I looked at several tutorials, but the ipad build just doesn't want to seem to connect to the flash remote debugger.
    Anyway... here is a little more information.
    I moved the initialization of the extension from the  start of the application to the button event itself. Now, the application will start up exactly as it's supposed to, but when I press the button that creates and initalizes the extension and does the echo call, the application crashes.
    Here is the new code:
    // basic imports.
    import flash.desktop.NativeApplication;
    import flash.events.MouseEvent;
    import flash.text.TextField;
    // import the extension from our swc.
    import com.extensions.EchoExtension.EchoExtension;   
    // set our input text field to need the softkeyboard
    txtInput.needsSoftKeyboard = true;
    // add the event handlers to our buttons.
    btnEcho.addEventListener(MouseEvent.CLICK, btnEcho_Click);
    btnClear.addEventListener(MouseEvent.CLICK, btnClear_Click);
    btnRunTime.addEventListener(MouseEvent.CLICK, btnRunTime_Click);
    txtEcho.text += "Initialization complete.\n";
    stop();
    // clear the echo text field
    function btnClear_Click(e:MouseEvent):void
        txtEcho.text = "";
    // just for testing, put the current version of air runtime into our text field so we can make sure we are running air 3.0
    function btnRunTime_Click(e:MouseEvent):void
        txtEcho.text += "Runtime version = " + NativeApplication.nativeApplication.runtimeVersion +"\n" ;
    // call the extension, passing it whatever is in the input text field and have it return it and place it in our echo text field
    function btnEcho_Click(e:MouseEvent):void
    // create our extension variable.
        try
            var ext:EchoExtension = new EchoExtension();
            txtEcho.text += ext.echo(txtInput.text) +"\n" ;
            ext = null;
        } catch (err:Error) {
            txtEcho.text += "Error: " + err.message +"\n" ;
    Now, program crashes are an entirely different animal because the ipad creates a crash log! YAY!
    this is what the crash log contains:
    Incident Identifier: 4BF67A2C-FD36-495D-BB56-B3DCA4772EB8
    CrashReporter Key:   7a4dd56d46eb23a7701ad55245de2bca11c48b32
    Hardware Model:      iPad2,2
    Process:         EchoExtensionTester [9272]
    Path:            /var/mobile/Applications/90B3B31D-F516-4094-BE3B-88E1324419EC/EchoExtensionTester.app/Ech oExtensionTester
    Identifier:      EchoExtensionTester
    Version:         ??? (???)
    Code Type:       ARM (Native)
    Parent Process:  launchd [1]
    Date/Time:       2011-10-28 14:17:48.145 -0300
    OS Version:      iPhone OS 4.3.5 (8L1)
    Report Version:  104
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000
    Crashed Thread:  0
    Thread 0 name:  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:
    0   EchoExtensionTester               0x00813aac 0x1000 + 8465068
    1   EchoExtensionTester               0x005f88ec 0x1000 + 6256876
    2   EchoExtensionTester               0x00372ba4 0x1000 + 3611556
    3   EchoExtensionTester               0x006dd7c8 0x1000 + 7194568
    4   EchoExtensionTester               0x006dd25c 0x1000 + 7193180
    5   EchoExtensionTester               0x006de304 0x1000 + 7197444
    6   EchoExtensionTester               0x006dc750 0x1000 + 7190352
    7   EchoExtensionTester               0x006730cc 0x1000 + 6758604
    8   EchoExtensionTester               0x006dd0ac 0x1000 + 7192748
    9   EchoExtensionTester               0x006dc750 0x1000 + 7190352
    10  EchoExtensionTester               0x006730cc 0x1000 + 6758604
    11  EchoExtensionTester               0x006dd0ac 0x1000 + 7192748
    12  EchoExtensionTester               0x006dc750 0x1000 + 7190352
    13  EchoExtensionTester               0x006730cc 0x1000 + 6758604
    14  EchoExtensionTester               0x006dd0ac 0x1000 + 7192748
    15  EchoExtensionTester               0x0032fc90 0x1000 + 3337360
    16  EchoExtensionTester               0x00329e1c 0x1000 + 3313180
    17  EchoExtensionTester               0x0032171c 0x1000 + 3278620
    18  EchoExtensionTester               0x0032179c 0x1000 + 3278748
    19  EchoExtensionTester               0x0032ae00 0x1000 + 3317248
    20  EchoExtensionTester               0x00137328 0x1000 + 1270568
    21  EchoExtensionTester               0x004f9a5c 0x1000 + 5212764
    22  EchoExtensionTester               0x00035adc 0x1000 + 215772
    23  EchoExtensionTester               0x002f6824 0x1000 + 3102756
    24  EchoExtensionTester               0x002f7f18 0x1000 + 3108632
    25  UIKit                             0x35ef9bee 0x35ede000 + 113646
    26  UIKit                             0x35ef9568 0x35ede000 + 111976
    27  UIKit                             0x35ee230c 0x35ede000 + 17164
    28  UIKit                             0x35ee1c4c 0x35ede000 + 15436
    29  GraphicsServices                  0x321e9e70 0x321e5000 + 20080
    30  CoreFoundation                    0x316f3a90 0x3167e000 + 481936
    31  CoreFoundation                    0x316f5838 0x3167e000 + 489528
    32  CoreFoundation                    0x316f6606 0x3167e000 + 493062
    33  CoreFoundation                    0x31686ebc 0x3167e000 + 36540
    34  CoreFoundation                    0x31686dc4 0x3167e000 + 36292
    35  GraphicsServices                  0x321e9418 0x321e5000 + 17432
    36  GraphicsServices                  0x321e94c4 0x321e5000 + 17604
    37  UIKit                             0x35f0cd62 0x35ede000 + 191842
    38  UIKit                             0x35f0a800 0x35ede000 + 182272
    39  EchoExtensionTester               0x001819e4 0x1000 + 1575396
    40  EchoExtensionTester               0x00813a6c 0x1000 + 8465004
    Thread 1:
    0   libsystem_kernel.dylib            0x35afe3ec 0x35aec000 + 74732
    1   libsystem_c.dylib                 0x31bf06d8 0x31bbc000 + 214744
    2   libsystem_c.dylib                 0x31bf0bbc 0x31bbc000 + 215996
    Thread 2 name:  Dispatch queue: com.apple.libdispatch-manager
    Thread 2:
    0   libsystem_kernel.dylib            0x35afefbc 0x35aec000 + 77756
    1   libdispatch.dylib                 0x31660ed4 0x31660000 + 3796
    2   libdispatch.dylib                 0x31661f3a 0x31660000 + 7994
    3   libdispatch.dylib                 0x316614ec 0x31660000 + 5356
    4   libsystem_c.dylib                 0x31bf058a 0x31bbc000 + 214410
    5   libsystem_c.dylib                 0x31bf0bbc 0x31bbc000 + 215996
    Thread 3 name:  WebThread
    Thread 3:
    0   libsystem_kernel.dylib            0x35afbc00 0x35aec000 + 64512
    1   libsystem_kernel.dylib            0x35afb758 0x35aec000 + 63320
    2   CoreFoundation                    0x316f42b8 0x3167e000 + 484024
    3   CoreFoundation                    0x316f6562 0x3167e000 + 492898
    4   CoreFoundation                    0x31686ebc 0x3167e000 + 36540
    5   CoreFoundation                    0x31686dc4 0x3167e000 + 36292
    6   WebCore                           0x3248e27e 0x32488000 + 25214
    7   libsystem_c.dylib                 0x31bef30a 0x31bbc000 + 209674
    8   libsystem_c.dylib                 0x31bf0bb4 0x31bbc000 + 215988
    Thread 4:
    0   libsystem_kernel.dylib            0x35afdd18 0x35aec000 + 72984
    1   libsystem_c.dylib                 0x31c16860 0x31bbc000 + 370784
    2   libsystem_c.dylib                 0x31bbdeb2 0x31bbc000 + 7858
    3   EchoExtensionTester               0x004aa090 0x1000 + 4886672
    4   EchoExtensionTester               0x002a0b54 0x1000 + 2751316
    5   EchoExtensionTester               0x004aa2fc 0x1000 + 4887292
    6   EchoExtensionTester               0x004aa5e8 0x1000 + 4888040
    7   EchoExtensionTester               0x004aa748 0x1000 + 4888392
    8   libsystem_c.dylib                 0x31bef30a 0x31bbc000 + 209674
    9   libsystem_c.dylib                 0x31bf0bb4 0x31bbc000 + 215988
    Thread 5:
    0   libsystem_kernel.dylib            0x35afdd18 0x35aec000 + 72984
    1   libsystem_c.dylib                 0x31c16860 0x31bbc000 + 370784
    2   libsystem_c.dylib                 0x31bbdeb2 0x31bbc000 + 7858
    3   EchoExtensionTester               0x004aa090 0x1000 + 4886672
    4   EchoExtensionTester               0x002a0b54 0x1000 + 2751316
    5   EchoExtensionTester               0x004aa2fc 0x1000 + 4887292
    6   EchoExtensionTester               0x004aa5e8 0x1000 + 4888040
    7   EchoExtensionTester               0x004aa748 0x1000 + 4888392
    8   libsystem_c.dylib                 0x31bef30a 0x31bbc000 + 209674
    9   libsystem_c.dylib                 0x31bf0bb4 0x31bbc000 + 215988
    Thread 6:
    0   libsystem_kernel.dylib            0x35afbc74 0x35aec000 + 64628
    1   libsystem_kernel.dylib            0x35afbf46 0x35aec000 + 65350
    2   libsystem_c.dylib                 0x31c16812 0x31bbc000 + 370706
    3   libsystem_c.dylib                 0x31c169fe 0x31bbc000 + 371198
    4   EchoExtensionTester               0x004a9f60 0x1000 + 4886368
    5   EchoExtensionTester               0x001b8908 0x1000 + 1800456
    6   EchoExtensionTester               0x001b893c 0x1000 + 1800508
    7   EchoExtensionTester               0x004aa2fc 0x1000 + 4887292
    8   EchoExtensionTester               0x004aa5e8 0x1000 + 4888040
    9   EchoExtensionTester               0x004aa748 0x1000 + 4888392
    10  libsystem_c.dylib                 0x31bef30a 0x31bbc000 + 209674
    11  libsystem_c.dylib                 0x31bf0bb4 0x31bbc000 + 215988
    Thread 7:
    0   libsystem_kernel.dylib            0x35afdd18 0x35aec000 + 72984
    1   libsystem_c.dylib                 0x31c16860 0x31bbc000 + 370784
    2   libsystem_c.dylib                 0x31bbde86 0x31bbc000 + 7814
    3   EchoExtensionTester               0x004aa044 0x1000 + 4886596
    4   EchoExtensionTester               0x0039367c 0x1000 + 3745404
    5   EchoExtensionTester               0x004aa2fc 0x1000 + 4887292
    6   EchoExtensionTester               0x004aa5e8 0x1000 + 4888040
    7   EchoExtensionTester               0x004aa748 0x1000 + 4888392
    8   libsystem_c.dylib                 0x31bef30a 0x31bbc000 + 209674
    9   libsystem_c.dylib                 0x31bf0bb4 0x31bbc000 + 215988
    Thread 0 crashed with ARM Thread State:
        r0: 0x03ebb060    r1: 0x00000000      r2: 0x00000000      r3: 0x00000000
        r4: 0x043b19e0    r5: 0x00000002      r6: 0x2fdfc178      r7: 0x2fdfc108
        r8: 0x043b19e0    r9: 0x007d47d4     r10: 0x2fdfc1e4     r11: 0x043b19f0
        ip: 0x00813aad    sp: 0x2fdfc03c      lr: 0x005f88f4      pc: 0x00813aac
      cpsr: 0x68000030
    Binary Images:
        0x1000 -   0x8d6fff +EchoExtensionTester armv7  <4c58623df42ff7826b2bf3efab136467> /var/mobile/Applications/90B3B31D-F516-4094-BE3B-88E1324419EC/EchoExtensionTester.app/Ech oExtensionTester
    0x2fe00000 - 0x2fe25fff  dyld armv7  <4d3190188cbf32a8a73f32a8b5bb7adf> /usr/lib/dyld
    0x30986000 - 0x309b9fff  QuickLook armv7  <29d2d981d1d6358381f5716ee37314b4> /System/Library/Frameworks/QuickLook.framework/QuickLook
    0x30ab8000 - 0x30abefff  StoreKit armv7  <0deee3e11c7632aab98ab3c026d41e41> /System/Library/Frameworks/StoreKit.framework/StoreKit
    0x30ac5000 - 0x30af3fff  DataAccess armv7  <3a2e67aa1d8834b7a8fc2fbb56654b15> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
    0x30af4000 - 0x30b9afff  GameKit armv7  <844f6d90111f3e81961a723f557dd2a1> /System/Library/Frameworks/GameKit.framework/GameKit
    0x30bbf000 - 0x30c7efff  CFNetwork armv7  <b09e0d53de9f3bc8bde494780f3cdd4f> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
    0x30c81000 - 0x30d05fff  AVFoundation armv7  <eeaf5f4f822436a5bd1655f536e69879> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
    0x30e07000 - 0x30f07fff  libGLProgrammability.dylib armv7  <c0e6b958279639c098136283c6ad06a8> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
    0x30f08000 - 0x30f0bfff  ActorKit armv7  <f7aa6cdd654231988aafcf448978f450> /System/Library/PrivateFrameworks/ActorKit.framework/ActorKit
    0x30f0c000 - 0x30f52fff  CoreTelephony armv7  <af7d1e770e5a3ffd8834a57fb5d40557> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
    0x30f56000 - 0x30f5dfff  AggregateDictionary armv7  <ab9777b39e8e3026ad64dc90323cad7e> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
    0x30f85000 - 0x31072fff  libiconv.2.dylib armv7  <f4146ce07e3031ea8a81fa5516fd77d0> /usr/lib/libiconv.2.dylib
    0x3107a000 - 0x310affff  AddressBook armv7  <3f2071a77bc134cd82065eef90d4082f> /System/Library/Frameworks/AddressBook.framework/AddressBook
    0x310b0000 - 0x311d1fff  CoreGraphics armv7  <65f6c8701b563542820a26b0dfc4f6a4> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
    0x31209000 - 0x31241fff  IOKit armv7  <80ae313ad69d3363935c88e51a11862d> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x31242000 - 0x3129bfff  EventKit armv7  <0d4e597ee229337183e96e921a72e30a> /System/Library/Frameworks/EventKit.framework/EventKit
    0x312af000 - 0x3136bfff  MapKit armv7  <806f9ca7eb593d1998587441ce87a396> /System/Library/Frameworks/MapKit.framework/MapKit
    0x3136c000 - 0x31466fff  GameKitServices armv7  <a69426414c4634cda77409d5890696ac> /System/Library/PrivateFrameworks/GameKitServices.framework/GameKitServices
    0x31469000 - 0x314a6fff  CoreText armv7  <fb6a72faec2330c4b2cd33c2e9c59588> /System/Library/Frameworks/CoreText.framework/CoreText
    0x314a7000 - 0x314abfff  libGFXShared.dylib armv7  <a0772a32cd8b3b9194bb0c29807c1c5b> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
    0x314ac000 - 0x314c7fff  FTServices armv7  <e23c3572bf3a36a3a99364d18c484f1e> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
    0x314c8000 - 0x31519fff  libsqlite3.dylib armv7  <8a41cc6a6d9332308bc415d27577fd24> /usr/lib/libsqlite3.dylib
    0x31624000 - 0x31626fff  libAccessibility.dylib armv7  <d55f1553d14831a2a5435ae27ef75ef4> /usr/lib/libAccessibility.dylib
    0x31627000 - 0x3165ffff  libCGFreetype.A.dylib armv7  <416c77100b453e3f838831c4c857f8c7> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGFreetype.A.dylib
    0x31660000 - 0x3166dfff  libdispatch.dylib armv7  <9a0511ad5ebc3db898f1f49ed1a73d34> /usr/lib/system/libdispatch.dylib
    0x3167e000 - 0x31763fff  CoreFoundation armv7  <a8444f997111304c9571b3ff974b769c> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
    0x31797000 - 0x317cefff  Security armv7  <6599f42a910b3b31a0e1d98c883d61cb> /System/Library/Frameworks/Security.framework/Security
    0x317cf000 - 0x317effff  PrintKit armv7  <e5a01ca9083a36afacc08611a398e2ad> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
    0x31851000 - 0x31858fff  libbz2.1.0.dylib armv7  <0a082e1d475432959ba93aa3dbf7fb31> /usr/lib/libbz2.1.0.dylib
    0x31ba0000 - 0x31ba8fff  MobileBluetooth armv7  <63f11756c4aa3262b2317ff3b8e2a977> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
    0x31bbc000 - 0x31c3dfff  libsystem_c.dylib armv7  <17ee3fe220c23b1f898d21ba25b2bcac> /usr/lib/system/libsystem_c.dylib
    0x31c5a000 - 0x31d6cfff  MediaPlayer armv7  <da848c0745a637af81d7edd962a09324> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
    0x31d6d000 - 0x31e0afff  AddressBookUI armv7  <e354aeb3d96e30338e90cc3638ffe81b> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
    0x31e0b000 - 0x31e3afff  SystemConfiguration armv7  <1d73b8a159363f96bb9c039655c5eae6> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
    0x31e42000 - 0x31e4bfff  MobileWiFi armv7  <03d98d5cf6383695aa7d8a88da52f410> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
    0x31e4c000 - 0x31e4cfff  libCVMSPluginSupport.dylib armv7  <42d8aa2a31843a6e8bfff745644a7ba5> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
    0x31e4d000 - 0x31e4dfff  Accelerate armv7  <7d5ad465049136afaa1f0d89aac600bc> /System/Library/Frameworks/Accelerate.framework/Accelerate
    0x31e6b000 - 0x31e6efff  CaptiveNetwork armv7  <fc834fd33a18341ea7506587ad895703> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
    0x31e6f000 - 0x31e81fff  TelephonyUI armv7  <e2c34b9a391e3384875ac552dbca0ad4> /System/Library/PrivateFrameworks/TelephonyUI.framework/TelephonyUI
    0x31e82000 - 0x31e97fff  libresolv.9.dylib armv7  <e92cfbb83f7b330db19181e797bb3f7b> /usr/lib/libresolv.9.dylib
    0x31e98000 - 0x31ea3fff  libz.1.dylib armv7  <ac706bee36593dc683fd5a96a389d72e> /usr/lib/libz.1.dylib
    0x31ec7000 - 0x31ec9fff  SpringBoardUI armv7  <90ba5da3e3e337e0a83e2c2589d951a8> /System/Library/PrivateFrameworks/SpringBoardUI.framework/SpringBoardUI
    0x31ed3000 - 0x31ef0fff  libsystem_info.dylib armv7  <48016be86e3f3cd9aeee1c6590e1ac6f> /usr/lib/system/libsystem_info.dylib
    0x31ef2000 - 0x31ef4fff  libgcc_s.1.dylib armv7  <a2631ac302f4310dae8367939e16b7c2> /usr/lib/libgcc_s.1.dylib
    0x31f0c000 - 0x31f3ffff  AppSupport armv7  <0217468bd9f839229a47910b7816b3d5> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
    0x31f40000 - 0x31f43fff  IOSurface armv7  <ad50e71624583d06b891344d832f9b08> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
    0x31f64000 - 0x31f79fff  OpenAL armv7  <162722d7da273d649798b27ae0e4458c> /System/Library/Frameworks/OpenAL.framework/OpenAL
    0x31fa8000 - 0x31fb7fff  MobileDeviceLink armv7  <563a09bcdb2f32369b1e22f53f58273a> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
    0x31fb8000 - 0x31ff4fff  libGLImage.dylib armv7  <9d97699e44ee3651ba4ac37e5adec35b> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
    0x31ff5000 - 0x3203ffff  libstdc++.6.dylib armv7  <e98c3fd72ba43d02aac24b08f7219eb7> /usr/lib/libstdc++.6.dylib
    0x32044000 - 0x3204bfff  libMobileGestalt.dylib armv7  <55f29184efcc3046bb833dd72a4487e1> /usr/lib/libMobileGestalt.dylib
    0x320af000 - 0x320d3fff  MediaControl armv7  <1cfc7d79f554357ab59eb69f9efebf07> /System/Library/PrivateFrameworks/MediaControl.framework/MediaControl
    0x320d6000 - 0x320dbfff  libcopyfile.dylib armv7  <e32cf2d48a1f3060b372ca7623e4a12b> /usr/lib/system/libcopyfile.dylib
    0x320df000 - 0x320e5fff  BluetoothManager armv7  <7861bc6128d93f72877df2f234434a47> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
    0x320f2000 - 0x320f7fff  liblaunch.dylib armv7  <f5ccc8234aea3ebd9a88bd37f0fa23ae> /usr/lib/system/liblaunch.dylib
    0x32124000 - 0x32127fff  MobileIcons armv7  <08e426f8a707388d8adda670bfed0c2e> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
    0x3216d000 - 0x321a0fff  iCalendar armv7  <34ce1957082f3518b5740ac33cfc92eb> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
    0x321e5000 - 0x321f1fff  GraphicsServices armv7  <ff78a9636e933f0dbd222f8d26209788> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
    0x321f2000 - 0x32231fff  libSystem.B.dylib armv7  <64cf947dd8423eeeb677f81dd3eb2d9d> /usr/lib/libSystem.B.dylib
    0x32232000 - 0x3225bfff  ContentIndex armv7  <ecd71782cd833360872b943ecc65d203> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
    0x32270000 - 0x322a5fff  ImageCapture armv7  <2c474beec10f3791ac8a1d37df04600f> /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture
    0x322a6000 - 0x322dafff  VideoToolbox armv7  <570c63dc3a273a5a8c9072fd5567f5c1> /System/Library/PrivateFrameworks/VideoToolbox.framework/VideoToolbox
    0x32301000 - 0x32409fff  CoreData armv7  <9843a401dd1d322383e3e40021cc8b95> /System/Library/Frameworks/CoreData.framework/CoreData
    0x3240a000 - 0x3240cfff  Marco armv7  <53203fa831ab34f894f3a3811bf3917c> /System/Library/PrivateFrameworks/Marco.framework/Marco
    0x32440000 - 0x32443fff  ArtworkCache armv7  <4863e321afee3ac5a3749e50cd926597> /System/Library/PrivateFrameworks/ArtworkCache.framework/ArtworkCache
    0x32444000 - 0x32452fff  OpenGLES armv7  <5a76beaeaa013f0cbf16e5cb154598ab> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
    0x32468000 - 0x32487fff  Bom armv7  <b178e3efb4d733c694bd5a55e57a314f> /System/Library/PrivateFrameworks/Bom.framework/Bom
    0x32488000 - 0x32a93fff  WebCore armv7  <07941e59d0a33f94802c16c76238fddf> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
    0x32a98000 - 0x32a9afff  IOMobileFramebuffer armv7  <683f321680763e519d61541170ba2133> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
    0x32a9b000 - 0x32adbfff  CoreMedia armv7  <8e0570582ba535bfa74f1f00eef64376> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
    0x32ade000 - 0x32ae1fff  MediaRemote armv7  <0804293b2774359189f3a67e2c81558d> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
    0x32ae3000 - 0x32ae8fff  libnotify.dylib armv7  <9d7198e91de9386a9e5ea43608a66a57> /usr/lib/system/libnotify.dylib
    0x32be5000 - 0x32ed2fff  libLAPACK.dylib armv7  <b855d60dac01310495453bddfd004f0d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dyl ib
    0x32f68000 - 0x32f69fff  libremovefile.dylib armv7  <0fa08e1bb47a3d179072a933d1726597> /usr/lib/system/libremovefile.dylib
    0x32f6a000 - 0x32fbffff  libvDSP.dylib armv7  <0221caba81a235c5a896a835e2aac047> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
    0x32fc0000 - 0x33084fff  libobjc.A.dylib armv7  <a89ef30f6d663254babb6329ce02ca3d> /usr/lib/libobjc.A.dylib
    0x33085000 - 0x330b3fff  MIME armv7  <60de1fe0bbb134d788c09f7c34b1caa4> /System/Library/PrivateFrameworks/MIME.framework/MIME
    0x330bc000 - 0x3311bfff  libBLAS.dylib armv7  <0b36b2272aa33a8c9aa22d99c89d7189> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
    0x33120000 - 0x331cffff  QuartzCore armv7  <ef9632c9781f3101916b65e9faae1579> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
    0x331d0000 - 0x331d2fff  Camera armv7  <fd4d53b318ab35ce9bb89db3879120f0> /System/Library/PrivateFrameworks/Camera.framework/Camera
    0x331fa000 - 0x331fdfff  ApplePushService armv7  <015c68c15621348db9f6a012499170e1> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
    0x331fe000 - 0x3331dfff  Foundation armv7  <09ff368178c5321c9715b9c8d491d53f> /System/Library/Frameworks/Foundation.framework/Foundation
    0x3331e000 - 0x33361fff  ManagedConfiguration armv7  <f790c26852cb3cf298abe56bc9a3940b> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
    0x33391000 - 0x33396fff  libsystem_dnssd.dylib armv7  <f019bc513a6a37f4a79555b3ffb2a777> /usr/lib/system/libsystem_dnssd.dylib
    0x33439000 - 0x33446fff  libbsm.0.dylib armv7  <0a1e2bb78d5138419ecad8ba0fe42fdd> /usr/lib/libbsm.0.dylib
    0x3346f000 - 0x34ebdfff  TextInput armv7  <f242acc046073c1598195dd26fd8ad6f> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
    0x34f49000 - 0x34f4bfff  CrashReporterSupport armv7  <9e7efa009730322f84bbc5d8bf1ded94> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
    0x34f4e000 - 0x34f54fff  IAP armv7  <c0f4c99a1b493e489948f231ad9238e2> /System/Library/PrivateFrameworks/IAP.framework/IAP
    0x34f99000 - 0x34fe7fff  GMM armv7  <049361f664eb3f30b0d25cd56ffc1f0f> /System/Library/PrivateFrameworks/GMM.framework/GMM
    0x34fe8000 - 0x35031fff  IMCore armv7  <9c1e280e1fa33fa784cad479b9cbd941> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
    0x35032000 - 0x35077fff  IMAVCore armv7  <a4dbb6f1203e3f569080707b3a388573> /System/Library/PrivateFrameworks/IMAVCore.framework/IMAVCore
    0x3507a000 - 0x35086fff  HomeSharing armv7  <2df6957cdfea31aea12eebf27ca1691c> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
    0x3509e000 - 0x3516ffff  IMGSGX543GLDriver armv7  <406a4fa178c036e78cdc9537d5332c2e> /System/Library/Extensions/IMGSGX543GLDriver.bundle/IMGSGX543GLDriver
    0x35170000 - 0x3526ffff  PhotoLibrary armv7  <03a0336e443b3d958419dab3d432b147> /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary
    0x35270000 - 0x35276fff  liblockdown.dylib armv7  <14c89b7346433c1f8675f454531f6ca3> /usr/lib/liblockdown.dylib
    0x352b1000 - 0x352dbfff  libtidy.A.dylib armv7  <68abd33352613e80a099a46d38704085> /usr/lib/libtidy.A.dylib
    0x352ff000 - 0x35303fff  AssetsLibraryServices armv7  <e1cbfe599c96369ca4bdb0dd99d3cd9f> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
    0x35304000 - 0x35346fff  CoreAudio armv7  <c972fd5f8e89333ca680b9a33587f896> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
    0x35347000 - 0x35351fff  ExternalAccessory armv7  <eebb4bdbbefb37419b884ffa011e1dc5> /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory
    0x35352000 - 0x3535cfff  AccountSettings armv7  <d083fb384dc7311eb6766b9b2d2dd9c8> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
    0x3536e000 - 0x3538efff  AppleAccount armv7  <4e0ac5cf93b338ab8c5f34ba3c5e2ee4> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
    0x3544b000 - 0x3544bfff  libdnsinfo.dylib armv7  <21415179ffa03f949fa8cc851c6c31c7> /usr/lib/system/libdnsinfo.dylib
    0x35645000 - 0x356eefff  libxml2.2.dylib armv7  <5538d3f2c7d83b88b06168488fe6326b> /usr/lib/libxml2.2.dylib
    0x356ef000 - 0x35809fff  libicucore.A.dylib armv7  <bada0c2725bb31a483d5adf9aaf1f8df> /usr/lib/libicucore.A.dylib
    0x35883000 - 0x3590dfff  Message armv7  <2cce1aa95a493906bb0227197f9e4b96> /System/Library/PrivateFrameworks/Message.framework/Message
    0x35911000 - 0x35a65fff  AudioToolbox armv7  <6619c8c13f8d328e923e797fa8d0df23> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
    0x35a6e000 - 0x35a73fff  MobileKeyBag armv7  <8c35c090bc373cb181fc26b961b8dba5> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
    0x35a77000 - 0x35ae6fff  ProofReader armv7  <6d843c6aecdd37ae84baa40af8ad7e65> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
    0x35aec000 - 0x35b03fff  libsystem_kernel.dylib armv7  <c4ebe7eb2e6c3a2d9bd3620a4d6dbc0e> /usr/lib/system/libsystem_kernel.dylib
    0x35b04000 - 0x35c50fff  MediaToolbox armv7  <482b13059e8a329fa5d832baede25103> /System/Library/PrivateFrameworks/MediaToolbox.framework/MediaToolbox
    0x35c51000 - 0x35c51fff  libsystem_sandbox.dylib armv7  <f47c01d627853b328e088b3fdd08e87d> /usr/lib/system/libsystem_sandbox.dylib
    0x35cab000 - 0x35cf2fff  MessageUI armv7  <35a81f5d4eb03467a1447db80337e570> /System/Library/Frameworks/MessageUI.framework/MessageUI
    0x35d49000 - 0x35d72fff  MobileCoreServices armv7  <57fef84bdc17301d8bf53ba0fb967fe6> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
    0x35d73000 - 0x35d8bfff  iAd armv7  <7f6c5b4499ee383ea75f0cc8dcb5ca35> /System/Library/Frameworks/iAd.framework/iAd
    0x35d8c000 - 0x35d9bfff  Notes armv7  <d9c976ca976e3d029f69febd48f17601> /System/Library/PrivateFrameworks/Notes.framework/Notes
    0x35d9d000 - 0x35db6fff  libRIP.A.dylib armv7  <4825c3e392983aba947eca06555e4480> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
    0x35db7000 - 0x35ea3fff  GLEngine armv7  <f216c91c5fdb38a9ae65dc6651ccbd02> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
    0x35ebb000 - 0x35edbfff  MobileSync armv7  <4df400c4559435889eccd88db77a110c> /System/Library/PrivateFrameworks/MobileSync.framework/MobileSync
    0x35edc000 - 0x35eddfff  libsystem_blocks.dylib armv7  <ccc041df3de73eafb7a59e74cdb1702b> /usr/lib/system/libsystem_blocks.dylib
    0x35ede000 - 0x3626bfff  UIKit armv7  <c271b78464d93cb7bf28c6e49df293ba> /System/Library/Frameworks/UIKit.framework/UIKit
    0x3626c000 - 0x3657ffff  GeoServices armv7  <88616f3deada3bb495fc15e3ba58dc83> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
    0x365bb000 - 0x365cbfff  WebBookmarks armv7  <6956561235333e74b8ff316cb2edc93e> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
    0x365dc000 - 0x36622fff  CoreLocation armv7  <249b8af3dc503d11bf3711f0407c66d8> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
    0x36629000 - 0x36629fff  vecLib armv7  <0c60cd0a60f43d2791d36cb357d30e3c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
    0x3663f000 - 0x36640fff  CoreSurface armv7  <7b83cd757da73e6e826693c29296d3fa> /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface
    0x36641000 - 0x366d6fff  ImageIO armv7  <d520e3241d1130e8ac1375ee0f2c1095> /System/Library/Frameworks/ImageIO.framework/ImageIO
    0x366d7000 - 0x3679dfff  MusicLibrary armv7  <71a09022bd8b3b6a90a250199d190f10> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
    0x3679e000 - 0x36844fff  Celestial armv7  <407badafc6403692bf099d542d28bf7f> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
    0x36847000 - 0x36849fff  MobileInstallation armv7  <94b6d6c5d9883175af26764567528127> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
    0x3684e000 - 0x36850fff  MailServices armv7  <74ae0145ef713c6d91fd8f68885b0a61> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
    0x36851000 - 0x368b7fff  EventKitUI armv7  <b3b568df80863f2e9374054bab335bf3> /System/Library/Frameworks/EventKitUI.framework/EventKitUI
    0x369e7000 - 0x36a98fff  WebKit armv7  <eb9a0d69c64b3127b2bffd71641add3b> /System/Library/PrivateFrameworks/WebKit.framework/WebKit
    0x36b4e000 - 0x36c7afff  libmecabra.dylib armv7  <113de5f9858c32b8b158bfdc68042a97> /usr/lib/libmecabra.dylib
    0x36c7c000 - 0x36c92fff  EAP8021X armv7  <9fefc0ada30435fbb3b51818c74f6cb8> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
    0x36c93000 - 0x36c99fff  ProtocolBuffer armv7  <f9277ee9b85b3722975ad319a323aca0> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
    0x36cda000 - 0x36cdefff  libcache.dylib armv7  <362fdd2de66f3e189b5d139c9669a9e3> /usr/lib/system/libcache.dylib
    0x36cdf000 - 0x36cf1fff  PersistentConnection armv7  <659ea9d5b13d3fefb37acff09016a69c> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
    0x36d08000 - 0x36d11fff  ITSync armv7  <ba8b48d061903e4096774344448776d0> /System/Library/PrivateFrameworks/ITSync.framework/ITSync
    0x36d13000 - 0x36e17fff  JavaScriptCore armv7  <61a94142e2d23dafa2964190dd46e9e3> /System/Library/PrivateFrameworks/JavaScriptCore.framework/JavaScriptCore
    0x36e1b000 - 0x36e24fff  CoreVideo armv7  <ea847e6dba2d36b1826b255c73b39539> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
    0x36e25000 - 0x36e28fff  libmacho.dylib armv7  <53908d448e9e32418652a4afee5bc578> /usr/lib/system/libmacho.dylib
    0x36e29000 - 0x36e77fff  CoreMotion armv7  <5e6b884d36d93789b40b7f3876130417> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
    0x36e7d000 - 0x36e7efff  DataMigration armv7  <42e9e87a4e0735c3837e27d4f2adcf55> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
    0x36e7f000 - 0x36e85fff  AssetsLibrary armv7  <124dd93095423fcf8029d3c7614dffd4> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
    0x36ee6000 - 0x36ef9fff  libmis.dylib armv7  <529ea6e3a87230ce9f6cf3285c22429c> /usr/lib/libmis.dylib
    0x36f16000 - 0x36f17fff  libsystem_network.dylib armv7  <3e0b7d6754cd33669c0680525f03ede1> /usr/lib/system/libsystem_network.dylib
    0x36f18000 - 0x36f4bfff  StoreServices armv7  <d526715648f435c3aac4c42953e76d20> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
    0x36fa9000 - 0x3706afff  RawCamera armv7  <0c52d8b1498c3dbb9aad95f3bcd8261d> /System/Library/CoreServices/RawCamera.bundle/RawCamera
    0x370b2000 - 0x370ddfff  IMFoundation armv7  <f1f21bedbf2e3ea38f692abef0005d76> /System/Library/PrivateFrameworks/IMCore.framework/Frameworks/IMFoundation.framework/IMFo undation
    0x370e4000 - 0x370e5fff  libdyld.dylib armv7  <7dd4acfe150831e0ae82296587e67e7f> /usr/lib/system/libdyld.dylib
    0x370ec000 - 0x370fcfff  DataAccessExpress armv7  <66d9047da79a31daa887e6d84c42ecb2> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
    0x37144000 - 0x37147fff  CertUI armv7  <9060fe03a4943ef295531feced9a17dd> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
    0x37148000 - 0x37154fff  SpringBoardServices armv7  <c68262667ac8397a949ce4e92dfec7db> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices

  • OBIEE 10g installation problem on Windows Vista

    Hi,
    I tried to install OBIEE 10.1.3.4.2 on Windows Vista, but the installation got hanged with the following error: I am very new to OBIEE and could not make out the error... could anyone please help me out ?? Thanks in advance!!
    ------install file error-----------------
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizard.platform.win32.win32service.WindowsServiceControlAction, wrn, ServiceException: (error code = -120003; message = "Access is denied.
    (5)"; severity = 0)
    STACK_TRACE: 15
    ServiceException: (error code = -120003; message = "Access is denied.
    (5)"; severity = 0)
         at com.installshield.wizard.platform.win32.Win32ServiceImpl.controlNTService(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.wizard.platform.win32.GenericWin32Service.controlNTService(GenericWin32Service.java:93)
         at com.installshield.wizard.platform.win32.win32service.WindowsServiceControlAction.execute(WindowsServiceControlAction.java:67)
         at com.installshield.wizard.StandardWizardListener.execute(StandardWizardListener.java:123)
         at com.installshield.wizard.StandardWizardListener.currentBeanChanged(StandardWizardListener.java:106)
         at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1564)
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows .*" version="." arch="."
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition, err, ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
    STACK_TRACE: 23
    ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
         at com.installshield.wizard.platform.win32.Win32ServiceImpl.serviceExists(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.wizard.platform.win32.GenericWin32Service.serviceExists(GenericWin32Service.java:178)
         at com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition.evaluateTrueCondition(WindowsServiceExistsWizardBeanCondition.java:86)
         at com.installshield.wizard.WizardBeanCondition.isMet(WizardBeanCondition.java:149)
         at com.installshield.util.ConditionSet.evaluteANDExpression(ConditionSet.java:98)
         at com.installshield.util.ConditionSet.isMet(ConditionSet.java:88)
         at com.installshield.wizard.WizardBean.conditionsMet(WizardBean.java:312)
         at com.installshield.wizard.ConditionalWizardTreeIterator.accept(ConditionalWizardTreeIterator.java:45)
         at com.installshield.wizard.StandardWizardTreeIterator.accept(StandardWizardTreeIterator.java:174)
         at com.installshield.wizard.StandardWizardTreeIterator.getNext(StandardWizardTreeIterator.java:73)
         at com.installshield.wizard.ActiveWizardTreeIterator.getNext(ActiveWizardTreeIterator.java:36)
         at com.installshield.wizard.ConditionalWizardTreeIterator.getNext(ConditionalWizardTreeIterator.java:40)
         at com.installshield.wizard.MultiWizardTreeIterator.getNext(MultiWizardTreeIterator.java:68)
         at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1571)
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition, err, ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
    STACK_TRACE: 23
    ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
         at com.installshield.wizard.platform.win32.Win32ServiceImpl.serviceExists(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.wizard.platform.win32.GenericWin32Service.serviceExists(GenericWin32Service.java:178)
         at com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition.evaluateTrueCondition(WindowsServiceExistsWizardBeanCondition.java:86)
         at com.installshield.wizard.WizardBeanCondition.isMet(WizardBeanCondition.java:149)
         at com.installshield.util.ConditionSet.evaluteANDExpression(ConditionSet.java:98)
         at com.installshield.util.ConditionSet.isMet(ConditionSet.java:88)
         at com.installshield.wizard.WizardBean.conditionsMet(WizardBean.java:312)
         at com.installshield.wizard.ConditionalWizardTreeIterator.accept(ConditionalWizardTreeIterator.java:45)
         at com.installshield.wizard.StandardWizardTreeIterator.accept(StandardWizardTreeIterator.java:174)
         at com.installshield.wizard.StandardWizardTreeIterator.getNext(StandardWizardTreeIterator.java:73)
         at com.installshield.wizard.ActiveWizardTreeIterator.getNext(ActiveWizardTreeIterator.java:36)
         at com.installshield.wizard.ConditionalWizardTreeIterator.getNext(ConditionalWizardTreeIterator.java:40)
         at com.installshield.wizard.MultiWizardTreeIterator.getNext(MultiWizardTreeIterator.java:68)
         at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1571)
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition, err, ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
    STACK_TRACE: 23
    ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
         at com.installshield.wizard.platform.win32.Win32ServiceImpl.serviceExists(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.wizard.platform.win32.GenericWin32Service.serviceExists(GenericWin32Service.java:178)
         at com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition.evaluateTrueCondition(WindowsServiceExistsWizardBeanCondition.java:86)
         at com.installshield.wizard.WizardBeanCondition.isMet(WizardBeanCondition.java:149)
         at com.installshield.util.ConditionSet.evaluteANDExpression(ConditionSet.java:98)
         at com.installshield.util.ConditionSet.isMet(ConditionSet.java:88)
         at com.installshield.wizard.WizardBean.conditionsMet(WizardBean.java:312)
         at com.installshield.wizard.ConditionalWizardTreeIterator.accept(ConditionalWizardTreeIterator.java:45)
         at com.installshield.wizard.StandardWizardTreeIterator.accept(StandardWizardTreeIterator.java:174)
         at com.installshield.wizard.StandardWizardTreeIterator.getNext(StandardWizardTreeIterator.java:73)
         at com.installshield.wizard.ActiveWizardTreeIterator.getNext(ActiveWizardTreeIterator.java:36)
         at com.installshield.wizard.ConditionalWizardTreeIterator.getNext(ConditionalWizardTreeIterator.java:40)
         at com.installshield.wizard.MultiWizardTreeIterator.getNext(MultiWizardTreeIterator.java:68)
         at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1571)
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition, err, ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
    STACK_TRACE: 23
    ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
         at com.installshield.wizard.platform.win32.Win32ServiceImpl.serviceExists(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.wizard.platform.win32.GenericWin32Service.serviceExists(GenericWin32Service.java:178)
         at com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition.evaluateTrueCondition(WindowsServiceExistsWizardBeanCondition.java:86)
         at com.installshield.wizard.WizardBeanCondition.isMet(WizardBeanCondition.java:149)
         at com.installshield.util.ConditionSet.evaluteANDExpression(ConditionSet.java:98)
         at com.installshield.util.ConditionSet.isMet(ConditionSet.java:88)
         at com.installshield.wizard.WizardBean.conditionsMet(WizardBean.java:312)
         at com.installshield.wizard.ConditionalWizardTreeIterator.accept(ConditionalWizardTreeIterator.java:45)
         at com.installshield.wizard.StandardWizardTreeIterator.accept(StandardWizardTreeIterator.java:174)
         at com.installshield.wizard.StandardWizardTreeIterator.getNext(StandardWizardTreeIterator.java:73)
         at com.installshield.wizard.ActiveWizardTreeIterator.getNext(ActiveWizardTreeIterator.java:36)
         at com.installshield.wizard.ConditionalWizardTreeIterator.getNext(ConditionalWizardTreeIterator.java:40)
         at com.installshield.wizard.MultiWizardTreeIterator.getNext(MultiWizardTreeIterator.java:68)
         at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1571)
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition, err, ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
    STACK_TRACE: 23
    ServiceException: (error code = -1200012; message = "Access is denied.
    (5)"; severity = 0)
         at com.installshield.wizard.platform.win32.Win32ServiceImpl.serviceExists(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.installshield.wizard.service.LocalImplementorProxy.invoke(LocalImplementorProxy.java:52)
         at com.installshield.wizard.service.AbstractService.invokeImpl(AbstractService.java:51)
         at com.installshield.wizard.platform.win32.GenericWin32Service.serviceExists(GenericWin32Service.java:178)
         at com.installshield.wizard.platform.win32.win32service.WindowsServiceExistsWizardBeanCondition.evaluateTrueCondition(WindowsServiceExistsWizardBeanCondition.java:86)
         at com.installshield.wizard.WizardBeanCondition.isMet(WizardBeanCondition.java:149)
         at com.installshield.util.ConditionSet.evaluteANDExpression(ConditionSet.java:98)
         at com.installshield.util.ConditionSet.isMet(ConditionSet.java:88)
         at com.installshield.wizard.WizardBean.conditionsMet(WizardBean.java:312)
         at com.installshield.wizard.ConditionalWizardTreeIterator.accept(ConditionalWizardTreeIterator.java:45)
         at com.installshield.wizard.StandardWizardTreeIterator.accept(StandardWizardTreeIterator.java:174)
         at com.installshield.wizard.StandardWizardTreeIterator.getNext(StandardWizardTreeIterator.java:73)
         at com.installshield.wizard.ActiveWizardTreeIterator.getNext(ActiveWizardTreeIterator.java:36)
         at com.installshield.wizard.ConditionalWizardTreeIterator.getNext(ConditionalWizardTreeIterator.java:40)
         at com.installshield.wizard.MultiWizardTreeIterator.getNext(MultiWizardTreeIterator.java:68)
         at com.installshield.wizard.Wizard$RunThread.run(Wizard.java:1571)
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows .*" version="." arch="."
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows NT\|Windows 2000" version="5\.0" arch="."
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="\(Windows NT\|Windows 2000\)\|\(Windows X.\)" version="5\.1" arch="."
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows .*" version="5\.2" arch="."
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:55:53 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows .*" version="6\.0" arch="."
    (13 Jun, 2012 11:56:45 AM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "\VC80\vcredist_x86.exe": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "\VC80\vcredist_x86.exe": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)
    (13 Jun, 2012 11:57:36 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:57:36 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows .*" version="." arch="."
    (13 Jun, 2012 11:57:48 AM), Install.product.install, com.installshield.product.actions.UninstallerJVMResolution, dbg.jvm, attempting to use the current JVM
    (13 Jun, 2012 11:57:48 AM), Install.product.install, com.installshield.product.actions.UninstallerJVMResolution, dbg.jvm, searching for a JVM
    (13 Jun, 2012 11:57:49 AM), Install.product.install, com.installshield.wizard.platform.win32.Win32JVMServiceImpl, dbg.jvm, executing launcher to resolve JVM
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.wizard.service.jvm.PureJavaJVMServiceImpl$JVMFinder, err, java.io.IOException: Cannot run program "C:\Users\MOUMIT~1\AppData\Local\Temp\ismp001\LauncherMain.exe": CreateProcess error=740, The requested operation requires elevation
    STACK_TRACE: 13
    java.io.IOException: Cannot run program "C:\Users\MOUMIT~1\AppData\Local\Temp\ismp001\LauncherMain.exe": CreateProcess error=740, The requested operation requires elevation
         at java.lang.ProcessBuilder.start(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at com.installshield.wizard.service.jvm.PureJavaJVMServiceImpl$JVMFinder.execute(PureJavaJVMServiceImpl.java:690)
         at com.installshield.wizard.service.AsynchronousOperation.run(AsynchronousOperation.java:41)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: CreateProcess error=740, The requested operation requires elevation
         at java.lang.ProcessImpl.create(Native Method)
         at java.lang.ProcessImpl.<init>(Unknown Source)
         at java.lang.ProcessImpl.start(Unknown Source)
         ... 6 more
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.product.actions.UninstallerJVMResolution, dbg.jvm, resolved to JVM file: null with JVM_HOME = null
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.product.actions.UninstallerJVMResolution, dbg.jvm, installing the bundled JVM
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.wizard.platform.win32.Win32JVMServiceImpl, dbg.jvm, installing JVM to C:\OracleBI\uninstall\_jvm
    (13 Jun, 2012 11:57:50 AM), Install.product.install, java.io.IOException, err, java.io.IOException: Cannot run program "C:\Users\MOUMIT~1\AppData\Local\Temp\ismp001\LauncherMain.exe": CreateProcess error=740, The requested operation requires elevation
    STACK_TRACE: 13
    java.io.IOException: Cannot run program "C:\Users\MOUMIT~1\AppData\Local\Temp\ismp001\LauncherMain.exe": CreateProcess error=740, The requested operation requires elevation
         at java.lang.ProcessBuilder.start(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at com.installshield.wizard.service.jvm.PureJavaJVMServiceImpl$JVMInstaller.execute(PureJavaJVMServiceImpl.java:644)
         at com.installshield.wizard.service.AsynchronousOperation.run(AsynchronousOperation.java:41)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: CreateProcess error=740, The requested operation requires elevation
         at java.lang.ProcessImpl.create(Native Method)
         at java.lang.ProcessImpl.<init>(Unknown Source)
         at java.lang.ProcessImpl.start(Unknown Source)
         ... 6 more
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.product.service.product.PureJavaProductServiceImpl$Installer, err, ProductException: (error code = 601; message="JVM not found")
    STACK_TRACE: 8
    ProductException: (error code = 601; message="JVM not found")
         at com.installshield.product.actions.JVMResolution.install(JVMResolution.java:171)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.checkUninstallerJVMResolution(PureJavaProductServiceImpl.java:4793)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$InstallProduct.install(PureJavaProductServiceImpl.java:4554)
         at com.installshield.product.service.product.PureJavaProductServiceImpl$Installer.execute(PureJavaProductServiceImpl.java:3758)
         at com.installshield.wizard.service.AsynchronousOperation.run(AsynchronousOperation.java:41)
         at java.lang.Thread.run(Unknown Source)
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, target platform: name="Windows Vista" version="6.0" arch="x86"
    (13 Jun, 2012 11:57:50 AM), Install.product.install, com.installshield.wizardx.conditions.PlatformWizardBeanCondition, dbg.platform, condition platform: name="Windows .*" version="." arch="."
    (13 Jun, 2012 11:57:51 AM), Install.product.install, com.installshield.wizardx.ascii.ModifyFile, msg2, ASCII file C:\OracleBI\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\WEB-INF\xmlp-server-config.xml does not exist and will be created.
    (13 Jun, 2012 11:57:51 AM), Install.product.install, com.installshield.wizardx.ascii.ModifyFile, msg2, ASCII file C:\OracleBI\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\WEB-INF\server-config.wsdd does not exist and will be created.
    (13 Jun, 2012 11:57:51 AM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\server\Bin\installperfsas.bat": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\server\Bin\installperfsas.bat": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)
    (13 Jun, 2012 11:57:51 AM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\web\bin\installperfsaw.bat": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\web\bin\installperfsaw.bat": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)
    (13 Jun, 2012 11:57:52 AM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\oc4j_bi\bin\oc4j.cmd": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\oc4j_bi\bin\oc4j.cmd": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)

    Hi
    Thanks a lot for your help. Even after I gave all the permission to my user, it could not access the file. So finally I logged with the Administrator user, and the problem was solved, ie access was available.
    However, the installation still did not complete ... after 100% installation the screen got hanged. The error I found from the Install file is as below:
    (13 Jun, 2012 5:30:37 PM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\server\Bin\installperfsas.bat": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\server\Bin\installperfsas.bat": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)
    (13 Jun, 2012 5:30:37 PM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\web\bin\installperfsaw.bat": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\web\bin\installperfsaw.bat": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)
    (13 Jun, 2012 5:30:38 PM), Install.product.install, com.siebel.analytics.install.ExecWizardActionCustom, err, com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\oc4j_bi\bin\oc4j.cmd": CreateProcess error=3, The system cannot find the path specified
    STACK_TRACE: 7
    com.installshield.util.ProcessExecException: Cannot run program "C:\OracleBI\oc4j_bi\bin\oc4j.cmd": CreateProcess error=3, The system cannot find the path specified
         at com.installshield.util.ProcessExec.executeProcess(ProcessExec.java:180)
         at com.installshield.wizardx.actions.ExecWizardAction.executeProcess(ExecWizardAction.java:412)
         at com.installshield.wizardx.actions.ExecWizardAction.run(ExecWizardAction.java:457)
         at com.siebel.analytics.install.ExecWizardActionCustom.run(ExecWizardActionCustom.java:79)
         at java.lang.Thread.run(Unknown Source)
    Could any one please help? I checked that these folder paths have not been created under OracleBI folder.
    Regards,
    Moumita

  • My iPhone went to Recovery mode, could not able to restore it back to working state

    Iam iPhone4 user, Recently my iPhone  shows only iTunes symbol. When I connect it to iTunes, it is saying "iPhone in Recovery mode".
    When I Restore the iPhone, I could not be able to do it. When i check the update logs. Found the following error
        [05:04:57.0680] CFError domain:AMRestoreErrorDomain code:-1 description:failed to update device firmware
        [05:04:57.0682] CFError domain:AMRestoreErrorDomain code:-1 description:ramrod firmware update failed
        [05:04:57.0684] CFError domain:RamrodErrorDomain code:1004 description:update_baseband: failed to perform next stage
        [05:04:57.0685] CFError domain:BBUpdater code:2 description:(null)
        [05:04:57.0686] Sending acknowledgement that final status was received
        [05:04:57.0859] Restore completed, status:2
        [05:04:57.0859] Failure Description:
        [05:04:57.0859] Depth:0 Error:AMRestorePerformRestoreModeRestoreWithError failed with error: -1
        [05:04:57.0859]    Depth:1 Error:The operation couldn’t be completed. (AMRestoreErrorDomain error -1 - Failed to handle message type StatusMsg)
        [05:04:57.0859]       Depth:2 Error:The operation couldn’t be completed. (AMRestoreErrorDomain error -1 - failed to update device firmware)
        [05:04:57.0859]          Depth:3 Error:The operation couldn’t be completed. (AMRestoreErrorDomain error -1 - ramrod firmware update failed)
        [05:04:57.0859]             Depth:4 Error:The operation couldn’t be completed. (RamrodErrorDomain error 1004 - update_baseband: failed to perform next stage)
        [05:04:57.0859]                Depth:5 Error:Exception at :0:
        [05:04:57.0859]           - kBBUReturnTimedOut(8)/2: Error reading EBL version (expected: 76 bytes - received: 0 bytes)
    Please see below the complete Log
    2013-09-22 10:25:14.540 [10556:2504]: restore library built Aug  8 2013 at 02:24:58
    2013-09-22 10:25:14.541 [10556:2504]: iTunes: iTunes 11.1.0.126
    2013-09-22 10:25:14.541 [10556:2504]: iTunes: Software payload version: 11A465 (option key)
    2013-09-22 10:25:14.541 [10556:2504]: iTunes: Using MobileRestore state machine
    [04:55:30.0696] Changing state from 'Idle' to 'Restoring'
    [04:55:30.0697] requested restore behavior: Erase
    [04:55:30.0698] requested variant: Erase
    [04:55:30.0700] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:55:31.0195] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is True
    [04:55:31.0196] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreLogo" Digest = "<CFData 0705E610 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0197] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreDeviceTree" Digest = "<CFData 0705E4F0 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0197] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreKernelCache" Digest = "<CFData 0705E6A0 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0198] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreRamDisk" Digest = "<CFData 0705E658 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0199] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBEC" Digest = "<CFData 0705E5C8 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0200] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBSS" Digest = "<CFData 0705E580 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0200] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "KernelCache" Digest = "<CFData 0F659E20 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0201] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow1" Digest = "<CFData 0F659E68 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0202] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow0" Digest = "<CFData 0F659EB0 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0203] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "LLB" Digest = "<CFData 0F659EF8 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0203] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBoot" Digest = "<CFData 0F659F40 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0204] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "DeviceTree" Digest = "<CFData 0F659F88 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0205] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging1" Digest = "<CFData 0F69C428 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0206] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "AppleLogo" Digest = "<CFData 0F69C470 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0206] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryPlugin" Digest = "<CFData 0F69C4B8 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0207] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryFull" Digest = "<CFData 0F69C500 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0208] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging0" Digest = "<CFData 0F69C548 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0208] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RecoveryMode" Digest = "<CFData 0F69C590 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [04:55:31.0209] amai: _AMAuthInstallBundleCreateServerRequestDictionary: using UniqueBuildID <CFData 0F5CC390 [71A38078]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [04:55:31.0210] amai: AMAuthInstallRequestSendSync: SSO function returned NULL, SSO disabled.
    [04:55:31.0210] amai: AMAuthInstallDebugWriteObject: debug object written: C:\Users\CIPHER~1\AppData\Local\Temp\PerA2C8.tmp\amai\debug\tss-request.plist
    [04:55:31.0968] amai: tss_submit_job: HttpQueryInfo returned 200
    [04:55:32.0478] amai: AMAuthInstallRequestSendSync: received tss response (server version: 2.1.0)
    [04:55:32.0480] amai: AMAuthInstallDebugWriteObject: debug object written: C:\Users\CIPHER~1\AppData\Local\Temp\PerA2C8.tmp\amai\debug\tss-response.plist
    [04:55:32.0499] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "Diags"
    [04:55:32.0508] iBoot build-version = iBoot-1940.1.75
    [04:55:32.0509] iBoot build-style = RELEASE
    [04:55:32.0509] requested restore behavior: Erase
    [04:55:32.0512] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:55:32.0513] requested restore behavior: Erase
    [04:55:32.0516] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:55:32.0517] unable to open device_map.txt: No such file or directory
    [04:55:32.0518] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [04:55:32.0519] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [04:55:32.0520] radio-error = 256
    [04:55:32.0520] radio-error-string = 'Corrupted stack'
    [04:55:32.0521] unable to open device_map.txt: No such file or directory
    [04:55:32.0522] <Recovery Mode Device 0274EC88>: production fused device
    [04:55:32.0523] requested restore behavior: Erase
    [04:55:32.0524] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:55:32.0525] requested restore behavior: Erase
    [04:55:32.0525] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:55:32.0526] interface has 1 endpoints, file pipe = 1
    [04:55:32.0526]
    [04:55:32.0527] <Recovery Mode Device 0274EC88>: operation 4 progress -1
    [04:55:32.0579] bootstrapping restore with iBEC
    [04:55:32.0580] requested restore behavior: Erase
    [04:55:32.0592] <Recovery Mode Device 0274EC88>: operation 31 progress -1
    [04:55:33.0592] <Recovery Mode Device 0274EC88>: Recovery mode succeeded
    [04:55:33.0593] Finished Recovery Restore Phase: Successful
    [04:55:33.0998] Recovery mode device disconnected
    [04:55:33.0998] Device removed when in state Restoring, moving device to transition state
    [04:55:33.0999] Changing state from 'Restoring' to 'Transitioning'
    [04:55:34.0000] Creating timer to monitor transition
    [04:56:14.0786] Recovery mode device connected
    [04:56:14.0786] Transitioning device returned, continuing restore.
    [04:56:14.0787] Canceling timer
    [04:56:14.0787] Changing state from 'Transitioning' to 'Restoring'
    [04:56:14.0788] requested restore behavior: Erase
    [04:56:14.0788] requested variant: Erase
    [04:56:14.0789] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:56:15.0282] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [04:56:15.0283] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [04:56:15.0283] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [04:56:15.0284] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [04:56:15.0285] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [04:56:15.0285] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBEC" has been previously personalized; skipping it
    [04:56:15.0286] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    [04:56:15.0287] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [04:56:15.0287] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [04:56:15.0288] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [04:56:15.0289] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    [04:56:15.0290] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [04:56:15.0290] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [04:56:15.0291] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [04:56:15.0292] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [04:56:15.0293] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [04:56:15.0293] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [04:56:15.0294] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [04:56:15.0295] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [04:56:15.0295] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [04:56:15.0296] iBoot build-version = iBoot-1940.1.75
    [04:56:15.0297] iBoot build-style = RELEASE
    [04:56:15.0297] requested restore behavior: Erase
    [04:56:15.0297] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:56:15.0298] requested restore behavior: Erase
    [04:56:15.0299] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:56:15.0299] unable to open device_map.txt: No such file or directory
    [04:56:15.0300] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [04:56:15.0301] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [04:56:15.0301] radio-error = 256
    [04:56:15.0302] radio-error-string = 'Corrupted stack'
    [04:56:15.0302] unable to open device_map.txt: No such file or directory
    [04:56:15.0303] <Recovery Mode Device 0274FD00>: production fused device
    [04:56:15.0304] requested restore behavior: Erase
    [04:56:15.0304] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:56:15.0305] requested restore behavior: Erase
    [04:56:15.0305] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:56:15.0306] interface has 1 endpoints, file pipe = 1
    [04:56:15.0306]
    [04:56:15.0307] <Recovery Mode Device 0274FD00>: operation 4 progress -1
    [04:56:15.0348] unable to open device_map.txt: No such file or directory
    [04:56:15.0350] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [04:56:15.0352] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [04:56:15.0353] requested restore behavior: Erase
    [04:56:15.0354] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:56:15.0356] requested restore behavior: Erase
    [04:56:15.0360] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:56:15.0362] <Recovery Mode Device 0274FD00>: operation 42 progress -1
    [04:56:15.0363] requested restore behavior: Erase
    [04:56:15.0366] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:56:16.0407] <Recovery Mode Device 0274FD00>: operation 5 progress -1
    [04:56:16.0813] unable to open device_map.txt: No such file or directory
    [04:56:16.0813] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [04:56:16.0814] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [04:56:16.0815] AMDeviceIoControl: GetOverlappedResult failed
    [04:56:16.0815] AMDeviceIoControl: pipe stall
    [04:56:16.0816] USBControlTransfer: error 31, usbd status c0000004
    [04:56:16.0816] command device request for 'getenv ramdisk-delay' failed: 2008
    [04:56:18.0810] <Recovery Mode Device 0274FD00>: operation 6 progress -1
    [04:56:19.0822] <Recovery Mode Device 0274FD00>: operation 7 progress -1
    [04:56:20.0167] <Recovery Mode Device 0274FD00>: operation 8 progress -1
    [04:56:20.0168] unable to open device_map.txt: No such file or directory
    [04:56:20.0168] found device map entry for 0x00008930 0x00000000. boardConfig=n90ap platform=s5l8930x
    [04:56:20.0169] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [04:56:20.0170] <Recovery Mode Device 0274FD00>: operation 9 progress -1
    [04:56:20.0170] <Recovery Mode Device 0274FD00>: Recovery mode succeeded
    [04:56:20.0171] Finished Recovery Restore Phase: Successful
    [04:56:21.0878] Recovery mode device disconnected
    [04:56:21.0879] Device removed when in state Restoring, moving device to transition state
    [04:56:21.0880] Changing state from 'Restoring' to 'Transitioning'
    [04:56:21.0880] Creating timer to monitor transition
    [04:56:25.0550] RestoreOS mode device connected
    [04:56:25.0551] Transitioning device returned, continuing restore.
    [04:56:25.0552] Canceling timer
    [04:56:25.0552] Changing state from 'Transitioning' to 'Restoring'
    [04:56:25.0556] <Restore Device 06C88B38>: operation 44 progress -1
    [04:56:25.0557] requested restore behavior: Erase
    [04:56:25.0558] requested variant: Erase
    [04:56:25.0559] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:56:26.0055] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [04:56:26.0056] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [04:56:26.0056] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [04:56:26.0057] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [04:56:26.0058] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [04:56:26.0059] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBEC" has been previously personalized; skipping it
    [04:56:26.0059] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    [04:56:26.0060] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [04:56:26.0061] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [04:56:26.0062] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [04:56:26.0063] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    [04:56:26.0063] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [04:56:26.0064] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [04:56:26.0064] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [04:56:26.0065] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [04:56:26.0066] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [04:56:26.0066] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [04:56:26.0067] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [04:56:26.0068] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [04:56:26.0069] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [04:56:26.0070] requested restore behavior: Erase
    [04:56:26.0070] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:56:26.0071] fixed TcpWindowSize (129940) can cause restore failure if too large
    [04:56:26.0072] device did not return saved USB log
    [04:56:26.0072] device did not return saved panic log
    [04:56:26.0073] previous restore failed with exit status 0x100
    [04:56:26.0073] connected to service com.apple.mobile.restored
    [04:56:26.0074] using protocol version 13
    [04:56:26.0074] unable to open device_map.txt: No such file or directory
    [04:56:26.0075] board config = n90ap
    [04:56:26.0079] no value returned for BootArgs
    [04:56:26.0079] _copyDeviceProperty() failed for restore bootargs
    [04:56:26.0083] no value returned for MarketingPartNumber
    [04:56:26.0084] _copyDeviceProperty() failed for mpn
    [04:56:26.0084] requested restore behavior: Erase
    [04:56:26.0085] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [04:56:26.0090] value query for 'HardwareModel' returned 'N90AP'
    [04:56:26.0104] <Restore Device 06C88B38>: operation 28 progress -1
    [04:56:53.0845] previous restore failed: true,FULL_CLOCK_INDEX) = 0x0
    [04:56:53.0845] Scaler 0 enableDevicePower(true,0,HALF_CLOCK_INDEX) = 0x0
    [04:56:53.0845] Scaler 0 enableDeviceClock(false,FULL_CLOCK_INDEX) = 0x0
    [04:56:53.0845] void AppleRGBOUT::verify_swap_gated(IOMFBSwapIORequest *, bool *) failed fIsDPOut: 0 fDPDriver: 0 fTVOUTDelegate: 0
    [04:56:53.0845] AppleRGBOUT verify_swap failed
    [04:56:53.0845] void AppleRGBOUT::verify_swap_gated(IOMFBSwapIORequest *, bool *) failed fIsDPOut: 0 fDPDriver: 0 fTVOUTDelegate: 0
    [04:56:53.0845] AppleRGBOUT verify_swap failed
    [04:56:53.0845] AppleS5L8920XBasebandSPIController::loadConfiguration: NCLK Frequency 48857142, Prescaler 3
    [04:56:53.0845] BasebandSPIDevice::exitLowPower: Invalid state inactive
    [04:56:53.0845] AppleSerialMultiplexer: adap::start: Frame size is 2048, Rx Buffer count is 16
    [04:56:53.0845] AppleSerialMultiplexer: mux::start: created new mux (17) for spi-baseband with adapter BasebandSPIDevice
    [04:56:53.0845] AppleSerialMultiplexer: debugparams::init: Parsed flags "" ( 0 )
    [04:56:53.0845] AppleSerialMultiplexer: !! mux::setPowerStateGated: Skipping power state change
    [04:56:53.0845] AppleSamsungSerial: Identified Serial Port on ARM Device=uart1 at 0x82600000(0x85246000)
    [04:56:53.0845] AppleSamsungSerial: Identified Serial Port on ARM Device=uart2 at 0x82700000(0x85248000)
    [04:56:53.0845] AppleSamsungSerial: Identified Serial Port on ARM Device=uart3 at 0x82800000(0x8524b000)
    [04:56:53.0845] AppleSamsungSerial: Identified Serial Port on ARM Device=uart6 at 0x82b00000(0x8524d000)
    [04:56:53.0845] [HPark] AUD10::start: 0xc807e000, highland-park mIISNub: 0x875d9b80, sampleRate = 44100, ol=10, oi=12
    [04:56:53.0845] AppleCS42L61Audio: could not allocate control 395
    [04:56:53.0845] AppleARMBacklight::start: _minDACLevel=456 _maxDACLevel=1971
    [04:56:53.0845] AppleMultitouchN1SPI: successfully started
    [04:56:53.0845] AppleRGBOUT: TVOUT device is detected
    [04:56:53.0845] ApplePinotLCD: _lcdPanelID: 0xb2d105c8 _lcdPanelClass: 2
    [04:56:53.0845] IOReturn AppleMobileCLCD::set_ditherTable_state(bool), mIsCLCDDitherFor8Bits is true, no dynamic dither table.
    [04:56:53.0845] [HPark] AUD10::start: 0xc807e000, highland-park mIICNub: 0x87d874d0, mIISNub: 0x875d9b80, mSerialNub: 0x8993c000, sampleRate = 44100, ol=10, oi=12
    [04:56:53.0845] [HPark] AUD10 ATSc values: [ mic1: 0x0000000e, mic2: 0x00000000, mic3: 0x00000000, recv: 0x000000fb, spk: 0x00000000 ]
    [04:56:53.0845] [HPark] AUD10::setPowerState() function called whereas Start() is not finished
    [04:56:53.0845] AppleMultitouchN1SPI: detected HBPP. driver will be kept alive
    [04:56:53.0845] AppleD1815PMUPowerSource: AppleUSBCableDetect 1
    [04:56:53.0845] AppleD1815PMUPowerSource: AppleUSBCableType USBHost
    [04:56:53.0845] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [04:56:53.0845] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [04:56:53.0845] IOSDIOController::enumerateSlot(): Searching for SDIO device in slot: 0
    [04:56:53.0845] IOSDIOController::enumerateSlot(): Found SDIO I/O device. Function count(1), memory(0)
    [04:56:53.0845] IOSDIOIoCardDevice::parseFn0CISTuple(): Device manufacturer ID 0x2d0, Product ID 0x4329
    [04:56:53.0845] IOSDIOIoCardDevice::parseFn0CISTuple(): Manufacturer: ""
    [04:56:53.0845] IOSDIOIoCardDevice::parseFn0CISTuple(): Product:      ""
    [04:56:53.0845] IOSDIOIoCardDevice::parseFn0CISTuple(): ProductInfo0: "s=B1"
    [04:56:53.0845] IOSDIOIoCardDevice::parseFn0CISTuple(): ProductInfo1: "P=N90 m=3.1 V=u"
    [04:56:53.0845] AppleBCMWLANBusInterfaceSdio::start(): Started by: IOSDIOIoCardDevice, AppleBCMWLANV2-241 Aug 13 2013 22:03:24
    [04:56:53.0845] AppleBCMWLANCore::init(): IO80211-39 Aug 13 2013 21:28:24
    [04:56:53.0845] AppleBCMWLANCore::init(): AppleBCMWLANV2-241 Aug 13 2013 22:03:28
    [04:56:53.0845] 000126.418933 wlan.A[0] AppleBCMWLANProvisioningManager::gatherDeviceTreeData(): WiFi 'local-mac-address' is invalid!
    [04:56:53.0845]  000126.419010 wlan.A[1] AppleBCMWLANProvisioningManager::gatherDeviceTreeData(): Invalid 2.4GHz calibration data in device tree.
    [04:56:53.0845] 000126.419561 wlan.A[2] AppleBCMWLANProvisioningManager::validateData():  Error, unable to obtain MAC address, can't proceed any further
    [04:56:53.0845] 000126.419605 wlan.C[3] AppleBCMWLANProvisioningManager::processProvisionedData():  Invalid provisioning data, general error
    [04:56:53.0845] 000126.419642 wlan.A[4] AppleBCMWLANCore::start():  Failed to process provisioning data
    [04:56:53.0845] read new style signature 0x43313132 (line:389)
    [04:56:53.0845] [FTL:MSG] VSVFL Register  [OK]
    [04:56:53.0845] [WMR:MSG] Metadata whitening is set in NAND signature
    [04:56:53.0845] [FTL:MSG] VFL Init            [OK]
    [04:56:53.0845] display-scale = 2
    [04:56:53.0845] display-rotation = 0
    [04:56:53.0845] found applelogo at /usr/share/progressui/[email protected]
    [04:56:53.0845] found display: primary
    [04:56:53.0845] display: 640 x 960
    [04:56:53.0845] [FTL:MSG] VFL_Open            [OK]
    [04:56:53.0845] [FTL:MSG] YAFTL Register  [OK]
    [04:56:53.0845] found PTP interface
    [04:56:53.0845] AppleSynopsysOTGDevice - Configuration: PTP
    [04:56:53.0845] AppleSynopsysOTGDevice          Interface: PTP
    [04:56:53.0845] AppleSynopsysOTGDevice - Configuration: iPod USB Interface
    [04:56:53.0845] AppleSynopsysOTGDevice          Interface: USBAudioControl
    [04:56:53.0845] AppleSynopsysOTGDevice          Interface: USBAudioStreaming
    [04:56:53.0845] AppleSynopsysOTGDevice          Interface: IapOverUsbHid
    [04:56:53.0845] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device
    [04:56:53.0845] AppleSynopsysOTGDevice          Interface: PTP
    [04:56:53.0845] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [04:56:53.0845] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device + Apple USB Ethernet
    [04:56:53.0845] AppleSynopsysOTGDevice          Interface: PTP
    [04:56:53.0845] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [04:56:53.0845] AppleSynopsysOTGDevice          Interface: AppleUSBEthernet
    [04:56:53.0845] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioControl
    [04:56:53.0845] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioStreaming
    [04:56:53.0845] IOAccessoryPortUSB::start
    [04:56:53.0845] AppleSynopsysOTGDevice::gated_registerFunction Register function IapOverUsbHid
    [04:56:53.0845] virtual bool AppleUSBDeviceMux::start(IOService *) build: Aug 13 2013 22:01:43
    [04:56:53.0845] init_waste
    [04:56:53.0845] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBMux
    [04:56:53.0845] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBEthernet
    [04:56:53.0845] AppleUSBEthernetDevice::start: device-mac-address not found for device in the device-tree, generating a fake one
    [04:56:53.0845] AppleUSBEthernetDevice::start: host-mac-address not found for host in the device-tree, generating a fake one
    [04:56:53.0845] AppleSynopsysOTGDevice::gated_registerFunction Register function PTP
    [04:56:53.0845] AppleSynopsysOTGDevice::startUSBStack Starting usb stack
    [04:56:53.0845] IOReturn AppleUSBDeviceMux::setPropertiesGated(OSObject *) setting debug level to 7
    [04:56:53.0845] [FTL:MSG] FTL_Open            [OK]
    [04:56:53.0845] [NAND] _publishServices:642 FTL capabilities: 0x00000000
    [04:56:53.0845] [nand_part_core:INF@ 157] published partition 0
    [04:56:53.0845] [nand_part_core:INF@ 157] published partition 1
    [04:56:53.0845] [nand_part_core:INF@ 157] published partition 2
    [04:56:53.0845] [nand_part_core:INF@ 157] published partition 3
    [04:56:53.0845] [nand_part_core:INF@ 157] published partition 5
    [04:56:53.0845] [nand_part_core:INF@ 157] published partition 6
    [04:56:53.0845] [effaceable:INIT] found current generation, 212, in group 3
    [04:56:53.0845] [effaceable:INIT] started
    [04:56:53.0845] [effaceable:INIT] started
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fd68 established 62078<-lo0->49152 62078<-usb->9216
    [04:56:53.0845] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x8b46fd68
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fd68 established 62078<-lo0->49153 62078<-usb->9472
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fcb8 established 62078<-lo0->49154 62078<-usb->9728
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fc60 established 62078<-lo0->49155 62078<-usb->9984
    [04:56:53.0845] recv(7, 4) failed: connection closed
    [04:56:53.0845] unable to read message size: -1
    [04:56:53.0845] could not receive message
    [04:56:53.0845] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x8b46fd68
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fd68 established 62078<-lo0->49156 62078<-usb->10240
    [04:56:53.0845] recv(7, 4) failed: connection closed
    [04:56:53.0845] unable to read message size: -1
    [04:56:53.0845] could not receive message
    [04:56:53.0845] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x8b46fcb8
    [04:56:53.0845] recv(13, 4) failed: connection closed
    [04:56:53.0845] unable to read message size: -1
    [04:56:53.0845] could not receive message
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fcb8 established 62078<-lo0->49157 62078<-usb->10496
    [04:56:53.0845] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x8b46fd68
    [04:56:53.0845] recv(7, 4) failed: connection closed
    [04:56:53.0845] unable to read message size: -1
    [04:56:53.0845] could not receive message
    [04:56:53.0845] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x8b46fcb8
    [04:56:53.0845] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x8b46fc60
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fc60 established 62078<-lo0->49158 62078<-usb->10752
    [04:56:53.0845] recv(13, 4) failed: connection closed
    [04:56:53.0845] unable to read message size: -1
    [04:56:53.0845] could not receive message
    [04:56:53.0845] recv(14, 4) failed: connection closed
    [04:56:53.0845] unable to read message size: -1
    [04:56:53.0845] could not receive message
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fcb8 established 62078<-lo0->49159 62078<-usb->11008
    [04:56:53.0845] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x8b46fcb8
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fcb8 established 62078<-lo0->49160 62078<-usb->11264
    [04:56:53.0845] recv(13, 4) failed: connection closed
    [04:56:53.0845] unable to read message size: -1
    [04:56:53.0845] could not receive message
    [04:56:53.0845] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x8b46fcb8
    [04:56:53.0845] recv(13, 4) failed: connection closed
    [04:56:53.0845] unable to read message size: -1
    [04:56:53.0845] could not receive message
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fcb8 established 62078<-lo0->49161 62078<-usb->11520
    [04:56:53.0845] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x8b46fcb8
    [04:56:53.0845] recv(13, 4) failed: connection closed
    [04:56:53.0845] unable to read message size: -1
    [04:56:53.0845] could not receive message
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fcb8 established 62078<-lo0->49162 62078<-usb->11776
    [04:56:53.0845] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x8b46fcb8
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fcb8 established 62078<-lo0->49163 62078<-usb->12032
    [04:56:53.0845] recv(13, 4) failed: connection closed
    [04:56:53.0845] unable to read message size: -1
    [04:56:53.0845] could not receive message
    [04:56:53.0845] unrecognized key 'BootArgs' in value query
    [04:56:53.0845] failed to handle value query for key 'BootArgs', sending back empty response
    [04:56:53.0845] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x8b46fcb8
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fcb8 established 62078<-lo0->49164 62078<-usb->12288
    [04:56:53.0845] recv(13, 4) failed: connection closed
    [04:56:53.0845] unable to read message size: -1
    [04:56:53.0845] could not receive message
    [04:56:53.0845] unrecognized key 'MarketingPartNumber' in value query
    [04:56:53.0845] failed to handle value query for key 'MarketingPartNumber', sending back empty response
    [04:56:53.0845] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x8b46fcb8
    [04:56:53.0845] recv(13, 4) failed: connection closed
    [04:56:53.0845] unable to read message size: -1
    [04:56:53.0845] could not receive message
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46fcb8 established 62078<-lo0->49165 62078<-usb->12544
    [04:56:53.0845] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x8b46fcb8
    [04:56:53.0845] recv(13, 4) failed: connection closed
    [04:56:53.0845] unable to read message size: -1
    [04:56:53.0845] could not receive message
    [04:56:53.0845] client protocol version 13
    [04:56:53.0845] *** UUID 6780545E-FB6A-4849-9034-2103773327AE ***
    [04:56:53.0845] Restore options:
    [04:56:53.0845]           UUID                           => <CFString 0x15d2aac0 [0x3c0ae0]>{contents = "6780545E-FB6A-4849-9034-2103773327AE"}
    [04:56:53.0845]           MinimumSystemPartition         => <CFNumber 0x15d2aa10 [0x3c0ae0]>{value = +1512, type = kCFNumberSInt64Type}
    [04:56:53.0845]           SystemPartitionSize            => <CFNumber 0x15d2a4a0 [0x3c0ae0]>{value = +1512, type = kCFNumberSInt64Type}
    [04:56:53.0845]           SystemPartitionPadding         => <CFBasicHash 0x15d2ad20 [0x3c0ae0]>{type = mutable dict, count = 5,
    [04:56:53.0845] entries =>
    [04:56:53.0845]           2 : <CFString 0x15d2aa40 [0x3c0ae0]>{contents = "128"} = <CFNumber 0x15d2aa70 [0x3c0ae0]>{value = +1280, type = kCFNumberSInt64Type}
    [04:56:53.0845]           3 : <CFString 0x15d29a50 [0x3c0ae0]>{contents = "16"} = <CFNumber 0x15d28d40 [0x3c0ae0]>{value = +160, type = kCFNumberSInt64Type}
    [04:56:53.0845]           4 : <CFString 0x15d2a740 [0x3c0ae0]>{contents = "32"} = <CFNumber 0x15d2a680 [0x3c0ae0]>{value = +320, type = kCFNumberSInt64Type}
    [04:56:53.0845]           5 : <CFString 0x15d29f00 [0x3c0ae0]>{contents = "8"} = <CFNumber 0x15d2a490 [0x3c0ae0]>{value = +80, type = kCFNumberSInt64Type}
    [04:56:53.0845]           8 : <CFString 0x15d2a690 [0x3c0ae0]>{contents = "64"} = <CFNumber 0x15d299d0 [0x3c0ae0]>{value = +640, type = kCFNumberSInt64Type}
    [04:56:53.0845] }
    [04:56:53.0845]
    [04:56:53.0845] entering load_sep_os
    [04:56:53.0845] device has no sep
    [04:56:53.0845] entering partition_nand_device
    [04:56:53.0845] device supports boot-from-NAND
    [04:56:53.0845] nand device is already partitioned
    [04:56:53.0845] entering wait_for_storage_device
    [04:56:53.0845] Searching for NAND service
    [04:56:53.0845] Found NAND service: IOFlashStoragePartition
    [04:56:53.0845] NAND initialized. Waiting for devnode.
    [04:56:53.0845] entering clear_remap_variable
    [04:56:53.0845] executing /usr/sbin/nvram
    [04:56:53.0845] entering format_effaceable_storage
    [04:56:53.0845] effaceable storage is formatted, clearing it
    [04:56:53.0845] effaceable storaged cleared
    [04:56:53.0845] entering ramrod_probe_media
    [04:56:53.0845] device partitioning scheme is GPT
    [04:56:53.0845] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [04:56:53.0845] executing /sbin/fsck_hfs
    [04:56:53.0845] ** /dev/rdisk0s1s1
    [04:56:53.0845]    Executing fsck_hfs (version hfs-227).
    [04:56:53.0845] ** Checking Journaled HFS Plus volume.
    [04:56:53.0845] ** Detected a case-sensitive volume.
    [04:56:53.0845]    The volume name is Innsbruck11A465.N90OS
    [04:56:53.0845] ** Checking extents overflow file.
    [04:56:53.0845] ** Checking catalog file.
    [04:56:53.0845] ** Checking multi-linked files.
    [04:56:53.0845] ** Checking catalog hierarchy.
    [04:56:53.0845] ** Checking extended attributes file.
    [04:56:53.0845] ** Checking volume bitmap.
    [04:56:53.0845] ** Checking volume information.
    [04:56:53.0845] ** Trimming unused blocks.
    [04:56:53.0845] ** The volume Innsbruck11A465.N90OS appears to be OK.
    [04:56:53.0845] executing /sbin/mount_hfs
    [04:56:53.0845] /dev/disk0s1s1 mounted on /mnt1
    [04:56:53.0845] entering check_for_restore_log
    [04:56:53.0845] found restore log (size = 38353)
    [04:56:53.0845] entering unmount_filesystems
    [04:56:53.0845] error unmounting '/mnt2': Invalid argument
    [04:56:53.0845] entering clean_NAND
    [04:56:53.0845] NAND format complete
    [04:56:53.0845] entering ramrod_probe_media
    [04:56:53.0845] find_filesystem_partitions: storage=/dev/disk0 system= data=
    [04:56:53.0845] entering format_storage_for_LwVM
    [04:56:53.0845] entering ramrod_probe_media
    [04:56:53.0845] device partitioning scheme is GPT
    [04:56:53.0845] unexpected partition 'LwVM' - skipping
    [04:56:53.0845] find_filesystem_partitions: storage=/dev/disk0s1 system= data=
    [04:56:53.0845] entering create_filesystem_partitions
    [04:56:53.0845] User specified system partition size, skipping firmware extras size.
    [04:56:53.0845] system partition padding size is: 167772160 bytes
    [04:56:53.0845] unable to open : No such file or directory
    [04:56:53.0845] creating 2 partitions
    [04:56:53.0845] creating encrypted data partition
    [04:56:53.0845] entering ramrod_probe_media
    [04:56:53.0845] device partitioning scheme is GPT
    [04:56:53.0845] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [04:56:53.0845] wipe entire partition: 1 (old = 0 new = 1672)
    [04:56:53.0845] block size for /dev/disk0s1s1: 8192
    [04:56:53.0845] /sbin/newfs_hfs -s -v System -J -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s1
    [04:56:53.0845] executing /sbin/newfs_hfs -s -v System -J -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s1
    [04:56:53.0845] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [04:56:53.0845] block size for /dev/disk0s1s2: 8192
    [04:56:53.0845] /sbin/newfs_hfs -s -v Data -J -P -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s2
    [04:56:53.0845] executing /sbin/newfs_hfs -s -v Data -J -P -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s2
    [04:56:53.0845] Initialized /dev/rdisk0s1s2 as a 13 GB case-sensitive HFS Plus volume with a 8192k journal
    [04:56:53.0845] entering ramrod_probe_media
    [04:56:53.0845] device partitioning scheme is GPT
    [04:56:53.0845] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [04:56:53.0845] entering mount_filesystems
    [04:56:53.0845] executing /sbin/fsck_hfs
    [04:56:53.0845] ** /dev/rdisk0s1s1
    [04:56:53.0845]    Executing fsck_hfs (version hfs-227).
    [04:56:53.0845] ** Checking Journaled HFS Plus volume.
    [04:56:53.0845] ** Detected a case-sensitive volume.
    [04:56:53.0845]    The volume name is System
    [04:56:53.0845] ** Checking extents overflow file.
    [04:56:53.0845] ** Checking catalog file.
    [04:56:53.0845] ** Checking multi-linked files.
    [04:56:53.0845] ** Checking catalog hierarchy.
    [04:56:53.0845] ** Checking extended attributes file.
    [04:56:53.0845] ** Checking volume bitmap.
    [04:56:53.0845] ** Checking volume information.
    [04:56:53.0845] ** Trimming unused blocks.
    [04:56:53.0845] ** The volume System appears to be OK.
    [04:56:53.0845] executing /sbin/mount_hfs
    [04:56:53.0845] /dev/disk0s1s1 mounted on /mnt1
    [04:56:53.0845] executing /sbin/fsck_hfs
    [04:56:53.0845] ** /dev/rdisk0s1s2
    [04:56:53.0845]    Executing fsck_hfs (version hfs-227).
    [04:56:53.0845] ** Checking Journaled HFS Plus volume.
    [04:56:53.0845] ** Detected a case-sensitive volume.
    [04:56:53.0845]    The volume name is Data
    [04:56:53.0845] ** Checking extents overflow file.
    [04:56:53.0845] ** Checking catalog file.
    [04:56:53.0845] ** Checking multi-linked files.
    [04:56:53.0845] ** Checking catalog hierarchy.
    [04:56:53.0845] ** Checking extended attributes file.
    [04:56:53.0845] ** Checking volume bitmap.
    [04:56:53.0845] ** Checking volume information.
    [04:56:53.0845] ** Trimming unused blocks.
    [04:56:53.0845] ** The volume Data appears to be OK.
    [04:56:53.0845] executing /sbin/mount_hfs
    [04:56:53.0845] /dev/disk0s1s2 mounted on /mnt2
    [04:56:53.0845] entering resize_system_partition_to_options
    [04:56:53.0845] User specified system partition size, skipping firmware extras size.
    [04:56:53.0845] Found SystemPartitionPadding value of 167772160 bytes
    [04:56:53.0845] Erasing system partition prior to resize operation.
    [04:56:53.0845] block size for /dev/disk0s1s1: 8192
    [04:56:53.0845] /sbin/newfs_hfs -s -v System -J -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s1
    [04:56:53.0845] executing /sbin/newfs_hfs -s -v System -J -b 8192 -n a=8192,c=8192,e=8192 /dev/disk0s1s1
    [04:56:53.0845] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [04:56:53.0845] executing /sbin/fsck_hfs
    [04:56:53.0845] ** /dev/rdisk0s1s1
    [04:56:53.0845]    Executing fsck_hfs (version hfs-227).
    [04:56:53.0845] ** Checking Journaled HFS Plus volume.
    [04:56:53.0845] ** Detected a case-sensitive volume.
    [04:56:53.0845]    The volume name is System
    [04:56:53.0845] ** Checking extents overflow file.
    [04:56:53.0845] ** Checking catalog file.
    [04:56:53.0845] ** Checking multi-linked files.
    [04:56:53.0845] ** Checking catalog hierarchy.
    [04:56:53.0845] ** Checking extended attributes file.
    [04:56:53.0845] ** Checking volume bitmap.
    [04:56:53.0845] ** Checking volume information.
    [04:56:53.0845] ** Trimming unused blocks.
    [04:56:53.0845] ** The volume System appears to be OK.
    [04:56:53.0845] executing /sbin/mount_hfs
    [04:56:53.0845] /dev/disk0s1s1 mounted on /mnt1
    [04:56:53.0845] Trying to resize system partition to 1753219072 bytes aka 1672 MB
    [04:56:53.0845] entering adjust_partition
    [04:56:53.0845] partition: requiredSize=214016
    [04:56:53.0845] no change in size
    [04:56:53.0845] Successfully resized the system partition
    [04:56:53.0845] entering maximize_data_partition
    [04:56:53.0845] entering adjust_partition
    [04:56:53.0845] partition: requiredSize=<<<<<IMEI>>>>>>8
    [04:56:53.0845] maximizing data partition to 14201913343 bytes
    [04:56:53.0845] entering adjust_partition
    [04:56:53.0845] partition: requiredSize=1733632
    [04:56:53.0845] no change in size
    [04:56:53.0845] Successfully resized data partition to consume free blocks
    [04:56:53.0845] The system partition now has a total HFS+ capacity of 1672 MB
    [04:56:53.0845] entering ramrod_probe_media
    [04:56:53.0845] device partitioning scheme is GPT
    [04:56:53.0845] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [04:56:53.0845] entering unmount_filesystems
    [04:56:53.0845] entering ramrod_ticket_update
    [04:56:53.0845] looking up root ticket hash
    [04:56:53.0845] device tree ticket-hash: <CFData 0x15d2ed50 [0x3c0ae0]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [04:56:53.0845] ticket_hash: <<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>
    [04:56:53.0845] received valid ticket (2735 bytes)
    [04:56:53.0845] entering restore_images
    [04:56:53.0845] Successfully marked device node /dev/rdisk0s1s1 as static data
    [04:56:53.0845] executing /usr/sbin/asr -source asr://localhost:12345 -target /dev/disk0s1s1 -erase -noprompt --chunkchecksum --puppetstrings
    [04:56:53.0845] void AppleUSBDeviceMux::handleConnectResult(struct BulkUSBMuxSession *, errno_t) new session to port 12345 failed: 61
    [04:56:53.0845] void AppleUSBDeviceMux::handleConnectResult(struct BulkUSBMuxSession *, errno_t) new session to port 12345 failed: 61
    [04:56:53.0845] ASR: asr: Unable to disable idle sleep - -536870199
    [04:56:53.0845] ASR STATUS: start          241.1          multicast-client
    [04:56:53.0845] ASR: Waiting for connection attempt from server
    [04:56:53.0845] AppleUSBDeviceMux::handleConnectResult new session 0x8b46f898 established 12345<-lo0->49168 12345<-usb->13312
    [04:56:53.0845] ASR STATUS: setup
    [04:56:53.0845] ASR: Validating target...done
    [04:56:53.0845] ASR STATUS: metadata
    [04:56:53.0845] ASR: Validating source...
    [04:56:53.0845] ASR: done
    [04:56:53.0845] ASR: Retrieving scan information...done
    [04:56:53.0845] ASR: Validating sizes...done
    [04:56:53.0845] ASR STATUS: restore
    [04:56:53.0845] ASR RESTORE PROGRESS: 2%
    [04:56:53.0845] ASR RESTORE PROGRESS: 4%
    [04:56:53.0845] ASR RESTORE PROGRESS: 6%
    [04:56:53.0845] ASR RESTORE PROGRESS: 8%
    [04:56:53.0845] ASR RESTORE PROGRESS: 10%
    [04:56:53.0845] ASR RESTORE PROGRESS: 12%
    [04:56:53.0845] ASR RESTORE PROGRESS: 14%
    [04:56:53.0845] ASR RESTORE PROGRESS: 16%
    [04:56:53.0845] ASR RESTORE PROGRESS: 18%
    [04:56:53.0845] ASR RESTORE PROGRESS: 20%
    [04:56:53.0845] ASR RESTORE PROGRESS: 22%
    [04:56:53.0845] ASR RESTORE PROGRESS: 24%
    [04:56:53.0845] ASR RESTORE PROGRESS: 26%
    [04:56:53.0845] ASR RESTORE PROGRESS: 28%
    [04:56:53.0845] ASR RESTORE PROGRESS: 30%
    [04:56:53.0845] ASR RESTORE PROGRESS: 32%
    [04:56:53.0845] ASR RESTORE PROGRESS: 34%
    [04:56:53.0845] ASR RESTORE PROGRESS: 36%
    [04:56:53.0845] ASR RESTORE PROGRESS: 38%
    [04:56:53.0845] ASR RESTORE PROGRESS: 40%
    [04:56:53.0845] ASR RESTORE PROGRESS: 42%
    [04:56:53.0845] ASR RESTORE PROGRESS: 44%
    [04:56:53.0845] ASR RESTORE PROGRESS: 46%
    [04:56:53.0845] ASR RESTORE PROGRESS: 48%
    [04:56:53.0845] ASR RESTORE PROGRESS: 50%
    [04:56:53.0845] ASR RESTORE PROGRESS: 52%
    [04:56:53.0845] ASR RESTORE PROGRESS: 54%
    [04:56:53.0845] ASR RESTORE PROGRESS: 56%
    [04:56:53.0845] ASR RESTORE PROGRESS: 58%
    [04:56:53.0845] ASR RESTORE PROGRESS: 60%
    [04:56:53.0845] ASR RESTORE PROGRESS: 62%
    [04:56:53.0845] ASR RESTORE PROGRESS: 64%
    [04:56:53.0845] ASR RESTORE PROGRESS: 66%
    [04:56:53.0845] ASR RESTORE PROGRESS: 68%
    [04:56:53.0845] ASR RESTORE PROGRESS: 70%
    [04:56:53.0845] ASR RESTORE PROGRESS: 72%
    [04:56:53.0845] ASR RESTORE PROGRESS: 74%
    [04:56:53.0845] ASR RESTORE PROGRESS: 76%
    [04:56:53.0845] ASR RESTORE PROGRESS: 78%
    [04:56:53.0845] ASR RESTORE PROGRESS: 80%
    [04:56:53.0845] ASR RESTORE PROGRESS: 82%
    [04:56:53.0845] ASR RESTORE PROGRESS: 84%
    [04:56:53.0845] ASR RESTORE PROGRESS: 86%
    [04:56:53.0845] ASR RESTORE PROGRESS: 88%
    [04:56:53.0845] ASR RESTORE PROGRESS: 90%
    [04:56:53.0845] ASR RESTORE PROGRESS: 92%
    [04:56:53.0845] ASR RESTORE PROGRESS: 94%
    [04:56:53.0845] ASR RESTORE PROGRESS: 96%
    [04:56:53.0845] ASR RESTORE PROGRESS: 98%
    [04:56:53.0845] ASR: 2013-09-22 04:49:03.559 asr[21:1503] CFPreferences: user home directory at file:///var/root/ is unavailable. User domains will be volatile.
    [04:56:53.0845] AppleUSBDeviceMux::sessionUpcall socket is closed, session 0x8b46f898 (12345<-lo0->49168 12345<-usb->13312)
    [04:56:53.0845] ASR RESTORE PROGRESS: 100%
    [04:56:53.0845] ASR: Copied 1585750528 bytes in 188.63 seconds, 8209.76 KiB/s
    [04:56:53.0845] ASR STATUS: verify
    [04:56:53.0845] ASR VERIFY PROGRESS: 2%
    [04:56:53.0845] ASR VERIFY PROGRESS: 4%
    [04:56:53.0845] ASR VERIFY PROGRESS: 6%
    [04:56:53.0845] ASR VERIFY PROGRESS: 8%
    [04:56:53.0845] ASR VERIFY PROGRESS: 10%
    [04:56:53.0845] ASR VERIFY PROGRESS: 12%
    [04:56:53.0845] ASR VERIFY PROGRESS: 14%
    [04:56:53.0845] ASR VERIFY PROGRESS: 16%
    [04:56:53.0845] ASR VERIFY PROGRESS: 18%
    [04:56:53.0845] ASR VERIFY PROGRESS: 20%
    [04:56:53.0845] ASR VERIFY PROGRESS: 22%
    [04:56:53.0845] ASR VERIFY PROGRESS: 24%
    [04:56:53.0845] ASR VERIFY PROGRESS: 26%
    [04:56:53.0845] ASR VERIFY PROGRESS: 28%
    [04:56:53.0845] ASR VERIFY PROGRESS: 30%
    [04:56:53.0845] ASR VERIFY PROGRESS: 32%
    [04:56:53.0845] ASR VERIFY PROGRESS: 34%
    [04:56:53.0845] ASR VERIFY PROGRESS: 36%
    [04:56:53.0845] ASR VERIFY PROGRESS: 38%
    [04:56:53.0845] ASR VERIFY PROGRESS: 40%
    [04:56:53.0845] ASR VERIFY PROGRESS: 42%
    [04:56:53.0845] ASR VERIFY PROGRESS: 44%
    [04:56:53.0845] ASR VERIFY PROGRESS: 46%
    [04:56:53.0845] ASR VERIFY PROGRESS: 48%
    [04:56:53.0845] ASR VERIFY PROGRESS: 50%
    [04:56:53.0845] ASR VERIFY PROGRESS: 52%
    [04:56:53.0845] ASR VERIFY PROGRESS: 54%
    [04:56:53.0845] ASR VERIFY PROGRESS: 56%
    [04:56:53.0845] ASR VERIFY PROGRESS: 58%
    [04:56:53.0845] ASR VERIFY PROGRESS: 60%
    [04:56:53.0845] ASR VERIFY PROGRESS: 62%
    [04:56:53.0845] ASR VERIFY PROGRESS: 64%
    [04:56:53.0845] ASR VERIFY PROGRESS: 66%
    [04:56:53.0845] ASR VERIFY PROGRESS: 68%
    [04:56:53.0845] ASR VERIFY PROGRESS: 70%
    [04:56:53.0845] ASR VERIFY PROGRESS: 72%
    [04:56:53.0845] ASR VERIFY PROGRESS: 74%
    [04:56:53.0845] ASR VERIFY PROGRESS: 76%
    [04:56:53.0845] ASR VERIFY PROGRESS: 78%
    [04:56:53.0845] ASR VERIFY PROGRESS: 80%
    [04:56:53.0845] ASR VERIFY PROGRESS: 82%
    [04:56:53.0845] ASR VERIFY PROGRESS: 84%
    [04:56:53.0845] ASR VERIFY PROGRESS: 86%
    [04:56:53.0845] ASR VERIFY PROGRESS: 88%
    [04:56:53.0845] ASR VERIFY PROGRESS: 90%
    [04:56:53.0845] ASR VERIFY PROGRESS: 92%
    [04:56:53.0845] ASR VERIFY PROGRESS: 94%
    [04:56:53.0845] ASR VERIFY PROGRESS: 96%
    [04:56:53.0845] ASR VERIFY PROGRESS: 98%
    [04:56:53.0845] ASR VERIFY PROGRESS: 100%
    [04:56:53.0845] ASR: Verified SHA-1 checksum 1585750528 bytes in 40.36 seconds, 38365.77 KiB/s
    [04:56:53.0845] ASR STATUS: finish
    [04:56:53.0845] entering ramrod_probe_media
    [04:56:53.0845] device partitioning scheme is GPT
    [04:56:53.0845] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [04:56:53.0845] entering mount_filesystems
    [04:56:53.0845] executing /sbin/fsck_hfs
    [04:56:53.0845] ** /dev/rdisk0s1s1
    [04:56:53.0845]    Executing fsck_hfs (version hfs-227).
    [04:56:53.0845] ** Checking Journaled HFS Plus volume.
    [04:56:53.0845] ** Detected a case-sensitive volume.
    [04:56:53.0845]    The volume name is Innsbruck11A465.N90OS
    [04:56:53.0845] ** Checking extents overflow file.
    [04:56:53.0845] ** Checking catalog file.
    [04:56:53.0845] ** Checking multi-linked files.
    [04:56:53.0845] ** Checking catalog hierarchy.
    [04:56:53.0845] ** Checking extended attributes file.
    [04:56:53.0845] ** Checking volume bitmap.
    [04:56:53.0845] ** Checking volume information.
    [04:56:53.0845] ** Trimming unused blocks.
    [04:56:53.0845] ** The volume Innsbruck11A465.N90OS appears to be OK.
    [04:56:53.0845] executing /sbin/mount_hfs
    [04:56:53.0845] /dev/disk0s1s1 mounted on /mnt1
    [04:56:53.0845] executing /sbin/fsck_hfs
    [04:56:53.0845] ** /dev/rdisk0s1s2
    [04:56:53.0845]    Executing fsck_hfs (version hfs-227).
    [04:56:53.0845] ** Checking Journaled HFS Plus volume.
    [04:56:53.0845] ** Detected a case-sensitive volume.
    [04:56:53.0845]    The volume name is Data
    [04:56:53.0845] ** Checking extents overflow file.
    [04:56:53.0845] ** Checking catalog file.
    [04:56:53.0845] ** Checking multi-linked files.
    [04:56:53.0845] ** Checking catalog hierarchy.
    [04:56:53.0845] ** Checking extended attributes file.
    [04:56:53.0845] ** Checking volume bitmap.
    [04:56:53.0845] ** Checking volume information.
    [04:56:53.0845] ** Trimming unused blocks.
    [04:56:53.0845] ** The volume Data appears to be OK.
    [04:56:53.0845] executing /sbin/mount_hfs
    [04:56:53.0845] /dev/disk0s1s2 mounted on /mnt2
    [04:56:53.0845] entering install_kernel_cache
    [04:56:53.0845] writing kernelcache to /mnt1/System/Library/Caches/com.apple.kernelcaches/kernelcache
    [04:56:53.0845] entering install_secure_vault_daemon
    [04:56:53.0845] entering get_hardware_platform
    [04:56:53.0845] platform-name = s5l8930x
    [04:56:53.0845] linking /mnt1/usr/sbin/securekeyvaultd to /mnt1/usr/sbin/securekeyvaultd.s5l8930x
    [04:56:53.0845] no securekeyvaultd for s5l8930x
    [04:56:53.0845] entering ramrod_ticket_write
    [04:56:53.0845] writing ticket to /mnt1/System/Library/Caches/apticket.der
    [04:56:53.0845] entering update_device_firmware
    [04:56:53.0845] create_baseband_update_options: Got imeisv: 20
    [04:56:53.0845] baseband updater options = <CFBasicHash 0x15d2f6e0 [0x3c0ae0]>{type = mutable dict, count = 3,
    [04:56:53.0845] entries =>
    [04:56:53.0845]           0 : <CFString 0x1b7248 [0x3c0ae0]>{contents = "IMEISwVersion"} = <CFNumber 0x15d2f830 [0x3c0ae0]>{value = +20, type = kCFNumberSInt32Type}
    [04:56:53.0845]           1 : <CFString 0x1b72a8 [0x3c0ae0]>{contents = "autoSetupEnv"} = <CFBoolean 0x3c0e98 [0x3c0ae0]>{value = false}
    [04:56:53.0845]           2 : <CFString 0x1b72b8 [0x3c0ae0]>{contents = "disablePing"} = <CFBoolean 0x3c0e90 [0x3c0ae0]>{value = true}
    [04:56:53.0845] }
    [04:56:53.0845]
    [04:56:53.0845] _baseband_update_requires_system_filesystem_once: querying baseband to determine if it requires system filesystem
    [04:56:53.0845] _baseband_update_requires_system_filesystem_once: query returned <CFBasicHash 0x15d2eec0 [0x3c0ae0]>{type = immutable dict, count = 1,
    [04:56:53.0845] entries =>
    [04:56:53.0845]           0 : <CFString 0x1b7018 [0x3c0ae0]>{contents = "requireSystemPartitionMount"} = <CFBoolean 0x3c0e98 [0x3c0ae0]>{value = false}
    [04:56:53.0845] }
    [04:56:53.0845]
    [04:56:53.0845] entering update_iBoot
    [04:56:53.0845] found 'AppleImage3NORAccess' object in IORegistry
    [04:56:53.0845] entering update_iBoot_image3_NOR_access
    [04:56:53.0845] write_image3_data: flashing illb data (length = 0x209d9)
    [04:56:53.0845] write_image3_data: flashing SCAB data (length = 0xaf0)
    [04:56:53.0845] ticket updated
    [04:56:53.0845] write_image3_data: flashing ibot data (length = 0x4518c)
    [04:56:53.0845] write_image3_data: flashing chg1 data (length = 0x88cc)
    [04:56:53.0845] write_image3_data: flashing bat0 data (length = 0xaa4c)
    [04:56:53.0845] write_image3_data: flashing batF data (length = 0x1484c)
    [04:56:53.0845] write_image3_data: flashing logo data (length = 0x1a8c)
    [04:56:53.0845] write_image3_data: flashing recm data (length = 0x10f4c)
    [04:56:53.0845] write_image3_data: flashing dtre data (length = 0x1234c)
    [04:56:53.0845] write_image3_data: flashing chg0 data (length = 0x260c)
    [04:56:53.0845] write_image3_data: flashing bat1 data (length = 0x80c)
    [04:56:53.0845] write_image3_data: flashing glyP data (length = 0x2e4c)
    [04:56:53.0845] AppleImage3NORAccess::_getSuperBlock imageVersion: 3
    [04:56:53.0845] AppleImage3NORAccess::_getSuperBlock imageVersion: 3
    [04:56:53.0845] [nand_part_core:INF@2289] first 2 pages of boot blocks written with copies of partition table
    [04:56:53.0845] entering update_gas_gauge
    [04:56:53.0845] entering update_ir_mcu
    [04:56:53.0845] looking for mcu nub...no entry from path!
    [04:56:53.0845] TiSerialFlasher not supported on this platform. Exiting.
    [04:56:53.0845] entering update_baseband
    [04:56:53.0845] update_baseband: registering for progress notifications
    [04:56:53.0845] create_baseband_update_options: Got imeisv: 20
    [04:56:53.0845] baseband updater options = <CFBasicHash 0x15d2fed0 [0x3c0ae0]>{type = mutable dict, count = 6,
    [04:56:53.0845] entries =>
    [04:56:53.0845]           0 : <CFString 0x1b71f8 [0x3c0ae0]>{contents = "SystemRoot"} = <CFString 0x15d2ee90 [0x3c0ae0]>{contents = "/mnt1"}
    [04:56:53.0845]           1 : <CFString 0x1b7248 [0x3c0ae0]>{contents = "IMEISwVersion"} = <CFNumber 0x15d2feb0 [0x3c0ae0]>{value = +20, type = kCFNumberSInt32Type}
    [04:56:53.0845]           2 : <CFString 0x1b72a8 [0x3c0ae0]>{contents = "autoSetupEnv"} = <CFBoolean 0x3c0e98 [0x3c0ae0]>{value = false}
    [04:56:53.0845]           3 : <CFString 0x1b7188 [0x3c0ae0]>{contents = "forceUpdate"} = <CFBoolean 0x3c0e90 [0x3c0ae0]>{value = true}
    [04:56:53.0845]           5 : <CFString 0x1b72b8 [0x3c0ae0]>{contents = "disablePing"} = <CFBoolean 0x3c0e90 [0x3c0ae0]>{value = true}
    [04:56:53.0845]           6 : <CFString 0x1b71a8 [0x3c0ae0]>{contents = "DisallowFusiing"} = <CFBoolean 0x3c0e90 [0x3c0ae0]>{value = true}
    [04:56:53.0845] }
    [04:56:53.0845]
    [04:56:53.0845] update_baseband: querying baseband info
    [04:56:53.0845] bbupdater: Opening device path /dev/cu.debug, using baud 115200
    [04:56:53.0845] bbupdater: Configuring Hardware Mux...bbupdater: OK
    [04:56:53.0845] bbupdater: [1379825425.342938 : 13.00]::: powercycle
    [04:56:53.0845] bbupdater: - Ping failed, trying again, 48 tries left
    [04:56:53.0845] bbupdater: - Ping failed, trying again, 47 tries left
    [04:56:53.0845] [nand_part_core:INF@3169] next 87 pages of boot blocks written with LLB image of size 133632 bytes
    [04:56:53.0845] [nand_part_core:INF@3172] final 39 pages of boot blocks left unprogrammed
    [04:56:53.0845] bbupdater: - Ping failed, trying again, 46 tries

    Try to Restore your iPhone on a different computer to see if it is iPhone or computer problem.

  • "application descriptor not found" when trying to create .ane file

    I have been trying to create a very simple native extention for the better part of a week now and I just can't seem to figure it out.
    Using tutorials and guides from the following sources:
    http://www.adobe.com/devnet/air/articles/extending-air.html
    http://www.adobe.com/content/dam/Adobe/en/devnet/devices/pdfs/DevelopingActionScriptExtens ionsForAdobeAIR.pdf
    http://custardbelly.com/blog/2011/09/21/air-native-extension-example-ibattery-for-ios/
    I managed to get up to the point where I need to create the ane file, but I am getting "application descriptor not found".
    So, here is the detailed explanation of everything I have done to date. Can someone tell me where I have gone wrong?
    1. On the mac, I created an xcode project, using the iBattery example code from the link above, I managed to create static library .a file. I am not going to discount the possiblity that there are many errors still in this file, but I am going to assume for the moment that my current problem is not related to any issues in this static library.
    2. Copied the static library "DaveExtention.a" to my PC where I have flash CS5.5 installed (yes, I know there is a typo in the name)
    3. In my app folder, I created a lib folder that now contains the following files:
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\DaveExtension.fla
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\DaveExtension-app.xml
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\com\extensions\DaveExtension\DaveExtension.as
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\com\extensions\DaveExtension\BatteryStateEnum.as
    I set my project to compile an swc into the build folder and simply put the following code into my project:
    import com.extensions.DaveExtension.BatteryStateEnum;
    import com.extensions.DaveExtension.DaveExtension;
    var ext:DaveExtension = new DaveExtension;
    var batterystate:BatteryStateEnum;
    stop();
    I then publish the swc.
    4. Once the swc is created in the build folder, I copy the libDaveExtention.a to the build folder and create the extension.xml file, which looks like this:
    <extension xmlns="http://ns.adobe.com/air/extension/2.5">
      <id>com.extensions.DaveExtension</id>
      <versionNumber>1</versionNumber>
      <platforms>
        <platform name="iPhone-ARM">
            <applicationDeployment>
                <nativeLibrary>libDaveExtention.a</nativeLibrary>
                <initializer>ExtInitializer</initializer>
                <finalizer>ExtFinalizer</finalizer>
            </applicationDeployment>
        </platform>
      </platforms>
    </extension>
    5. I make a copy of the swc file and rename it to .zip... I then extract library.swf from it and delete the zip. My build folder now looks like this:
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\DaveExtension.swc
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\extension.xml
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\libDaveExtention.a
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build\library.swf
    6. I downloaded the flex 4.5.1.21328 sdk and the Air 3.0 sdk, which I copied into the flex sdk folder (which is located in "D:\SDKs\flex_sdk_4.5.1.21328")
    7. In my build folder, I create a simple batch file called buildane.bat with the following command:
    D:\SDKs\flex_sdk_4.5.1.21328\bin\adl -package -target ane DaveExtension.ane extension.xml -swc DaveExtension.swc -platform iPhone-ARM library.swf libDaveExtention.a
    8. I then open a command prompt to my build folder and run buildane.bat and this is my output:
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build>buildane.bat
    D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build>D:\SDKs\flex_sdk_4.5.1.21328\bin\adl -package -target ane DaveExtension.ane extension.xml -swc DaveExtension.swc -platform iPhone-ARM library.swf libDaveExtention.a
    application descriptor not found
    No matter what I try, I can't get passed this.
    Can anyone tell me what I am doing wrong?

    >>D:\GoldSun\Source Code\Flash\ExtentionTest\lib\Build>D:\SDKs\flex_sdk_4.5.1.21328\bin\adl -package -target ane DaveExtension.ane extension.xml -swc DaveExtension.swc -platform iPhone-ARM library.swf libDaveExtention.a
    Either its a typo or by mistake you wrote adl in yout bat file. Change it to adt since that is the file that will package your ane. adl is just used for debugging/running on Desktop.
    Hope this helps. let me know how it goes.
    Thanks,
    Meet

  • What's new in Font Folio 11.1?

    Looks like Font Folio 11.1 released today, per http://adobe.com/products/fontfolio.
    Can anyone tell us what is new in the past 5 years? I had hoped for some better glyph coverage in fonts like Utopia, but I don't see any evidence of that in the documentation, but I'm still hopeful?
    The list of 80 additional fonts does not seem all that exciting for Western users, but perhaps much more so for users of other Arabic, Hebrew, Devanagari, etc.
    Comparing the PDF font listings, here's what the new faces are:
    HypatiaPro-ExtraLight.otfHypatiaPro-ExtraLightIt.otfHypatiaPro-Light.otfHypatiaPro-LightIt.otfHypatiaPro-Regular.otfHypatiaPro-It.otfHypatiaPro-Semibold.otfHypatiaPro-SemiboldIt.otfHypatiaPro-Bold.otfHypatiaPro-BoldIt.otfHypatiaPro-Black.otfHypatiaPro-BlackIt.otfKinesisPro3-Light.otfKinesisPro3-LightItalic.otfKinesisPro3-Regular.otfKinesisPro3-Italic.otfKinesisPro3-Semibold.otfKinesisPro3-SemiboldItalic.otfKinesisPro3-Bold.otfKinesisPro3-BoldItalic.otfKinesisPro3-Black.otfKinesisPro3-BlackItalic.otfAdobeTextPro-Regular.otfAdobeTextPro-It.otfAdobeTextPro-Semibold.otfAdobeTextPro-SemiboldIt.otfAdobeTextPro-Bold.otfAdobeTextPro-BoldIt.otfTrajanPro3-ExtraLight.otfTrajanPro3-Light.otfTrajanPro3-Regular.otfTrajanPro3-Semibold.otfTrajanPro3-Bold.otfTrajanPro3-Black.otfTrajanSansPro-ExtraLight.otfTrajanSansPro-Light.otfTrajanSansPro-Regular.otfTrajanSansPro-Semibold.otfTrajanSansPro-Bold.otfTrajanSansPro-Black.otfMyriadArabic-Light.otfMyriadArabic-LightIt.otfMyriadArabic-Regular.otfMyriadArabic-Italic.otfMyriadArabic-Semibold.otfMyriadArabic-SemiboldIt.otfMyriadArabic-Bold.otfMyriadArabic-BoldIt.otfMyriadArabic-Black.otfMyriadArabic-BlackIt.otfAdobeDevanagari-Regular.otfAdobeDevanagari-Italic.otfAdobeDevanagari-Bold.otfAdobeDevanagari-BoldItalic.otfMyriadHebrew-Light.otfMyriadHebrew-LightIt.otfMyriadHebrew-LightItAlt.otfMyriadHebrew-Regular.otfMyriadHebrew-It.otfMyriadHebrew-ItAlt.otfMyriadHebrew-Semibold.otfMyriadHebrew-SemiboldIt.otfMyriadHebrew-SemiboldItAlt.otfMyriadHebrew-Bold.otfMyriadHebrew-BoldIt.otfMyriadHebrew-BoldItAlt.otfMyriadHebrewCursive-Light.otfMyriadHebrewCursive-LightIt.otfMyriadHebrewCursive-Regular.otfMyriadHebrewCursive-It.otfMyriadHebrewCursive-Semibold.otfMyriadHebrewCursive-SemiboldIt.otfMyriadHebrewCursive-Light.otfMyriadHebrewCursive-BoldIt.otfKazurakiSP2NLight.otfRyoDispPlusN-Medium.otfRyoDispPlusN-Semibold.otfRyoDispPlusN-Bold.otfRyoDispPlusN-ExtraBold.otfRyoDispPlusN-Heavy.otf
    I suppose one answer is just "upgrade and find out." Looking at the case of Utopia, can I assume that the latest version from UtopiaStdReadMe.html is available? For instance, it reads:
        The following faces have version 2.096:
         UtopiaStd-BlackHeadline created Fri Dec 17 18:01:27 2010.     UtopiaStd-BoldCapt created Fri Dec 17 18:01:28 2010.     UtopiaStd-BoldCaptIt created Fri Dec 17 18:01:28 2010.     UtopiaStd-BoldDisp created Fri Dec 17 18:01:28 2010.
         UtopiaStd-BoldDispIt created Fri Dec 17 18:01:28 2010.     UtopiaStd-BoldSubh created Fri Dec 17 18:01:29 2010.     UtopiaStd-BoldSubhIt created Fri Dec 17 18:01:29 2010.     UtopiaStd-Capt created Fri Dec 17 18:01:30 2010.     UtopiaStd-CaptIt created Fri Dec 17 18:01:30 2010.     UtopiaStd-Disp created Fri Dec 17 18:01:30 2010.
         UtopiaStd-DispIt created Fri Dec 17 18:01:31 2010.     UtopiaStd-SemiboldCapt created Fri Dec 17 18:01:32 2010.     UtopiaStd-SemiboldCaptIt created Fri Dec 17 18:01:32 2010.     UtopiaStd-SemiboldDisp created Fri Dec 17 18:01:32 2010.     UtopiaStd-SemiboldDispIt created Fri Dec 17 18:01:33 2010.     UtopiaStd-SemiboldSubh created Fri Dec 17 18:01:33 2010.
         UtopiaStd-SemiboldSubhIt created Fri Dec 17 18:01:34 2010.     UtopiaStd-Subh created Fri Dec 17 18:01:34 2010.     UtopiaStd-SubhIt created Fri Dec 17 18:01:34 2010.
    The following faces have version 2.097:
         UtopiaStd-Bold created Wed Mar 16 14:24:26 2011.     UtopiaStd-Bold created Wed Mar 16 14:24:26 2011.
         UtopiaStd-BoldIt created Wed Mar 16 14:24:24 2011.     UtopiaStd-BoldIt created Wed Mar 16 14:24:24 2011.     UtopiaStd-Italic created Wed Mar 16 14:24:25 2011.     UtopiaStd-Italic created Wed Mar 16 14:24:25 2011.     UtopiaStd-Regular created Wed Mar 16 14:24:26 2011.     UtopiaStd-Regular created Wed Mar 16 14:24:26 2011.
         UtopiaStd-Semibold created Wed Mar 16 14:24:27 2011.     UtopiaStd-Semibold created Wed Mar 16 14:24:27 2011.     UtopiaStd-SemiboldIt created Wed Mar 16 14:24:25 2011.     UtopiaStd-SemiboldIt created Wed Mar 16 14:24:25 2011.
    version 2.097 created 2011/03/16
         Utopia Std
         Utopia Std
    version 2.096 created 2010/12/17
         Added code at end of name ID 3 'Unique Name' to indicate licensing foundry.
         Remove deprecated ForceBold keyword from CFF table.
         Update OS/2 table to version 4: add WPF names name ID 21 and 22 to name table, if needed.
    version 2.076 created 2009/11/23
         Corrected font menu names in name table for Mac platform names. Name
         ID's 1,2 16 and 17 are now written following the same rules as the
         Windows platform names. Previous releases put the Preferred Name
         and Style in Mac platform name ID 1 and 2, and did not write name ID
         16 and 17, for legacy issues with old Mac OS versions.
    version 2.066 created 2009/08/11
         Added Windows platform name ID 8- Manufacturer.
    version 2.050 created 2007/08/16
         Release for FontFolio 11... [actually a lot of bullets here!] 
    So can I assume FF11.1 will have Utopia 2.097? I can't really see anything in the above that looks like a user-visible change of significance...
    On the other hand, FF11.1 upgrades seem to be extremely reasonably priced.  List price of the upgrade is $29.95/seat (20-pack), so really that's chump-change. So I suppose I can't really go wrong. But it's hard to get excited about, especially when I already have Adobe Text and Hypatia Pro from giveaway incentives (though I guess having them in FF clarifies some potentially thorny licensing questions...)
    Thanks!

    Err, so I thought this would be an easy question...not so?

  • ERROR 27 :: iPhone 5 16GB Won't Restore, Stuck in DFU mode

    I continue to recieve error msg when trying to restore my iphone... (end of the loading iPhone firmware)
    As you show my itunes updater logs
    ========================================
    2014-02-14 14:46:09.341 [21904:15f8]: restore library built Jan  7 2014 at 02:02:33
    2014-02-14 14:46:09.341 [21904:15f8]: iTunes: iTunes 11.1.4.62
    2014-02-14 14:46:09.341 [21904:15f8]: iTunes: Software payload version: 11B554a
    2014-02-14 14:46:09.341 [21904:15f8]: iTunes: Using MobileRestore state machine
    [12:47:15.0372] Changing state from 'Idle' to 'Restoring'
    [12:47:15.0372] requested restore behavior: Erase
    [12:47:15.0373] requested variant: Erase
    [12:47:15.0374] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:16.0006] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is True
    [12:47:16.0007] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreLogo" Digest = "<CFData 00E8ABE8 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0007] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreDeviceTree" Digest = "<CFData 00E8AC30 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0008] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreKernelCache" Digest = "<CFData 00E8AC78 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0009] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreRamDisk" Digest = "<CFData 00E8C238 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0009] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBEC" Digest = "<CFData 00E8C1F0 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0010] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBSS" Digest = "<CFData 00E8BFF8 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0011] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "KernelCache" Digest = "<CFData 00E8C280 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0011] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow1" Digest = "<CFData 00E8C160 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0012] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow0" Digest = "<CFData 00E8C2C8 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0013] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "LLB" Digest = "<CFData 00E8C118 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0013] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBoot" Digest = "<CFData 00E8C040 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0014] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "DeviceTree" Digest = "<CFData 00E8C0D0 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0014] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging1" Digest = "<CFData 00E8C1A8 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0015] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "AppleLogo" Digest = "<CFData 00E8C310 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0015] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryPlugin" Digest = "<CFData 00E8C358 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0016] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryFull" Digest = "<CFData 00E8C088 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0016] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging0" Digest = "<CFData 0F4C8D08 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0017] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RecoveryMode" Digest = "<CFData 0F4C8C78 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [12:47:16.0018] amai: _AMAuthInstallBundleCreateServerRequestDictionary: using UniqueBuildID <CFData 05B9C328 [7497907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [12:47:16.0018] amai: AMAuthInstallRequestSendSync: SSO function returned NULL, SSO disabled.
    [12:47:16.0018] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/H:/Users/ABDULL~1/AppData/Local/Temp/Per2900.tmp/amai/debug/ts s-request.plist
    [12:47:16.0714] amai: tss_submit_job: HttpQueryInfo returned 200
    [12:47:16.0909] amai: AMAuthInstallRequestSendSync: received tss response (server version: 2.1.0)
    [12:47:16.0914] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/H:/Users/ABDULL~1/AppData/Local/Temp/Per2900.tmp/amai/debug/ts s-response.plist
    [12:47:17.0251] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "Diags"
    [12:47:17.0313] iBoot build-version = iBoot-1940.3.5
    [12:47:17.0314] iBoot build-style = RELEASE
    [12:47:17.0316] requested restore behavior: Erase
    [12:47:17.0318] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:17.0320] requested restore behavior: Erase
    [12:47:17.0324] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:17.0325] unable to open device_map.txt: No such file or directory
    [12:47:17.0327] found device map entry for 0x00008950 0x00000002. boardConfig=n42ap platform=s5l8950x
    [12:47:17.0328] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [12:47:17.0330] AMDeviceIoControl: GetOverlappedResult failed
    [12:47:17.0330] AMDeviceIoControl: pipe stall
    [12:47:17.0331] USBControlTransfer: error 31, usbd status c0000004
    [12:47:17.0332] command device request for 'getenv radio-error' failed: 2008
    [12:47:17.0333] radio-error not set
    [12:47:17.0334] unable to open device_map.txt: No such file or directory
    [12:47:17.0335] <Recovery Mode Device 0712ECA0>: production fused device
    [12:47:17.0336] requested restore behavior: Erase
    [12:47:17.0337] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:17.0338] requested restore behavior: Erase
    [12:47:17.0338] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:17.0339] interface has 1 endpoints, file pipe = 1
    [12:47:17.0339]
    [12:47:17.0340] <Recovery Mode Device 0712ECA0>: operation 4 progress -1
    [12:47:17.0382] bootstrapping restore with iBEC
    [12:47:17.0383] requested restore behavior: Erase
    [12:47:17.0385] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:17.0395] <Recovery Mode Device 0712ECA0>: operation 31 progress -1
    [12:47:18.0396] <Recovery Mode Device 0712ECA0>: Recovery mode succeeded
    [12:47:18.0397] Finished Recovery Restore Phase: Successful
    [12:47:18.0520] Recovery mode device disconnected
    [12:47:18.0522] Device removed when in state Restoring, moving device to transition state
    [12:47:18.0523] Changing state from 'Restoring' to 'Transitioning'
    [12:47:18.0524] Creating timer to monitor transition
    [12:47:20.0554] Recovery mode device connected
    [12:47:20.0555] Transitioning device returned, continuing restore.
    [12:47:20.0555] Canceling timer
    [12:47:20.0556] Changing state from 'Transitioning' to 'Restoring'
    [12:47:20.0556] requested restore behavior: Erase
    [12:47:20.0557] requested variant: Erase
    [12:47:20.0557] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:21.0042] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [12:47:21.0043] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [12:47:21.0044] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [12:47:21.0045] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [12:47:21.0045] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [12:47:21.0046] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBEC"
    [12:47:21.0046] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    [12:47:21.0047] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [12:47:21.0048] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [12:47:21.0048] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [12:47:21.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    [12:47:21.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [12:47:21.0049] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [12:47:21.0050] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [12:47:21.0050] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [12:47:21.0050] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [12:47:21.0051] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [12:47:21.0052] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [12:47:21.0052] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [12:47:21.0053] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [12:47:21.0053] iBoot build-version = iBoot-1940.3.5
    [12:47:21.0054] iBoot build-style = RELEASE
    [12:47:21.0054] requested restore behavior: Erase
    [12:47:21.0054] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:21.0055] requested restore behavior: Erase
    [12:47:21.0056] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:21.0057] unable to open device_map.txt: No such file or directory
    [12:47:21.0057] found device map entry for 0x00008950 0x00000002. boardConfig=n42ap platform=s5l8950x
    [12:47:21.0058] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [12:47:21.0059] AMDeviceIoControl: GetOverlappedResult failed
    [12:47:21.0059] AMDeviceIoControl: pipe stall
    [12:47:21.0059] USBControlTransfer: error 31, usbd status c0000004
    [12:47:21.0060] command device request for 'getenv radio-error' failed: 2008
    [12:47:21.0060] radio-error not set
    [12:47:21.0061] unable to open device_map.txt: No such file or directory
    [12:47:21.0061] <Recovery Mode Device 0712E8E8>: production fused device
    [12:47:21.0062] requested restore behavior: Erase
    [12:47:21.0062] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:21.0063] requested restore behavior: Erase
    [12:47:21.0063] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:21.0063] interface has 1 endpoints, file pipe = 1
    [12:47:21.0063]
    [12:47:21.0064] <Recovery Mode Device 0712E8E8>: operation 4 progress -1
    [12:47:21.0104] unable to open device_map.txt: No such file or directory
    [12:47:21.0105] found device map entry for 0x00008950 0x00000002. boardConfig=n42ap platform=s5l8950x
    [12:47:21.0106] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [12:47:21.0106] requested restore behavior: Erase
    [12:47:21.0107] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:21.0108] requested restore behavior: Erase
    [12:47:21.0109] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:21.0109] <Recovery Mode Device 0712E8E8>: operation 42 progress -1
    [12:47:21.0110] requested restore behavior: Erase
    [12:47:21.0111] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:22.0137] <Recovery Mode Device 0712E8E8>: operation 5 progress -1
    [12:47:22.0372] unable to open device_map.txt: No such file or directory
    [12:47:22.0374] found device map entry for 0x00008950 0x00000002. boardConfig=n42ap platform=s5l8950x
    [12:47:22.0375] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [12:47:22.0377] AMDeviceIoControl: GetOverlappedResult failed
    [12:47:22.0377] AMDeviceIoControl: pipe stall
    [12:47:22.0378] USBControlTransfer: error 31, usbd status c0000004
    [12:47:22.0380] command device request for 'getenv ramdisk-delay' failed: 2008
    [12:47:24.0036] <Recovery Mode Device 0712E8E8>: operation 6 progress -1
    [12:47:25.0047] <Recovery Mode Device 0712E8E8>: operation 7 progress -1
    [12:47:25.0260] <Recovery Mode Device 0712E8E8>: operation 8 progress -1
    [12:47:25.0261] unable to open device_map.txt: No such file or directory
    [12:47:25.0263] found device map entry for 0x00008950 0x00000002. boardConfig=n42ap platform=s5l8950x
    [12:47:25.0264] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [12:47:25.0265] <Recovery Mode Device 0712E8E8>: operation 9 progress -1
    [12:47:25.0266] <Recovery Mode Device 0712E8E8>: Recovery mode succeeded
    [12:47:25.0267] Finished Recovery Restore Phase: Successful
    [12:47:26.0474] Recovery mode device disconnected
    [12:47:26.0474] Device removed when in state Restoring, moving device to transition state
    [12:47:26.0475] Changing state from 'Restoring' to 'Transitioning'
    [12:47:26.0477] Creating timer to monitor transition
    [12:47:28.0609] RestoreOS mode device connected
    [12:47:28.0610] Transitioning device returned, continuing restore.
    [12:47:28.0610] Canceling timer
    [12:47:28.0611] Changing state from 'Transitioning' to 'Restoring'
    [12:47:28.0614] <Restore Device 00E4C4C0>: operation 44 progress -1
    [12:47:28.0615] requested restore behavior: Erase
    [12:47:28.0616] requested variant: Erase
    [12:47:28.0616] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:29.0096] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [12:47:29.0097] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [12:47:29.0097] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [12:47:29.0098] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [12:47:29.0099] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [12:47:29.0099] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBEC"
    [12:47:29.0100] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "iBSS" has been previously personalized; skipping it
    [12:47:29.0100] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [12:47:29.0101] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [12:47:29.0101] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [12:47:29.0102] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "LLB" has been previously personalized; skipping it
    [12:47:29.0103] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [12:47:29.0103] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [12:47:29.0103] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [12:47:29.0104] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [12:47:29.0104] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [12:47:29.0105] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [12:47:29.0105] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [12:47:29.0106] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [12:47:29.0106] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [12:47:29.0107] requested restore behavior: Erase
    [12:47:29.0107] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:29.0108] device did not return saved USB log
    [12:47:29.0108] device did not return saved panic log
    [12:47:29.0109] previous restore failed with exit status 0x100
    [12:47:29.0109] connected to service com.apple.mobile.restored
    [12:47:29.0109] using protocol version 13
    [12:47:29.0110] unable to open device_map.txt: No such file or directory
    [12:47:29.0110] board config = n42ap
    [12:47:29.0111] no value returned for BootArgs
    [12:47:29.0111] _copyDeviceProperty() failed for restore bootargs
    [12:47:29.0113] no value returned for MarketingPartNumber
    [12:47:29.0113] _copyDeviceProperty() failed for mpn
    [12:47:29.0114] requested restore behavior: Erase
    [12:47:29.0115] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [12:47:29.0117] value query for 'HardwareModel' returned 'N42AP'
    [12:47:39.0127] <Restore Device 00E4C4C0>: operation 28 progress -1
    [12:47:52.0192] previous restore failed: rial Port on ARM Device=uart1 at 0x32600000(0x8d46d000)
    [12:47:52.0192] [IOFlashPartitionScheme:INIT ] probing with score 4[nand_part_core:INF@2173] read valid partition table
    [12:47:52.0192] [nand_part_core:INF@ 145] created partition 0 as 'Boot Block'
    [12:47:52.0192] [nand_part_core:INF@ 145] created partition 1 as 'Effaceable'
    [12:47:52.0192] [nand_part_core:INF@ 145] created partition 2 as 'NVRAM'
    [12:47:52.0192] [nand_part_core:INF@ 145] created partition 3 as 'Firmware'
    [12:47:52.0192] [nand_part_core:INF@ 145] created partition 4 as 'Filesystem'
    [12:47:52.0192] [nand_part_core:INF@ 157] published partition 4
    [12:47:52.0192] [nand_part_core:INF@ 145] created partition 5 as 'System Config'
    [12:47:52.0192] com.apple.AppleFSCompressionTypeZlib load succeeded
    [12:47:52.0192] AppleSwissPPNFTL started with IOFlashStoragePartition provider
    [12:47:52.0192] [NAND] _FindFlashMediaAndKeepout:601 physical nand block offset 1
    [12:47:52.0192] AppleNANDFTL registered[nand_part_core:INF@ 145] created partition 6 as 'Diagnostic Data'
    [12:47:52.0192] [nand_part_core:INF@ 145] created partition 7 as 'Bad Block Table'
    [12:47:52.0192] [NAND] start:356 this 0x9076d400 PROVIDER=0x907a2c80 flashMedia=0x907a2c80
    [12:47:52.0192] L2TP domain init
    [12:47:52.0192] L2TP domain init complete
    [12:47:52.0192] PPTP domain init
    [12:47:52.0192] [NAND] WMR_Start:149 Apple PPN NAND Driver, Read/Write
    [12:47:52.0192] [NAND] WMR_Start:174 FIL_Init  [OK]
    [12:47:52.0192] Scaler 0 enableDeviceClock(true,HALF_CLOCK_INDEX) = 0x0
    [12:47:52.0192] Scaler 0 enableDeviceClock(true,FULL_CLOCK_INDEX) = 0x0
    [12:47:52.0192] Scaler 0 enableDevicePower(true,0,HALF_CLOCK_INDEX) = 0x0
    [12:47:52.0192] Scaler 0 enableDeviceClock(false,FULL_CLOCK_INDEX) = 0x0
    [12:47:52.0192] AppleMultitouchN1SPI: successfully started
    [12:47:52.0192] Scaler 1 enableDeviceClock(true,HALF_CLOCK_INDEX) = 0x0
    [12:47:52.0192] Scaler 1 enableDeviceClock(true,FULL_CLOCK_INDEX) = 0x0
    [12:47:52.0192] Scaler 1 enableDevicePower(true,0,HALF_CLOCK_INDEX) = 0x0
    [12:47:52.0192] [nand_part_core:INF@ 157] published partition 7
    [12:47:52.0192] Scaler 1 enableDeviceClock(false,FULL_CLOCK_INDEX) = 0x0
    [12:47:52.0192] AppleD1972PMUPowerSource: AppleUSBCableDetect 1
    [12:47:52.0192] [NAND] WMR_Open:371 VFL_Open    [OK]
    [12:47:52.0192] AppleAP3DSH::probe found device with ID: 0x3f
    [12:47:52.0192] AppleAP3DSH::handleStart _calibrationMatrix [65044 -1766 -685] [-927 66132 -215] [379 250 66155]
    [12:47:52.0192] AppleAP3DSH::handleStart _calibrationOffsets [-446256 834666 2479123]
    [12:47:52.0192] AppleAP3DSH::handleStart - No calibration inverse matrix or the data is invalid, Compute locally
    [12:47:52.0192] AppleAP3DSH::handleStart _calibrationInverseMatrix [66053 1761 689] [924 64970 220] [-381 -256 64919]
    [12:47:52.0192] AppleAP3DSH::handleStart _odr400HzSampleInterval = 2418
    [12:47:52.0192] AppleD1972PMUPowerSource: AppleUSBCableType USBHost
    [12:47:52.0192] AppleH4CamIn::start - back camera expected
    [12:47:52.0192] AppleH4CamIn::start - front camera expected
    [12:47:52.0192] AppleH4CamIn::power_off_hardware
    [12:47:52.0192] AppleH4CamIn::setPowerStateGated: 0
    [12:47:52.0192] virtual bool AppleDisplayPipe::start_hardware(IOService *), auto-detect chip
    [12:47:52.0192] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [12:47:52.0192] AppleCS35L19Amp: could not allocate control 395
    [12:47:52.0192] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [12:47:52.0192] AppleMultitouchN1SPI: detected HBPP. driver will be kept alive
    [12:47:52.0192] display-scale = 2
    [12:47:52.0192] display-rotation = 0
    [12:47:52.0192] found applelogo at /usr/share/progressui/[email protected]
    [12:47:52.0192] found display: primary
    [12:47:52.0192] display: 640 x 1136
    [12:47:52.0192] found PTP interface
    [12:47:52.0192] AppleSynopsysOTGDevice - Configuration: PTP
    [12:47:52.0192] AppleSynopsysOTGDevice          Interface: PTP
    [12:47:52.0192] AppleSynopsysOTGDevice - Configuration: iPod USB Interface
    [12:47:52.0192] AppleSynopsysOTGDevice          Interface: USBAudioControl
    [12:47:52.0192] AppleSynopsysOTGDevice          Interface: USBAudioStreaming
    [12:47:52.0192] AppleSynopsysOTGDevice          Interface: IapOverUsbHid
    [12:47:52.0192] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device
    [12:47:52.0192] AppleSynopsysOTGDevice          Interface: PTP
    [12:47:52.0192] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [12:47:52.0192] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device + Apple USB Ethernet
    [12:47:52.0192] AppleSynopsysOTGDevice          Interface: PTP
    [12:47:52.0192] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [12:47:52.0192] AppleSynopsysOTGDevice          Interface: AppleUSBEthernet
    [12:47:52.0192] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioControl
    [12:47:52.0192] IOAccessoryPortUSB::start
    [12:47:52.0192] virtual bool AppleUSBDeviceMux::start(IOService *) build: Sep 27 2013 23:30:36
    [12:47:52.0192] init_waste
    [12:47:52.0192] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBMux
    [12:47:52.0192] AppleSynopsysOTGDevice::gated_registerFunction Register function IapOverUsbHid
    [12:47:52.0192] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioStreaming
    [12:47:52.0192] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBEthernet
    [12:47:52.0192] AppleSynopsysOTGDevice::gated_registerFunction Register function PTP
    [12:47:52.0192] AppleSynopsysOTGDevice::startUSBStack Starting usb stack
    [12:47:52.0192] IOReturn AppleUSBDeviceMux::setPropertiesGated(OSObject *) setting debug level to 7
    [12:47:52.0192] 000123.268755 wlan.N[0] AppleBCMWLANBusInterfaceHSIC::attachBusGated():  AppleBCMWLANBusInterfaceHSIC (0x916a5000) -->>-- AppleBCMWLANBusInterfaceHSICShim (0x92e43c00)
    [12:47:52.0192] AppleBCMWLANCore::init(): IO80211-40 Sep 27 2013 22:57:52
    [12:47:52.0192] AppleBCMWLANCore::init(): AppleBCMWLANV2-249.2 Sep 27 2013 23:32:48 release
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f05948 established 62078<-lo0->49152 62078<-usb->17920
    [12:47:52.0192] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x92f05948
    [12:47:52.0192] recv(13, 4) failed: connection closed
    [12:47:52.0192] unable to read message size: -1
    [12:47:52.0192] could not receive message
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f05948 established 62078<-lo0->49153 62078<-usb->18176
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f058f0 established 62078<-lo0->49154 62078<-usb->18432
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f05898 established 62078<-lo0->49155 62078<-usb->18688
    [12:47:52.0192] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x92f05948
    [12:47:52.0192] recv(13, 4) failed: connection closed
    [12:47:52.0192] unable to read message size: -1
    [12:47:52.0192] could not receive message
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f05948 established 62078<-lo0->49156 62078<-usb->18944
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f05840 established 62078<-lo0->49157 62078<-usb->19200
    [12:47:52.0192] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x92f05898
    [12:47:52.0192] recv(15, 4) failed: connection closed
    [12:47:52.0192] unable to read message size: -1
    [12:47:52.0192] could not receive message
    [12:47:52.0192] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x92f05948
    [12:47:52.0192] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x92f05840
    [12:47:52.0192] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x92f058f0
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f058f0 established 62078<-lo0->49158 62078<-usb->19456
    [12:47:52.0192] recv(13, 4) failed: connection closed
    [12:47:52.0192] unable to read message size: -1
    [12:47:52.0192] could not receive message
    [12:47:52.0192] recv(16, 4) failed: connection closed
    [12:47:52.0192] unable to read message size: -1
    [12:47:52.0192] could not receive message
    [12:47:52.0192] recv(14, 4) failed: connection closed
    [12:47:52.0192] unable to read message size: -1
    [12:47:52.0192] could not receive message
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f05840 established 62078<-lo0->49159 62078<-usb->19712
    [12:47:52.0192] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x92f05840
    [12:47:52.0192] recv(14, 4) failed: connection closed
    [12:47:52.0192] unable to read message size: -1
    [12:47:52.0192] could not receive message
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f05840 established 62078<-lo0->49160 62078<-usb->19968
    [12:47:52.0192] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x92f05840
    [12:47:52.0192] recv(14, 4) failed: connection closed
    [12:47:52.0192] unable to read message size: -1
    [12:47:52.0192] could not receive message
    [12:47:52.0192] 000123.374285 wlan.N[1] AppleBCMWLANCore::start(): Starting with MAC Address: <<<mac address>>>
    [12:47:52.0192] 000123.374664 wlan.N[2] AppleBCMWLANCore::setPowerStateGated():   powerState 1, fStateFlags 0x20, dev 0xcef28000 (this 1, provider 0)
    [12:47:52.0192] 000123.374678 wlan.N[3] AppleBCMWLANCore::setPowerStateGated():  Received power state change before driver has initialized, ignoring
    [12:47:52.0192] IO80211Peer::addPhyStatistics Phy stats started for addr <<<mac address>>>
    [12:47:52.0192] IO80211Peer::addPhyStatistics Tx Completion stats started for addr <<<mac address>>>
    [12:47:52.0192] IO80211PeerManager::initWithInterface cant add monitoring timer
    [12:47:52.0192] Started logging for intf
    [12:47:52.0192] IO80211PeerManager::initWithInterface: inited peer manager
    [12:47:52.0192] IO80211Interface::init peerManager=0x9167f000
    [12:47:52.0192] start:156
    [12:47:52.0192] start:156
    [12:47:52.0192] [NAND] WMR_Open:420 FTL_Open    [OK]
    [12:47:52.0192] [NAND] _publishServices:642 FTL capabilities: 0x00000001
    [12:47:52.0192] [NAND] _ppnvflGetStruct:3469 Checking borrowed blocks - count: 23 max_count: 23
    [12:47:52.0192] [NAND] _fetchBorrowedList:881 number of borrowed blocks 16
    [12:47:52.0192] [nand_part_core:INF@ 157] published partition 0
    [12:47:52.0192] [nand_part_core:INF@ 157] published partition 1
    [12:47:52.0192] [nand_part_core:INF@ 157] published partition 2
    [12:47:52.0192] [nand_part_core:INF@ 157] published partition 3
    [12:47:52.0192] [nand_part_core:INF@ 157] published partition 5
    [12:47:52.0192] [nand_part_core:INF@ 157] published partition 6
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f050b0 established 62078<-lo0->49161 62078<-usb->20224
    [12:47:52.0192] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x92f050b0
    [12:47:52.0192] recv(9, 4) failed: connection closed
    [12:47:52.0192] unable to read message size: -1
    [12:47:52.0192] could not receive message
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f050b0 established 62078<-lo0->49162 62078<-usb->20480
    [12:47:52.0192] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x92f050b0
    [12:47:52.0192] recv(9, 4) failed: connection closed
    [12:47:52.0192] unable to read message size: -1
    [12:47:52.0192] could not receive message
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f050b0 established 62078<-lo0->49163 62078<-usb->20736
    [12:47:52.0192] unrecognized key 'BootArgs' in value query
    [12:47:52.0192] failed to handle value query for key 'BootArgs', sending back empty response
    [12:47:52.0192] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x92f050b0
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f050b0 established 62078<-lo0->49164 62078<-usb->20992
    [12:47:52.0192] recv(9, 4) failed: connection closed
    [12:47:52.0192] unable to read message size: -1
    [12:47:52.0192] could not receive message
    [12:47:52.0192] unrecognized key 'MarketingPartNumber' in value query
    [12:47:52.0192] failed to handle value query for key 'MarketingPartNumber', sending back empty response
    [12:47:52.0192] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x92f050b0
    [12:47:52.0192] recv(14, 4) failed: connection closed
    [12:47:52.0192] unable to read message size: -1
    [12:47:52.0192] could not receive message
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x92f050b0 established 62078<-lo0->49165 62078<-usb->21248
    [12:47:52.0192] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x92f050b0
    [12:47:52.0192] client protocol version 13
    [12:47:52.0192] recv(9, 4) failed: connection closed
    [12:47:52.0192] unable to read message size: -1
    [12:47:52.0192] could not receive message
    [12:47:52.0192] *** UUID A8E00E75-4D25-6A4A-BB48-9F3FA7071E50 ***
    [12:47:52.0192] Restore options:
    [12:47:52.0192]           UUID                           => <CFString 0x15e3bb00 [0x369ad0]>{contents = "A8E00E75-4D25-6A4A-BB48-9F3FA7071E50"}
    [12:47:52.0192]           MinimumSystemPartition         => <CFNumber 0x15e3ba50 [0x369ad0]>{value = +1589, type = kCFNumberSInt64Type}
    [12:47:52.0192]           SystemPartitionSize            => <CFNumber 0x15e3d3b0 [0x369ad0]>{value = +1589, type = kCFNumberSInt64Type}
    [12:47:52.0192]           SystemPartitionPadding         => <CFBasicHash 0x15e3bb30 [0x369ad0]>{type = mutable dict, count = 5,
    [12:47:52.0192] entries =>
    [12:47:52.0192]           2 : <CFString 0x15e3ba80 [0x369ad0]>{contents = "128"} = <CFNumber 0x15e3bab0 [0x369ad0]>{value = +1280, type = kCFNumberSInt64Type}
    [12:47:52.0192]           3 : <CFString 0x15e3cbe0 [0x369ad0]>{contents = "16"} = <CFNumber 0x15e3bb60 [0x369ad0]>{value = +160, type = kCFNumberSInt64Type}
    [12:47:52.0192]           4 : <CFString 0x15e3ba20 [0x369ad0]>{contents = "32"} = <CFNumber 0x15e3d180 [0x369ad0]>{value = +320, type = kCFNumberSInt64Type}
    [12:47:52.0192]           5 : <CFString 0x15e3b770 [0x369ad0]>{contents = "8"} = <CFNumber 0x15e3b6b0 [0x369ad0]>{value = +80, type = kCFNumberSInt64Type}
    [12:47:52.0192]           8 : <CFString 0x15e3b7a0 [0x369ad0]>{contents = "64"} = <CFNumber 0x15e3b760 [0x369ad0]>{value = +640, type = kCFNumberSInt64Type}
    [12:47:52.0192] }
    [12:47:52.0192]
    [12:47:52.0192] entering load_sep_os
    [12:47:52.0192] device has no sep
    [12:47:52.0192] entering partition_nand_device
    [12:47:52.0192] device supports boot-from-NAND
    [12:47:52.0192] nand device is already partitioned
    [12:47:52.0192] entering wait_for_storage_device
    [12:47:52.0192] Searching for NAND service
    [12:47:52.0192] Found NAND service: IOFlashStoragePartition
    [12:47:52.0192] NAND initialized. Waiting for devnode.
    [12:47:52.0192] entering clear_remap_variable
    [12:47:52.0192] waiting for matching IOKit service: <CFBasicHash 0x15d44000 [0x369ad0]>{type = mutable dict, count = 2,
    [12:47:52.0192] entries =>
    [12:47:52.0192]           0 : <CFString 0x160e98 [0x369ad0]>{contents = "IOResourceMatch"} = <CFString 0x15d44d70 [0x369ad0]>{contents = "IONVRAM"}
    [12:47:52.0192]           2 : <CFString 0x4c2f00 [0x369ad0]>{contents = "IOProviderClass"} = <CFString 0x15d44d50 [0x369ad0]>{contents = "IOResources"}
    [12:47:52.0192] }
    [12:47:52.0192]
    [12:47:52.0192] executing /usr/sbin/nvram
    [12:47:52.0192] entering format_effaceable_storage
    [12:47:52.0192] effaceable storage is formatted, clearing it
    [12:47:52.0192] [effaceable:INIT] found current generation, 59, in group 2
    [12:47:52.0192] [effaceable:INIT] started
    [12:47:52.0192] [effaceable:INIT] started
    [12:47:52.0192] effaceable storaged cleared
    [12:47:52.0192] entering ramrod_probe_media
    [12:47:52.0192] device partitioning scheme is GPT
    [12:47:52.0192] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [12:47:52.0192] executing /sbin/fsck_hfs
    [12:47:52.0192] ** /dev/rdisk0s1s1
    [12:47:52.0192]    Executing fsck_hfs (version hfs-227).
    [12:47:52.0192] ** Checking Journaled HFS Plus volume.
    [12:47:52.0192] ** Detected a case-sensitive volume.
    [12:47:52.0192]    The volume name is InnsbruckTaos11B554a.N42OS
    [12:47:52.0192] ** Checking extents overflow file.
    [12:47:52.0192] ** Checking catalog file.
    [12:47:52.0192] ** Checking multi-linked files.
    [12:47:52.0192] ** Checking catalog hierarchy.
    [12:47:52.0192] ** Checking extended attributes file.
    [12:47:52.0192] ** Checking volume bitmap.
    [12:47:52.0192] ** Checking volume information.
    [12:47:52.0192] ** Trimming unused blocks.
    [12:47:52.0192] ** The volume InnsbruckTaos11B554a.N42OS appears to be OK.
    [12:47:52.0192] executing /sbin/mount_hfs
    [12:47:52.0192] /dev/disk0s1s1 mounted on /mnt1
    [12:47:52.0192] entering check_for_restore_log
    [12:47:52.0192] found restore log (size = 44403)
    [12:47:52.0192] entering unmount_filesystems
    [12:47:52.0192] error unmounting '/mnt2': Invalid argument
    [12:47:52.0192] entering clean_NAND
    [12:47:52.0192] NAND format complete
    [12:47:52.0192] entering ramrod_probe_media
    [12:47:52.0192] find_filesystem_partitions: storage=/dev/disk0 system= data=
    [12:47:52.0192] entering format_storage_for_LwVM
    [12:47:52.0192] entering ramrod_probe_media
    [12:47:52.0192] device partitioning scheme is GPT
    [12:47:52.0192] unexpected partition 'LwVM' - skipping
    [12:47:52.0192] find_filesystem_partitions: storage=/dev/disk0s1 system= data=
    [12:47:52.0192] entering create_filesystem_partitions
    [12:47:52.0192] User specified system partition size, skipping firmware extras size.
    [12:47:52.0192] system partition padding size is: 167772160 bytes
    [12:47:52.0192] unable to open : No such file or directory
    [12:47:52.0192] creating 2 partitions
    [12:47:52.0192] creating encrypted data partition
    [12:47:52.0192] entering ramrod_probe_media
    [12:47:52.0192] device partitioning scheme is GPT
    [12:47:52.0192] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [12:47:52.0192] wipe entire partition: 1 (old = 0 new = 1749)
    [12:47:52.0192] block size for /dev/disk0s1s1: 4096
    [12:47:52.0192] /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [12:47:52.0192] executing /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [12:47:52.0192] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [12:47:52.0192] block size for /dev/disk0s1s2: 4096
    [12:47:52.0192] /sbin/newfs_hfs -s -v Data -J -P /dev/disk0s1s2
    [12:47:52.0192] executing /sbin/newfs_hfs -s -v Data -J -P /dev/disk0s1s2
    [12:47:52.0192] Initialized /dev/rdisk0s1s2 as a 13 GB case-sensitive HFS Plus volume with a 8192k journal
    [12:47:52.0192] entering ramrod_probe_media
    [12:47:52.0192] device partitioning scheme is GPT
    [12:47:52.0192] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [12:47:52.0192] entering mount_filesystems
    [12:47:52.0192] executing /sbin/fsck_hfs
    [12:47:52.0192] ** /dev/rdisk0s1s1
    [12:47:52.0192]    Executing fsck_hfs (version hfs-227).
    [12:47:52.0192] ** Checking Journaled HFS Plus volume.
    [12:47:52.0192] ** Detected a case-sensitive volume.
    [12:47:52.0192]    The volume name is System
    [12:47:52.0192] ** Checking extents overflow file.
    [12:47:52.0192] ** Checking catalog file.
    [12:47:52.0192] ** Checking multi-linked files.
    [12:47:52.0192] ** Checking catalog hierarchy.
    [12:47:52.0192] ** Checking extended attributes file.
    [12:47:52.0192] ** Checking volume bitmap.
    [12:47:52.0192] ** Checking volume information.
    [12:47:52.0192] ** Trimming unused blocks.
    [12:47:52.0192] ** The volume System appears to be OK.
    [12:47:52.0192] executing /sbin/mount_hfs
    [12:47:52.0192] /dev/disk0s1s1 mounted on /mnt1
    [12:47:52.0192] executing /sbin/fsck_hfs
    [12:47:52.0192] ** /dev/rdisk0s1s2
    [12:47:52.0192]    Executing fsck_hfs (version hfs-227).
    [12:47:52.0192] ** Checking Journaled HFS Plus volume.
    [12:47:52.0192] ** Detected a case-sensitive volume.
    [12:47:52.0192]    The volume name is Data
    [12:47:52.0192] ** Checking extents overflow file.
    [12:47:52.0192] ** Checking catalog file.
    [12:47:52.0192] ** Checking multi-linked files.
    [12:47:52.0192] ** Checking catalog hierarchy.
    [12:47:52.0192] ** Checking extended attributes file.
    [12:47:52.0192] ** Checking volume bitmap.
    [12:47:52.0192] ** Checking volume information.
    [12:47:52.0192] ** Trimming unused blocks.
    [12:47:52.0192] ** The volume Data appears to be OK.
    [12:47:52.0192] executing /sbin/mount_hfs
    [12:47:52.0192] /dev/disk0s1s2 mounted on /mnt2
    [12:47:52.0192] entering resize_system_partition_to_options
    [12:47:52.0192] User specified system partition size, skipping firmware extras size.
    [12:47:52.0192] Found SystemPartitionPadding value of 167772160 bytes
    [12:47:52.0192] Erasing system partition prior to resize operation.
    [12:47:52.0192] block size for /dev/disk0s1s1: 4096
    [12:47:52.0192] /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [12:47:52.0192] executing /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [12:47:52.0192] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [12:47:52.0192] executing /sbin/fsck_hfs
    [12:47:52.0192] ** /dev/rdisk0s1s1
    [12:47:52.0192]    Executing fsck_hfs (version hfs-227).
    [12:47:52.0192] ** Checking Journaled HFS Plus volume.
    [12:47:52.0192] ** Detected a case-sensitive volume.
    [12:47:52.0192]    The volume name is System
    [12:47:52.0192] ** Checking extents overflow file.
    [12:47:52.0192] ** Checking catalog file.
    [12:47:52.0192] ** Checking multi-linked files.
    [12:47:52.0192] ** Checking catalog hierarchy.
    [12:47:52.0192] ** Checking extended attributes file.
    [12:47:52.0192] ** Checking volume bitmap.
    [12:47:52.0192] ** Checking volume information.
    [12:47:52.0192] ** Trimming unused blocks.
    [12:47:52.0192] ** The volume System appears to be OK.
    [12:47:52.0192] executing /sbin/mount_hfs
    [12:47:52.0192] /dev/disk0s1s1 mounted on /mnt1
    [12:47:52.0192] Trying to resize system partition to 1833959424 bytes aka 1749 MB
    [12:47:52.0192] entering adjust_partition
    [12:47:52.0192] partition: requiredSize=447744
    [12:47:52.0192] no change in size
    [12:47:52.0192] Successfully resized the system partition
    [12:47:52.0192] entering maximize_data_partition
    [12:47:52.0192] entering adjust_partition
    [12:47:52.0192] partition: requiredSize=<<<<<IMEI>>>>>>6
    [12:47:52.0192] maximizing data partition to 14020509695 bytes
    [12:47:52.0192] entering adjust_partition
    [12:47:52.0192] partition: requiredSize=3422976
    [12:47:52.0192] no change in size
    [12:47:52.0192] Successfully resized data partition to consume free blocks
    [12:47:52.0192] The system partition now has a total HFS+ capacity of 1749 MB
    [12:47:52.0192] entering ramrod_probe_media
    [12:47:52.0192] device partitioning scheme is GPT
    [12:47:52.0192] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [12:47:52.0192] entering unmount_filesystems
    [12:47:52.0192] entering ramrod_ticket_update
    [12:47:52.0192] looking up root ticket hash
    [12:47:52.0192] device tree ticket-hash: <CFData 0x15e3bf80 [0x369ad0]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [12:47:52.0192] ticket_hash: <<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>
    [12:47:52.0192] received valid ticket (2729 bytes)
    [12:47:52.0192] entering restore_images
    [12:47:52.0192] Successfully marked device node /dev/rdisk0s1s1 as static data
    [12:47:52.0192] executing /usr/sbin/asr -source asr://localhost:12345 -target /dev/disk0s1s1 -erase -noprompt --chunkchecksum --puppetstrings
    [12:47:52.0192] void AppleUSBDeviceMux::handleConnectResult(struct BulkUSBMuxSession *, errno_t) new session to port 12345 failed: 61
    [12:47:52.0192] void AppleUSBDeviceMux::handleConnectResult(struct BulkUSBMuxSession *, errno_t) new session to port 12345 failed: 61
    [12:47:52.0192] ASR: asr: Unable to disable idle sleep - -536870199
    [12:47:52.0192] ASR STATUS: start          241.1          multicast-client
    [12:47:52.0192] ASR: Waiting for connection attempt from server
    [12:47:52.0192] AppleUSBDeviceMux::handleConnectResult new session 0x930c8d10 established 12345<-lo0->49168 12345<-usb->22016
    [12:47:52.0192] ASR STATUS: setup
    [12:47:52.0192] ASR: Validating target...
    [12:47:52.0192] ASR: done
    [12:47:52.0192] ASR STATUS: metadata
    [12:47:52.0192] ASR: Validating source...
    [12:47:52.0192] ASR: done
    [12:47:52.0192] ASR: Retrieving scan information...
    [12:47:52.0192] ASR: done
    [12:47:52.0192] ASR: Validating sizes...
    [12:47:52.0192] ASR: done
    [12:47:52.0192] ASR STATUS: restore
    [12:47:52.0192] ASR RESTORE PROGRESS: 2%
    [12:47:52.0192] ASR RESTORE PROGRESS: 4%
    [12:47:52.0192] ASR RESTORE PROGRESS: 6%
    [12:47:52.0192] ASR RESTORE PROGRESS: 8%
    [12:47:52.0192] ASR RESTORE PROGRESS: 10%
    [12:47:52.0192] ASR RESTORE PROGRESS: 12%
    [12:47:52.0192] ASR RESTORE PROGRESS: 14%
    [12:47:52.0192] ASR RESTORE PROGRESS: 16%
    [12:47:52.0192] ASR RESTORE PROGRESS: 18%
    [12:47:52.0192] ASR RESTORE PROGRESS: 20%
    [12:47:52.0192] ASR RESTORE PROGRESS: 22%
    [12:47:52.0192] ASR RESTORE PROGRESS: 24%
    [12:47:52.0192] ASR RESTORE PROGRESS: 26%
    [12:47:52.0192] ASR RESTORE PROGRESS: 28%
    [12:47:52.0192] ASR RESTORE PROGRESS: 30%
    [12:47:52.0192] ASR RESTORE PROGRESS: 32%
    [12:47:52.0192] ASR RESTORE PROGRESS: 34%
    [12:47:52.0192] ASR RESTORE PROGRESS: 36%
    [12:47:52.0192] ASR RESTORE PROGRESS: 38%
    [12:47:52.0192] ASR RESTORE PROGRESS: 40%
    [12:47:52.0192] ASR RESTORE PROGRESS: 42%
    [12:47:52.0192] ASR RESTORE PROGRESS: 44%
    [12:47:52.0192] ASR RESTORE PROGRESS: 46%
    [12:47:52.0192] ASR RESTORE PROGRESS: 48%
    [12:47:52.0192] ASR RESTORE PROGRESS: 50%
    [12:47:52.0192] ASR RESTORE PROGRESS: 52%
    [12:47:52.0192] ASR RESTORE PROGRESS: 54%
    [12:47:52.0192] ASR RESTORE PROGRESS: 56%
    [12:47:52.0192] ASR RESTORE PROGRESS: 58%
    [12:47:52.0192] ASR RESTORE PROGRESS: 60%
    [12:47:52.0192] ASR RESTORE PROGRESS: 62%
    [12:47:52.0192] ASR RESTORE PROGRESS: 64%
    [12:47:52.0192] ASR RESTORE PROGRESS: 66%
    [12:47:52.0192] ASR RESTORE PROGRESS: 68%
    [12:47:52.0192] ASR RESTORE PROGRESS: 70%
    [12:47:52.0192] ASR RESTORE PROGRESS: 72%
    [12:47:52.0192] ASR RESTORE PROGRESS: 74%
    [12:47:52.0192] ASR RESTORE PROGRESS: 76%
    [12:47:52.0192] ASR RESTORE PROGRESS: 78%
    [12:47:52.0192] ASR RESTORE PROGRESS: 80%
    [12:47:52.0192] ASR RESTORE PROGRESS: 82%
    [12:47:52.0192] ASR RESTORE PROGRESS: 84%
    [12:47:52.0192] ASR RESTORE PROGRESS: 86%
    [12:47:52.0192] ASR RESTORE PROGRESS: 88%
    [12:47:52.0192] ASR RESTORE PROGRESS: 90%
    [12:47:52.0192] ASR RESTORE PROGRESS: 92%
    [12:47:52.0192] ASR RESTORE PROGRESS: 94%
    [12:47:52.0192] ASR RESTORE PROGRESS: 96%
    [12:47:52.0192] ASR RESTORE PROGRESS: 98%
    [12:47:52.0192] AppleUSBDeviceMux::sessionUpcall socket is closed, session 0x930c8d10 (12345<-lo0->49168 12345<-usb->22016)
    [12:47:52.0192] ASR RESTORE PROGRESS: 100%
    [12:47:52.0192] ASR: Copied 1666908672 bytes in 51.54 seconds, 31586.74 KiB/s
    [12:47:52.0192] ASR STATUS: verify
    [12:47:52.0192] ASR VERIFY PROGRESS: 2%
    [12:47:52.0192] ASR VERIFY PROGRESS: 4%
    [12:47:52.0192] ASR VERIFY PROGRESS: 6%
    [12:47:52.0192] ASR VERIFY PROGRESS: 8%
    [12:47:52.0192] ASR VERIFY PROGRESS: 10%
    [12:47:52.0192] ASR VERIFY PROGRESS: 12%
    [12:47:52.0192] ASR VERIFY PROGRESS: 14%
    [12:47:52.0192] ASR VERIFY PROGRESS: 16%
    [12:47:52.0192] ASR VERIFY PROGRESS: 18%
    [12:47:52.0192] ASR VERIFY PROGRESS: 20%
    [12:47:52.0192] ASR VERIFY PROGRESS: 22%
    [12:47:52.0192] ASR VERIFY PROGRESS: 24%
    [12:47:52.0192] ASR VERIFY PROGRESS: 26%
    [12:47:52.0192] ASR VERIFY PROGRESS: 28%
    [12:47:52.0192] ASR VERIFY PROGRESS: 30%
    [12:47:52.0192] ASR VERIFY PROGRESS: 32%
    [12:47:52.0192] ASR VERIFY PROGRESS: 34%
    [12:47:52.0192] ASR VERIFY PROGRESS: 36%
    [12:47:52.0192] ASR VERIFY PROGRESS: 38%
    [12:47:52.0192] ASR VERIFY PROGRESS: 40%
    [12:47:52.0192] ASR VERIFY PROGRESS: 42%
    [12:47:52.0192] ASR VERIFY PROGRESS: 44%
    [12:47:52.0192] ASR VERIFY PROGRESS: 46%
    [12:47:52.0192] ASR VERIFY PROGRESS: 48%
    [12:47:52.0192] ASR VERIFY PROGRESS: 50%
    [12:47:52.0192] ASR VERIFY PROGRESS: 52%
    [12:47:52.0192] ASR VERIFY PROGRESS: 54%
    [12:47:52.0192] ASR VERIFY PROGRESS: 56%
    [12:47:52.0192] ASR VERIFY PROGRESS: 58%
    [12:47:52.0192] ASR VERIFY PROGRESS: 60%
    [12:47:52.0192] ASR VERIFY PROGRESS: 62%
    [12:47:52.0192] ASR VERIFY PROGRESS: 64%
    [12:47:52.0192] ASR VERIFY PROGRESS: 66%
    [12:47:52.0192] ASR VERIFY PROGRESS: 68%
    [12:47:52.0192] ASR VERIFY PROGRESS: 70%
    [12:47:52.0192] ASR VERIFY PROGRESS: 72%
    [12:47:52.0192] ASR VERIFY PROGRESS: 74%
    [12:47:52.0192] ASR VERIFY PROGRESS: 76%
    [12:47:52.0192] ASR VERIFY PROGRESS: 78%
    [12:47:52.0192] ASR VERIFY PROGRESS: 80%
    [12:47:52.0192] ASR VERIFY PROGRESS: 82%
    [12:47:52.0192] ASR VERIFY PROGRESS: 84%
    [12:47:52.0192] ASR VERIFY PROGRESS: 86%
    [12:47:52.0192] ASR VERIFY PROGRESS: 88%
    [12:47:52.0192] ASR VERIFY PROGRESS: 90%
    [12:47:52.0192] ASR VERIFY PROGRESS: 92%
    [12:47:52.0192] ASR VERIFY PROGRESS: 94%
    [12:47:52.0192] ASR VERIFY PROGRESS: 96%
    [12:47:52.0192] ASR VERIFY PROGRESS: 98%
    [12:47:52.0192] ASR VERIFY PROGRESS: 100%
    [12:47:52.0192] ASR: Verified SHA-1 checksum 1666908672 bytes in 8.86 seconds, 183636.22 KiB/s
    [12:47:52.0192] ASR STATUS: finish
    [12:47:52.0192] entering ramrod_probe_media
    [12:47:52.0192] device partitioning scheme is GPT
    [12:47:52.0192] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [12:47:52.0192] entering mount_filesystems
    [12:47:52.0192] executing /sbin/fsck_hfs
    [12:47:52.0192] ** /dev/rdisk0s1s1
    [12:47:52.0192]    Executing fsck_hfs (version hfs-227).
    [12:47:52.0192] ** Checking Journaled HFS Plus volume.
    [12:47:52.0192] ** Detected a case-sensitive volume.
    [12:47:52.0192]    The volume name is InnsbruckTaos11B554a.N42OS
    [12:47:52.0192] ** Checking extents overflow file.
    [12:47:52.0192] ** Checking catalog file.
    [12:47:52.0192] ** Checking multi-linked files.
    [12:47:52.0192] ** Checking catalog hierarchy.
    [12:47:52.0192] ** Checking extended attributes file.
    [12:47:52.0192] ** Checking volume bitmap.
    [12:47:52.0192] ** Checking volume information.
    [12:47:52.0192] ** Trimming unused blocks.
    [12:47:52.0192] ** The volume InnsbruckTaos11B554a.N42OS appears to be OK.
    [12:47:52.0192] executing /sbin/mount_hfs
    [12:47:52.0192] /dev/disk0s1s1 mounted on /mnt1
    [12:47:52.0192] executing /sbin/fsck_hfs
    [12:47:52.0192] ** /dev/rdisk0s1s2
    [12:47:52.0192]    Executing fsck_hfs (version hfs-227).
    [12:47:52.0192] ** Checking Journaled HFS Plus volume.
    [12:47:52.0192] ** Detected a case-sensitive volume.
    [12:47:52.0192]    The volume name is Data
    [12:47:52.0192] ** Checking extents overflow file.
    [12:47:52.0192] ** Checking catalog file.
    [12:47:52.0192] ** Checking multi-linked files.
    [12:47:52.0192] ** Checking catalog hierarchy.
    [12:47:52.0192] ** Checking extended attributes file.
    [12:47:52.0192] ** Checking volume bitmap.
    [12:47:52.0192] ** Checking volume information.
    [12:47:52.0192] ** Trimming unused blocks.
    [12:47:52.0192] ** The volume Data appears to be OK.
    [12:47:52.0192] executing /sbin/mount_hfs
    [12:47:52.0192] /dev/disk0s1s2 mounted on /mnt2
    [12:47:52.0192] entering install_kernel_cache
    [12:47:52.0192] writing kernelcache to /mnt1/System/Library/Caches/com.apple.kernelcaches/kernelcache
    [12:47:52.0192] entering install_secure_vault_daemon
    [12:47:52.0192] entering get_hardware_platform
    [12:47:52.0192] platform-name = s5l8950x
    [12:47:52.0192] linking /mnt1/usr/sbin/securekeyvaultd to /mnt1/usr/sbin/securekeyvaultd.s5l8950x
    [12:47:52.0192] no securekeyvaultd for s5l8950x
    [12:47:52.0192] entering ramrod_ticket_write
    [12:47:52.0192] writing ticket to /mnt1/System/Library/Caches/apticket.der
    [12:47:52.0192] entering update_device_firmware
    [12:47:52.0192] create_baseband_update_options: Got imeisv: 6
    [12:47:52.0192] baseband updater options = <CFBasicHash 0x15e3d840 [0x369ad0]>{type = mutable dict, count = 3,
    [12:47:52.0192] entries =>
    [12:47:52.0192]           0 : <CFString 0x162238 [0x369ad0]>{contents = "IMEISwVersion"} = <CFNumber 0x15d45750 [0x369ad0]>{value = +6, type = kCFNumberSInt32Type}
    [12:47:52.0192]           1 : <CFString 0x162298 [0x369ad0]>{contents = "autoSetupEnv"} = <CFBoolean 0x369e88 [0x369ad0]>{value = false}
    [12:47:52.0192]           2 : <CFString 0x1622a8 [0x369ad0]>{contents = "disablePing"} = <CFBoolean 0x369e80 [0x369ad0]>{value = true}
    [12:47:52.0192] }
    [12:47:52.0192]
    [12:47:52.0192] _baseband_update_requires_system_filesystem_once: querying baseband to determine if it requires system filesystem
    [12:47:52.0192] _baseband_update_requires_system_filesystem_once: query returned <CFBasicHash 0x15e3c9c0 [0x369ad0]>{type = mutable dict, count = 3,
    [12:47:52.0192] entries =>
    [12:47:52.0192]           0 : <CFString 0x162008 [0x369ad0]>{contents = "requireSystemPartitionMount"} = <CFBoolean 0x369e80 [0x369ad0]>{value = true}
    [12:47:52.0192]           1 : <CFString 0x162028 [0x369ad0]>{contents = "requireUserPartitionMount"} = <CFBoolean 0x369e88 [0x369ad0]>{value = false}
    [12:47:52.0192]           2 : <CFString 0x162038 [0x369ad0]>{contents = "requireBasebandFSPartitionMount"} = <CFBoolean 0x369e88 [0x369ad0]>{value = false}
    [12:47:52.0192] }
    [12:47:52.0192]
    [12:47:52.0192] entering update_iBoot
    [12:47:52.0192] found 'AppleImage3NORAccess' object in IORegistry
    [12:47:52.0192] entering update_iBoot_image3_NOR_access
    [12:47:52.0192] write_image3_data: flashing illb data (length = 0x24a1a)
    [12:47:52.0192] write_image3_data: flashing SCAB data (length = 0xaf0)
    [12:47:52.0192] ticket updated
    [12:47:52.0192] write_image3_data: flashing ibot data (length = 0x4518c)
    [12:47:52.0192] write_image3_data: flashing chg1 data (length = 0x88cc)
    [12:47:52.0192] write_image3_data: flashing bat0 data (length = 0xaa4c)
    [12:47:52.0192] write_image3_data: flashing batF data (length = 0x1484c)
    [12:47:52.0192] write_image3_data: flashing logo data (length = 0x1a8c)
    [12:47:52.0192] write_image3_data: flashing recm data (length = 0xdd8c)
    [12:47:52.0192] write_image3_data: flashing dtre data (length = 0x153cc)
    [12:47:52.0192] write_image3_data: flashing chg0 data (length = 0x260c)
    [12:47:52.0192] write_image3_data: flashing bat1 data (length = 0x80c)
    [12:47:52.0192] write_image3_data: flashing glyP data (length = 0xf8c)
    [12:47:52.0192] AppleImage3NORAccess::_getSuperBlock imageVersion: 3
    [12:47:52.0192] AppleImage3NORAccess::_getSuperBlock imageVersion: 3
    [12:47:52.0192] [nand_part_core:INF@2289] first 2 pages of boot blocks written with copies of partition table
    [12:47:52.0192] entering update_gas_gauge
    [12:47:52.0192] entering update_ir_mcu
    [12:47:52.0192] looking for mcu nub...no entry from path!
    [12:47:52.0192] TiSerialFlasher not supported on this platform. Exiting.
    [12:47:52.0192] entering update_baseband
    [12:47:52.0192] update_baseband: registering for progress notifications
    [12:47:52.0192] create_baseband_update_options: Got imeisv: 6
    [12:47:52.0192] baseband updater options = <CFBasicHash 0x15d48140 [0x369ad0]>{type = mutable dict, count = 6,
    [12:47:52.0192] entries =>
    [12:47:52.0192]           0 : <CFString 0x1621e8 [0x369ad0]>{contents = "SystemRoot"} = <CFString 0x15e3b990 [0x369ad0]>{contents = "/mnt1"}
    [12:47:52.0192]           1 : <CFString 0x162238 [0x369ad0]>{contents = "IMEISwVersion"} = <CFNumber 0x15d45750 [0x369ad0]>{value = +6, type = kCFNumberSInt32Type}
    [12:47:52.0192]           2 : <CFString 0x162298 [0x369ad0]>{contents = "autoSetupEnv"} = <CFBoolean 0x369e88 [0x369ad0]>{value = false}
    [12:47:52.0192]           3 : <CFString 0x162178 [0x369ad0]>{contents = "forceUpdate"} = <CFBoolean 0x369e80 [0x369ad0]>{value = true}
    [12:47:52.0192]           5 : <CFString 0x1622a8 [0x369ad0]>{contents = "disablePing"} = <CFBoolean 0x369e80 [0x369ad0]>{value = true}
    [12:47:52.0192]           6 : <CFString 0x162198 [0x369ad0]>{contents = "DisallowFusiing"} = <CFBoolean 0x369e80 [0x369ad0]>{value = true}
    [12:47:52.0192] }
    [12:47:52.0192]
    [12:47:52.0192] update_baseband: querying baseband info
    [12:47:52.0192] bbupdater: BEGIN: Querying info at stage first
    [12:47:52.0192] bbupdater:           BEGIN: Preparing first stage
    [12:47:52.0192] bbupdater:                     Requested boot mode:  kBBUBootModeNone
    [12:47:52.0192] bbupdater:                     Creating transport, attempts remaining 5...bbupdater:                     OK
    [12:47:52.0192] bbupdater:                     Baseband VendorID [0x5C6] ProductID [0x9008]
    [12:47:52.0192] bbupdater:           END: Preparing first stage
    [12:47:52.0192] bbupdater:           Connecting to Loader...bbupdater:           OK
    [12:47:52.0192] bbupdater:           Getting Version...bbupdater:           OK
    [12:47:52.0192] bbupdater:           Loader version: PBL-DloadVER2.0
    [12:47:52.0192] bbupdater:           Fusing disallowed, will treat as fused
    [12:47:52.0192] bbupdater: END: Querying info at stage first
    [12:47:52.0192] update_baseband: query returned <CFBasicHash 0x15d4adb0 [0x369ad0]>{type = mutable dict, count = 6,
    [12:47:52.0192] entries =>
    [12:47:52.0192]           0 : <CFString 0x162318 [0x369ad0]>{contents = "CertHash"} = <CFData 0x15d4ade0 [0x369ad0]>{length = 32, capacity = 32, bytes = 0x<<<<

    Appears Hardware issue. See http://support.apple.com/kb/TS3694#hardware
    Contact Apple Support Appointment at Genius Bar

  • I can not Restore My iPhone 5s error 1

      Hi;
    I have difficulty restoring my iphone 5s.It's strange story,my phone used to work Ok and i just wanted to upgrade to 7.1.1 via ipsw and itunes.This is what i did for many of my friends in last few days and already doing the same for others but this happened to my own iphone.It stops in the middle of restore and gives error 1.I'm using the current version of itunes and considered all security measures like checking firewall.I'm sure of it cause i do restore other iPhones and iPads and they have no problem.Also tried and Mac and still have the same error.
    I checked all Apple suggestions in "http://support.apple.com/kb/TS1275" but none could help.Can you please help me with this case?
    PS:Below is the restore operation log:
    2014-05-30 16:17:05.524 [5396:1590]: restore library built Feb 12 2014 at 16:27:17
    2014-05-30 16:17:05.524 [5396:1590]: iTunes: iTunes 11.2.2.3
    2014-05-30 16:17:05.524 [5396:1590]: iTunes: Software payload version: 11D201 (option key)
    2014-05-30 16:17:05.524 [5396:1590]: iTunes: Using MobileRestore state machine
    [11:47:38.0520] Changing state from 'Idle' to 'Restoring'
    [11:47:38.0527] requested restore behavior: Erase
    [11:47:38.0527] requested variant: Erase
    [11:47:38.0533] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [11:47:38.0732] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is True
    [11:47:38.0732] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreLogo" Digest = "<CFData 0672ACE0 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0733] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreDeviceTree" Digest = "<CFData 0672AD70 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0734] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreKernelCache" Digest = "<CFData 0672AED8 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0735] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreRamDisk" Digest = "<CFData 0672A8F0 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0735] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBEC" Digest = "<CFData 0672AF68 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0736] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBSS" Digest = "<CFData 0672A620 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0737] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "KernelCache" Digest = "<CFData 0672A590 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0737] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "Diags" not part of manifest, skipping
    [11:47:38.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "CFELoader" not part of manifest, skipping
    [11:47:38.0739] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "RBM" not part of manifest, skipping
    [11:47:38.0740] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "PHLEET" not part of manifest, skipping
    [11:47:38.0740] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "PERTOS" not part of manifest, skipping
    [11:47:38.0741] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "PEHammer" not part of manifest, skipping
    [11:47:38.0741] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow1" Digest = "<CFData 0672B088 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0742] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow0" Digest = "<CFData 0672AE90 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0743] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "LLB" Digest = "<CFData 0672AFF8 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0744] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBoot" Digest = "<CFData 06729FF0 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0744] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "DeviceTree" Digest = "<CFData 0672B0D0 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0745] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "SEP" Digest = "<CFData 0672A500 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0746] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging1" Digest = "<CFData 0672AF20 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0747] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreSEP" Digest = "<CFData 0672AAA0 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0747] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "AppleLogo" Digest = "<CFData 0672AE00 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0748] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryPlugin" Digest = "<CFData 06729F60 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0749] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryFull" Digest = "<CFData 0672AB30 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0750] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging0" Digest = "<CFData 0672A860 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0750] amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RecoveryMode" Digest = "<CFData 0672A740 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}"
    [11:47:38.0751] amai: _AMAuthInstallBundleCreateServerRequestDictionary: using UniqueBuildID <CFData 0D928F58 [7055907C]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [11:47:38.0752] amai: AMAuthInstallRequestSendSync: SSO function returned NULL, SSO disabled.
    [11:47:38.0752] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Boss/AppData/Local/Temp/Per1CB7.tmp/amai/debug/tss-re quest.plist
    [11:47:40.0747] amai: tss_submit_job: HttpQueryInfo returned 200
    [11:47:40.0755] amai: AMAuthInstallRequestSendSync: received tss response (server version: 2.1.0)
    [11:47:40.0757] amai: AMAuthInstallDebugWriteObject: debug object written: file://localhost/C:/Users/Boss/AppData/Local/Temp/Per1CB7.tmp/amai/debug/tss-re sponse.plist
    [11:47:40.0925] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "Diags"
    [11:47:40.0925] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "CFELoader"
    [11:47:40.0926] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "RBM"
    [11:47:40.0926] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "PHLEET"
    [11:47:40.0927] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "PERTOS"
    [11:47:40.0927] amai: _AMAuthInstallBundlePopulatePersonalizedBundle: no entry in manifest found for "PEHammer"
    [11:47:41.0135] iBoot build-version = iBoot-1940.10.58
    [11:47:41.0135] iBoot build-style = RELEASE
    [11:47:41.0136] requested restore behavior: Erase
    [11:47:41.0137] requested restore behavior: Erase
    [11:47:41.0139] unable to open device_map.txt: No such file or directory
    [11:47:41.0140] found device map entry for 0x00008960 0x00000000. boardConfig=n51ap platform=s5l8960x
    [11:47:41.0140] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [11:47:41.0141] AMDeviceIoControl: GetOverlappedResult failed
    [11:47:41.0141] AMDeviceIoControl: pipe stall
    [11:47:41.0142] USBControlTransfer: error 31, usbd status c0000004
    [11:47:41.0142] command device request for 'getenv radio-error' failed: 2008
    [11:47:41.0143] radio-error not set
    [11:47:41.0143] unable to open device_map.txt: No such file or directory
    [11:47:41.0144] <Recovery Mode Device 05966448>: production fused device
    [11:47:41.0144] requested restore behavior: Erase
    [11:47:41.0144] requested restore behavior: Erase
    [11:47:41.0145] interface has 1 endpoints, file pipe = 1
    [11:47:41.0145]
    [11:47:41.0145] <Recovery Mode Device 05966448>: operation 4 progress -1
    [11:47:41.0146] bootstrapping restore with iBEC
    [11:47:41.0147] requested restore behavior: Erase
    [11:47:41.0166] <Recovery Mode Device 05966448>: operation 31 progress -1
    [11:47:42.0166] <Recovery Mode Device 05966448>: Recovery mode succeeded
    [11:47:42.0167] Finished Recovery Restore Phase: Successful
    [11:47:42.0427] Recovery mode device disconnected
    [11:47:42.0427] Device removed when in state Restoring, moving device to transition state
    [11:47:42.0428] Changing state from 'Restoring' to 'Transitioning'
    [11:47:42.0428] Creating timer to monitor transition
    [11:47:43.0744] Recovery mode device connected
    [11:47:43.0744] Transitioning device returned, continuing restore.
    [11:47:43.0745] Canceling timer
    [11:47:43.0745] Changing state from 'Transitioning' to 'Restoring'
    [11:47:43.0763] requested restore behavior: Erase
    [11:47:43.0764] requested variant: Erase
    [11:47:43.0764] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [11:47:43.0952] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [11:47:43.0953] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [11:47:43.0953] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [11:47:43.0954] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [11:47:43.0955] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [11:47:43.0955] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBEC"
    [11:47:43.0956] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBSS"
    [11:47:43.0956] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [11:47:43.0957] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "Diags" not part of manifest, skipping
    [11:47:43.0957] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "CFELoader" not part of manifest, skipping
    [11:47:43.0958] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "RBM" not part of manifest, skipping
    [11:47:43.0958] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "PHLEET" not part of manifest, skipping
    [11:47:43.0959] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "PERTOS" not part of manifest, skipping
    [11:47:43.0959] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "PEHammer" not part of manifest, skipping
    [11:47:43.0960] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [11:47:43.0960] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [11:47:43.0961] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "LLB"
    [11:47:43.0961] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [11:47:43.0962] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [11:47:43.0963] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "SEP"
    [11:47:43.0963] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [11:47:43.0964] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreSEP"
    [11:47:43.0964] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [11:47:43.0965] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [11:47:43.0965] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [11:47:43.0966] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [11:47:43.0966] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [11:47:43.0968] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [11:47:43.0969] iBoot build-version = iBoot-1940.10.58
    [11:47:43.0969] iBoot build-style = RELEASE
    [11:47:43.0969] requested restore behavior: Erase
    [11:47:43.0970] requested restore behavior: Erase
    [11:47:43.0970] unable to open device_map.txt: No such file or directory
    [11:47:43.0971] found device map entry for 0x00008960 0x00000000. boardConfig=n51ap platform=s5l8960x
    [11:47:43.0971] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [11:47:43.0972] AMDeviceIoControl: GetOverlappedResult failed
    [11:47:43.0972] AMDeviceIoControl: pipe stall
    [11:47:43.0973] USBControlTransfer: error 31, usbd status c0000004
    [11:47:43.0973] command device request for 'getenv radio-error' failed: 2008
    [11:47:43.0974] radio-error not set
    [11:47:43.0974] unable to open device_map.txt: No such file or directory
    [11:47:43.0975] <Recovery Mode Device 06898008>: production fused device
    [11:47:43.0975] requested restore behavior: Erase
    [11:47:43.0976] requested restore behavior: Erase
    [11:47:43.0976] interface has 1 endpoints, file pipe = 1
    [11:47:43.0976]
    [11:47:43.0977] <Recovery Mode Device 06898008>: operation 4 progress -1
    [11:47:43.0977] unable to open device_map.txt: No such file or directory
    [11:47:43.0977] found device map entry for 0x00008960 0x00000000. boardConfig=n51ap platform=s5l8960x
    [11:47:43.0978] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [11:47:43.0978] requested restore behavior: Erase
    [11:47:43.0979] requested restore behavior: Erase
    [11:47:43.0979] <Recovery Mode Device 06898008>: operation 42 progress -1
    [11:47:43.0980] requested restore behavior: Erase
    [11:47:45.0000] <Recovery Mode Device 06898008>: operation 5 progress -1
    [11:47:45.0313] unable to open device_map.txt: No such file or directory
    [11:47:45.0314] found device map entry for 0x00008960 0x00000000. boardConfig=n51ap platform=s5l8960x
    [11:47:45.0315] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [11:47:45.0316] AMDeviceIoControl: GetOverlappedResult failed
    [11:47:45.0316] AMDeviceIoControl: pipe stall
    [11:47:45.0317] USBControlTransfer: error 31, usbd status c0000004
    [11:47:45.0317] command device request for 'getenv ramdisk-delay' failed: 2008
    [11:47:46.0428] <Recovery Mode Device 06898008>: operation 6 progress -1
    [11:47:47.0452] <Recovery Mode Device 06898008>: operation 7 progress -1
    [11:47:47.0735] <Recovery Mode Device 06898008>: operation 8 progress -1
    [11:47:47.0735] unable to open device_map.txt: No such file or directory
    [11:47:47.0736] found device map entry for 0x00008960 0x00000000. boardConfig=n51ap platform=s5l8960x
    [11:47:47.0737] _AMRestoreCopyDeviceMapPlistEntryForHardware: firmwareDirectory not in options
    [11:47:47.0738] <Recovery Mode Device 06898008>: operation 9 progress -1
    [11:47:47.0739] <Recovery Mode Device 06898008>: Recovery mode succeeded
    [11:47:47.0740] Finished Recovery Restore Phase: Successful
    [11:47:48.0607] Recovery mode device disconnected
    [11:47:48.0607] Device removed when in state Restoring, moving device to transition state
    [11:47:48.0608] Changing state from 'Restoring' to 'Transitioning'
    [11:47:48.0609] Creating timer to monitor transition
    [11:47:51.0053] RestoreOS mode device connected
    [11:47:51.0054] Transitioning device returned, continuing restore.
    [11:47:51.0054] Canceling timer
    [11:47:51.0055] Changing state from 'Transitioning' to 'Restoring'
    [11:47:51.0059] <Restore Device 0D962328>: operation 44 progress -1
    [11:47:51.0059] requested restore behavior: Erase
    [11:47:51.0060] requested variant: Erase
    [11:47:51.0061] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [11:47:51.0274] amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    [11:47:51.0275] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreLogo"
    [11:47:51.0275] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreDeviceTree"
    [11:47:51.0276] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreKernelCache"
    [11:47:51.0276] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreRamDisk"
    [11:47:51.0277] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBEC"
    [11:47:51.0277] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBSS"
    [11:47:51.0278] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "KernelCache"
    [11:47:51.0279] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "Diags" not part of manifest, skipping
    [11:47:51.0280] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "CFELoader" not part of manifest, skipping
    [11:47:51.0281] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "RBM" not part of manifest, skipping
    [11:47:51.0282] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "PHLEET" not part of manifest, skipping
    [11:47:51.0283] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "PERTOS" not part of manifest, skipping
    [11:47:51.0283] amai: _AMAuthInstallBundleCreateServerRequestDictionary: entry "PEHammer" not part of manifest, skipping
    [11:47:51.0284] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow1"
    [11:47:51.0284] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryLow0"
    [11:47:51.0285] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "LLB"
    [11:47:51.0285] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "iBoot"
    [11:47:51.0286] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "DeviceTree"
    [11:47:51.0286] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "SEP"
    [11:47:51.0287] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging1"
    [11:47:51.0287] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RestoreSEP"
    [11:47:51.0288] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "AppleLogo"
    [11:47:51.0289] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryPlugin"
    [11:47:51.0289] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryFull"
    [11:47:51.0290] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "BatteryCharging0"
    [11:47:51.0290] amai: _AMAuthInstallBundleCreateServerRequestDictionary: not personalizing "RecoveryMode"
    [11:47:51.0291] amai: _AMAuthInstallBundleCreateServerRequestDictionary: nothing to be done
    [11:47:51.0291] requested restore behavior: Erase
    [11:47:51.0292] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [11:47:51.0293] device did not return saved USB log
    [11:47:51.0293] device did not return saved panic log
    [11:47:51.0294] previous restore failed with exit status 0x100
    [11:47:51.0302] connected to service com.apple.mobile.restored
    [11:47:51.0303] using protocol version 13
    [11:47:51.0308] unable to open device_map.txt: No such file or directory
    [11:47:51.0309] board config = n51ap
    [11:47:51.0313] no value returned for BootArgs
    [11:47:51.0313] _copyDeviceProperty() failed for restore bootargs
    [11:47:51.0320] no value returned for MarketingPartNumber
    [11:47:51.0320] _copyDeviceProperty() failed for mpn
    [11:47:51.0321] requested restore behavior: Erase
    [11:47:51.0321] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [11:47:51.0325] value query for 'HardwareModel' returned 'N51AP'
    [11:47:51.0331] <Restore Device 0D962328>: operation 35 progress -1
    [11:47:51.0332] requested restore behavior: Erase
    [11:47:51.0333] amai: AMAuthInstallBundleCopyBuildIdentityForVariant: No baseband chipid reported. Will match Build Identity based on ap chipid and boardid only.
    [11:47:53.0638] <Restore Device 0D962328>: operation 28 progress -1
    [11:47:58.0334] previous restore failed: temp alarm
    [11:47:58.0334] AppleSamsungSerial: Identified Serial Port on ARM Device=uart4 at 0x20a0b0000(0x<<<<<MEID>>>>>00)
    [11:47:58.0334] AppleSamsungSerial: Identified Serial Port on ARM Device=uart1 at 0x20a0a4000(0x<<<<<MEID>>>>>00)
    [11:47:58.0334] ASPBlockStorage::StartService - Creating block device of 7812500 sectors of 4096 bytes
    [11:47:58.0334] BSD root: md0, major 3, minor 0
    [11:47:58.0334] L2TP domain init
    [11:47:58.0334] L2TP domain init complete
    [11:47:58.0334] PPTP domain init
    [11:47:58.0334] com.apple.AppleFSCompressionTypeZlib kmod start
    [11:47:58.0334] com.apple.AppleFSCompressionTypeZlib load succeeded
    [11:47:58.0334] AppleMultitouchN1SPI: successfully started
    [11:47:58.0334] Found DPB Driver
    [11:47:58.0334] Dither pDeviceMemory->getLength()) = 0x8000
    [11:47:58.0334] Found Dither Driver
    [11:47:58.0334] virtual bool AppleDisplayPipe::start_hardware(IOService *), auto-detect chip
    [11:47:58.0334] void AppleDisplayPipe::setupVideoDownscalingLimits(): minimum-frequency property not found, using getClockFrequency(0) instead.
    [11:47:58.0334] Starting GPU driver built on: Mar 28 2014 21:50:20
    [11:47:58.0334] -----------------------
    [11:47:58.0334] Loading META FW...
    [11:47:58.0334] -----------------------
    [11:47:58.0334] AppleH6CamIn::start - back camera expected
    [11:47:58.0334] AppleH6CamIn::start - front camera expected
    [11:47:58.0334] AppleH6CamIn::power_off_hardware
    [11:47:58.0334] AppleH6CamIn::start - About to register service
    [11:47:58.0334] AppleH6CamIn::setPowerStateGated: 0
    [11:47:58.0334] AppleCS35L19Amp: could not allocate control 395
    [11:47:58.0334] --------------
    [11:47:58.0334] META is alive!
    [11:47:58.0334] --------------
    [11:47:58.0334] bool AppleMobileADBE0::startWithIBoot(): workaround for <rdar://problem/13466800>: disabling Dither BN
    [11:47:58.0334] AppleBaseband: The number of backpowering pins: 1
    [11:47:58.0334] AppleOscarProcessor[0x<<<<<MEID>>>>>00]::setPowerStateGated: 98618462333: setting power state powerStateOrdinal=1
    [11:47:58.0334] AppleS5L8960XPerformanceController::start: Dynamic Framebuffer Caching is enabled
    [11:47:58.0334] LwVM::probe - failed to read header from media
    [11:47:58.0334] [effaceable:INIT] found current generation, 69, in group 0
    [11:47:58.0334] [effaceable:INIT] started
    [11:47:58.0334] AppleD2045PMUPowerSource: AppleUSBCableDetect 1
    [11:47:58.0334] AppleD2045PMUPowerSource: AppleUSBCableType USBHost
    [11:47:58.0334] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [11:47:58.0334] AppleSynopsysOTGDevice::gated_handleUSBCableConnect cable connected, but don't have device configuration yet
    [11:47:58.0334] AppleMultitouchN1SPI: detected HBPP. driver will be kept alive
    [11:47:58.0334] display-scale = 2
    [11:47:58.0334] display-rotation = 0
    [11:47:58.0334] found applelogo at /usr/share/progressui/[email protected]
    [11:47:58.0334] found display: primary
    [11:47:58.0334] display: 640 x 1136
    [11:47:58.0334] found PTP interface
    [11:47:58.0334] AppleSynopsysOTGDevice - Configuration: PTP
    [11:47:58.0334] AppleSynopsysOTGDevice          Interface: PTP
    [11:47:58.0334] AppleSynopsysOTGDevice - Configuration: iPod USB Interface
    [11:47:58.0334] AppleSynopsysOTGDevice          Interface: USBAudioControl
    [11:47:58.0334] AppleSynopsysOTGDevice          Interface: USBAudioStreaming
    [11:47:58.0334] AppleSynopsysOTGDevice          Interface: IapOverUsbHid
    [11:47:58.0334] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device
    [11:47:58.0334] AppleSynopsysOTGDevice          Interface: PTP
    [11:47:58.0334] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [11:47:58.0334] AppleSynopsysOTGDevice - Configuration: PTP + Apple Mobile Device + Apple USB Ethernet
    [11:47:58.0334] AppleSynopsysOTGDevice          Interface: PTP
    [11:47:58.0334] AppleSynopsysOTGDevice          Interface: AppleUSBMux
    [11:47:58.0334] AppleSynopsysOTGDevice          Interface: AppleUSBEthernet
    [11:47:58.0334] IOAccessoryPortUSB::start
    [11:47:58.0334] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioControl
    [11:47:58.0334] virtual bool AppleUSBDeviceMux::start(IOService *) build: Mar 28 2014 21:44:33
    [11:47:58.0334] init_waste
    [11:47:58.0334] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBMux
    [11:47:58.0334] AppleSynopsysOTGDevice::gated_registerFunction Register function IapOverUsbHid
    [11:47:58.0334] AppleSynopsysOTGDevice::gated_registerFunction Register function USBAudioStreaming
    [11:47:58.0334] AppleSynopsysOTGDevice::gated_registerFunction Register function AppleUSBEthernet
    [11:47:58.0334] AppleSynopsysOTGDevice::gated_registerFunction Register function PTP
    [11:47:58.0334] AppleSynopsysOTGDevice::startUSBStack Starting usb stack
    [11:47:58.0334] IOReturn AppleUSBDeviceMux::setPropertiesGated(OSObject *) setting debug level to 7
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>80 established 62078<-lo0->49152 62078<-usb->13568
    [11:47:58.0334] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x<<<<<MEID>>>>>80
    [11:47:58.0334] recv(13, 4) failed: connection closed
    [11:47:58.0334] unable to read message size: -1
    [11:47:58.0334] could not receive message
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>80 established 62078<-lo0->49153 62078<-usb->13824
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>00 established 62078<-lo0->49154 62078<-usb->14080
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>80 established 62078<-lo0->49155 62078<-usb->14336
    [11:47:58.0334] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x<<<<<MEID>>>>>80
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>80 established 62078<-lo0->49156 62078<-usb->14592
    [11:47:58.0334] recv(13, 4) failed: connection closed
    [11:47:58.0334] unable to read message size: -1
    [11:47:58.0334] could not receive message
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>80 established 62078<-lo0->49157 62078<-usb->14848
    [11:47:58.0334] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x<<<<<MEID>>>>>80
    [11:47:58.0334] recv(15, 4) failed: connection closed
    [11:47:58.0334] unable to read message size: -1
    [11:47:58.0334] could not receive message
    [11:47:58.0334] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x<<<<<MEID>>>>>80
    [11:47:58.0334] recv(13, 4) failed: connection closed
    [11:47:58.0334] unable to read message size: -1
    [11:47:58.0334] could not receive message
    [11:47:58.0334] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x<<<<<MEID>>>>>00
    [11:47:58.0334] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x<<<<<MEID>>>>>80
    [11:47:58.0334] recv(14, 4) failed: connection closed
    [11:47:58.0334] unable to read message size: -1
    [11:47:58.0334] could not receive message
    [11:47:58.0334] recv(16, 4) failed: connection closed
    [11:47:58.0334] unable to read message size: -1
    [11:47:58.0334] could not receive message
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>80 established 62078<-lo0->49158 62078<-usb->15104
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>00 established 62078<-lo0->49159 62078<-usb->15360
    [11:47:58.0334] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x<<<<<MEID>>>>>00
    [11:47:58.0334] recv(14, 4) failed: connection closed
    [11:47:58.0334] unable to read message size: -1
    [11:47:58.0334] could not receive message
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>00 established 62078<-lo0->49160 62078<-usb->15616
    [11:47:58.0334] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x<<<<<MEID>>>>>00
    [11:47:58.0334] recv(14, 4) failed: connection closed
    [11:47:58.0334] unable to read message size: -1
    [11:47:58.0334] could not receive message
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>80 established 62078<-lo0->49161 62078<-usb->15872
    [11:47:58.0334] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x<<<<<MEID>>>>>80
    [11:47:58.0334] recv(10, 4) failed: connection closed
    [11:47:58.0334] unable to read message size: -1
    [11:47:58.0334] could not receive message
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>80 established 62078<-lo0->49162 62078<-usb->16128
    [11:47:58.0334] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x<<<<<MEID>>>>>80
    [11:47:58.0334] recv(10, 4) failed: connection closed
    [11:47:58.0334] unable to read message size: -1
    [11:47:58.0334] could not receive message
    [11:47:58.0334] AppleBCMWLANCore::init(): IO80211-46 Mar 28 2014 21:12:05
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>00 established 62078<-lo0->49163 62078<-usb->16384
    [11:47:58.0334] unrecognized key 'BootArgs' in value query
    [11:47:58.0334] failed to handle value query for key 'BootArgs', sending back empty response
    [11:47:58.0334] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x<<<<<MEID>>>>>00
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>80 established 62078<-lo0->49164 62078<-usb->16640
    [11:47:58.0334] recv(10, 4) failed: connection closed
    [11:47:58.0334] unable to read message size: -1
    [11:47:58.0334] could not receive message
    [11:47:58.0334] unrecognized key 'MarketingPartNumber' in value query
    [11:47:58.0334] failed to handle value query for key 'MarketingPartNumber', sending back empty response
    [11:47:58.0334] 000099.636552 wlan.N[0] AppleBCMWLANCore::start(): Starting with MAC Address: <<<mac address>>>
    [11:47:58.0334] 000099.636886 wlan.N[1] AppleBCMWLANCore::setPowerStateGated():   powerState 1, fStateFlags 0x20, dev 0x<<<<<MEID>>>>>00 (this 1, provider 0)
    [11:47:58.0334] 000099.636908 wlan.N[2] AppleBCMWLANCore::setPowerStateGated():  Received power state change before driver has initialized, ignoring
    [11:47:58.0334] IO80211Peer::addPhyStatistics Phy stats started for addr <<<mac address>>>
    [11:47:58.0334] IO80211Peer::addPhyStatistics Tx Completion stats started for addr <<<mac address>>>
    [11:47:58.0334] IO80211PeerManager::initWithInterface cant add monitoring timer
    [11:47:58.0334] Started logging for intf
    [11:47:58.0334] IO80211PeerManager::initWithInterface: inited peer manager
    [11:47:58.0334] IO80211Interface::init peerManager=0x<<<<<MEID>>>>>00
    [11:47:58.0334] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x<<<<<MEID>>>>>80
    [11:47:58.0334] recv(14, 4) failed: connection closed
    [11:47:58.0334] start:156
    [11:47:58.0334] start:156
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>00 established 62078<-lo0->49165 62078<-usb->16896
    [11:47:58.0334] unable to read message size: -1
    [11:47:58.0334] could not receive message
    [11:47:58.0334] void AppleUSBDeviceMux::handleMuxTCPInput(mbuf_t) received reset, closing 0x<<<<<MEID>>>>>00
    [11:47:58.0334] recv(10, 4) failed: connection closed
    [11:47:58.0334] unable to read message size: -1
    [11:47:58.0334] could not receive message
    [11:47:58.0334] client protocol version 13
    [11:47:58.0334] *** UUID 81684A27-6C60-F442-AFA4-069D51F88AA8 ***
    [11:47:58.0334] Restore options:
    [11:47:58.0334]     MinimumSystemPartition         => <CFNumber 0xb<<<<<IMEI>>>>>> [0x1004130c0]>{value = +2083, type = kCFNumberSInt64Type}
    [11:47:58.0334]     UUID                           => <CFString 0x144601af0 [0x1004130c0]>{contents = "81684A27-6C60-F442-AFA4-069D51F88AA8"}
    [11:47:58.0334]     SystemPartitionSize            => <CFNumber 0xb<<<<<IMEI>>>>>> [0x1004130c0]>{value = +2083, type = kCFNumberSInt64Type}
    [11:47:58.0334]     SystemPartitionPadding         => <CFBasicHash 0x144601490 [0x1004130c0]>{type = mutable dict, count = 5,
    [11:47:58.0334] entries =>
    [11:47:58.0334]     2 : <CFString 0x1446017a0 [0x1004130c0]>{contents = "128"} = <CFNumber 0xb<<<<<IMEI>>>>>> [0x1004130c0]>{value = +1280, type = kCFNumberSInt64Type}
    [11:47:58.0334]     3 : <CFString 0x144605060 [0x1004130c0]>{contents = "16"} = <CFNumber 0x<<<<<MEID>>>>>03 [0x1004130c0]>{value = +160, type = kCFNumberSInt64Type}
    [11:47:58.0334]     4 : <CFString 0x144604ef0 [0x1004130c0]>{contents = "32"} = <CFNumber 0xb<<<<<IMEI>>>>>> [0x1004130c0]>{value = +320, type = kCFNumberSInt64Type}
    [11:47:58.0334]     5 : <CFString 0x144601090 [0x1004130c0]>{contents = "8"} = <CFNumber 0xb<<<<<IMEI>>>>>> [0x1004130c0]>{value = +80, type = kCFNumberSInt64Type}
    [11:47:58.0334]     8 : <CFString 0x144601270 [0x1004130c0]>{contents = "64"} = <CFNumber 0xb<<<<<IMEI>>>>>> [0x1004130c0]>{value = +640, type = kCFNumberSInt64Type}
    [11:47:58.0334] }
    [11:47:58.0334]
    [11:47:58.0334] entering load_sep_os
    [11:47:58.0334] device has sep - getting firmware
    [11:47:58.0334] entering copy_restore_sep
    [11:47:58.0334] got sep firmware - making call to load it
    [11:47:58.0334] entering ramrod_load_sep_os
    [11:47:58.0334] entering ramrod_execute_command_with_input_data: /usr/libexec/seputil (0x102e5c000 - 3994653)
    [11:47:58.0334] executing /usr/libexec/seputil
    [11:47:58.0334] waiting for child to exit
    [11:47:58.0334] child exited
    [11:47:58.0334] exit status: 0
    [11:47:58.0334] entering partition_nand_device
    [11:47:58.0334] No IOFlashController instance found
    [11:47:58.0334] entering wait_for_storage_device
    [11:47:58.0334] Searching for NAND service
    [11:47:58.0334] Found NAND service: ASPStorage
    [11:47:58.0334] NAND initialized. Waiting for devnode.
    [11:47:58.0334] entering clear_remap_variable
    [11:47:58.0334] executing /usr/sbin/nvram
    [11:47:58.0334] entering format_effaceable_storage
    [11:47:58.0334] effaceable storage is formatted, clearing it
    [11:47:58.0334] effaceable storaged cleared
    [11:47:58.0334] entering ramrod_probe_media
    [11:47:58.0334] device partitioning scheme is GPT
    [11:47:58.0334] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [11:47:58.0334] executing /sbin/fsck_hfs
    [11:47:58.0334] ART: 30 4a 02 01 00 30 23 02 02 25 9d 04 14 d9 ab 42 f8 62 de d5 4c 48 5f 78 f9 39 84 38 c2 c1 b8 9f 37 04 00 04 00 31 03 c0 01 00 04 20 4a f3 0a d2 9c 8c 63 8b 4c 0c 6f 32 bb c0 c1 44 1a 8f bd 63 e5 40 48 b7 44 7c 6b 33 ec 10 04 ae
    [11:47:58.0334] ** /dev/rdisk0s1s1
    [11:47:58.0334]    Executing fsck_hfs (version hfs-277.10.5).
    [11:47:58.0334] ** Checking Journaled HFS Plus volume.
    [11:47:58.0334] ** Detected a case-sensitive volume.
    [11:47:58.0334]    The volume name is SUSochi11D201.N51OS
    [11:47:58.0334] ** Checking extents overflow file.
    [11:47:58.0334] ** Checking catalog file.
    [11:47:58.0334] ** Checking multi-linked files.
    [11:47:58.0334] ** Checking catalog hierarchy.
    [11:47:58.0334] ** Checking extended attributes file.
    [11:47:58.0334] ** Checking volume bitmap.
    [11:47:58.0334] ** Checking volume information.
    [11:47:58.0334] ** Trimming unused blocks.
    [11:47:58.0334] ** The volume SUSochi11D201.N51OS appears to be OK.
    [11:47:58.0334] executing /sbin/mount_hfs
    [11:47:58.0334] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [11:47:58.0334] /dev/disk0s1s1 mounted on /mnt1
    [11:47:58.0334] entering check_for_restore_log
    [11:47:58.0334] found restore log (size = 30129)
    [11:47:58.0334] entering unmount_filesystems
    [11:47:58.0334] error unmounting '/mnt2': Invalid argument
    [11:47:58.0334] entering clean_NAND
    [11:47:58.0334] [ANS syslog: nand] Push_PowerGovernorInit:Nand Die:4      MLC: 4 No     SLC: 2 Yes     Erase:4
    [11:47:58.0334] [ANS syslog: nand] Format_UserArea:*** FORMATTING ***
    [11:47:58.0334]
    [11:47:58.0334]
    [11:47:58.0334] NAND format complete
    [11:47:58.0334] entering ramrod_probe_media
    [11:47:58.0334] find_filesystem_partitions: storage=/dev/disk0 system= data=
    [11:47:58.0334] entering format_storage_for_LwVM
    [11:47:58.0334] no-lwvm-offset-mgmt property not found
    [11:47:58.0334] entering ramrod_probe_media
    [11:47:58.0334] device partitioning scheme is GPT
    [11:47:58.0334] unexpected partition 'LwVM' - skipping
    [11:47:58.0334] find_filesystem_partitions: storage=/dev/disk0s1 system= data=
    [11:47:58.0334] entering create_filesystem_partitions
    [11:47:58.0334] User specified system partition size, skipping firmware extras size.
    [11:47:58.0334] system partition padding size is: 335544320 bytes
    [11:47:58.0334] unable to open : No such file or directory
    [11:47:58.0334] creating 2 partitions
    [11:47:58.0334] creating encrypted data partition
    [11:47:58.0334] entering ramrod_probe_media
    [11:47:58.0334] device partitioning scheme is GPT
    [11:47:58.0334] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [11:47:58.0334] wipe entire partition: 1 (old = 0 new = 2403)
    [11:47:58.0334] block size for /dev/disk0s1s1: 4096
    [11:47:58.0334] /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [11:47:58.0334] executing /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [11:47:58.0334] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [11:47:58.0334] block size for /dev/disk0s1s2: 4096
    [11:47:58.0334] /sbin/newfs_hfs -s -v Data -J -P /dev/disk0s1s2
    [11:47:58.0334] executing /sbin/newfs_hfs -s -v Data -J -P /dev/disk0s1s2
    [11:47:58.0334] ASPStorage::GetNANDGeometry - NAND Geometry info:
    [11:47:58.0334] ASPStorage::GetNANDGeometry - Num LBAs             : 7812500
    [11:47:58.0334] ASPStorage::GetNANDGeometry - Bytes per LBA        : 4096
    [11:47:58.0334] ASPStorage::GetNANDGeometry - Preferred buffer size: 131072
    [11:47:58.0334] ASPStorage::GetNANDGeometry - lbaFormatted         : YES
    [11:47:58.0334] ASPStorage::GetNANDGeometry - utilFormatted        : YES
    [11:47:58.0334] Initialized /dev/rdisk0s1s2 as a 27 GB case-sensitive HFS Plus volume with a 8192k journal
    [11:47:58.0334] entering ramrod_probe_media
    [11:47:58.0334] device partitioning scheme is GPT
    [11:47:58.0334] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [11:47:58.0334] entering mount_filesystems
    [11:47:58.0334] executing /sbin/fsck_hfs
    [11:47:58.0334] ** /dev/rdisk0s1s1
    [11:47:58.0334]    Executing fsck_hfs (version hfs-277.10.5).
    [11:47:58.0334] ** Checking Journaled HFS Plus volume.
    [11:47:58.0334] ** Detected a case-sensitive volume.
    [11:47:58.0334]    The volume name is System
    [11:47:58.0334] ** Checking extents overflow file.
    [11:47:58.0334] ** Checking catalog file.
    [11:47:58.0334] ** Checking multi-linked files.
    [11:47:58.0334] ** Checking catalog hierarchy.
    [11:47:58.0334] ** Checking extended attributes file.
    [11:47:58.0334] ** Checking volume bitmap.
    [11:47:58.0334] ** Checking volume information.
    [11:47:58.0334] ** Trimming unused blocks.
    [11:47:58.0334] ** The volume System appears to be OK.
    [11:47:58.0334] executing /sbin/mount_hfs
    [11:47:58.0334] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [11:47:58.0334] /dev/disk0s1s1 mounted on /mnt1
    [11:47:58.0334] executing /sbin/fsck_hfs
    [11:47:58.0334] ** /dev/rdisk0s1s2
    [11:47:58.0334]    Executing fsck_hfs (version hfs-277.10.5).
    [11:47:58.0334] ** Checking Journaled HFS Plus volume.
    [11:47:58.0334] ** Detected a case-sensitive volume.
    [11:47:58.0334]    The volume name is Data
    [11:47:58.0334] ** Checking extents overflow file.
    [11:47:58.0334] ** Checking catalog file.
    [11:47:58.0334] ** Checking multi-linked files.
    [11:47:58.0334] ** Checking catalog hierarchy.
    [11:47:58.0334] ** Checking extended attributes file.
    [11:47:58.0334] ** Checking volume bitmap.
    [11:47:58.0334] ** Checking volume information.
    [11:47:58.0334] ** Trimming unused blocks.
    [11:47:58.0334] ** The volume Data appears to be OK.
    [11:47:58.0334] executing /sbin/mount_hfs
    [11:47:58.0334] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [11:47:58.0334] /dev/disk0s1s2 mounted on /mnt2
    [11:47:58.0334] entering resize_system_partition_to_options
    [11:47:58.0334] User specified system partition size, skipping firmware extras size.
    [11:47:58.0334] Found SystemPartitionPadding value of 335544320 bytes
    [11:47:58.0334] Erasing system partition prior to resize operation.
    [11:47:58.0334] block size for /dev/disk0s1s1: 4096
    [11:47:58.0334] /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [11:47:58.0334] executing /sbin/newfs_hfs -s -v System -J /dev/disk0s1s1
    [11:47:58.0334] Initialized /dev/rdisk0s1s1 as a 2 GB case-sensitive HFS Plus volume with a 8192k journal
    [11:47:58.0334] executing /sbin/fsck_hfs
    [11:47:58.0334] ** /dev/rdisk0s1s1
    [11:47:58.0334]    Executing fsck_hfs (version hfs-277.10.5).
    [11:47:58.0334] ** Checking Journaled HFS Plus volume.
    [11:47:58.0334] ** Detected a case-sensitive volume.
    [11:47:58.0334]    The volume name is System
    [11:47:58.0334] ** Checking extents overflow file.
    [11:47:58.0334] ** Checking catalog file.
    [11:47:58.0334] ** Checking multi-linked files.
    [11:47:58.0334] ** Checking catalog hierarchy.
    [11:47:58.0334] ** Checking extended attributes file.
    [11:47:58.0334] ** Checking volume bitmap.
    [11:47:58.0334] ** Checking volume information.
    [11:47:58.0334] ** Trimming unused blocks.
    [11:47:58.0334] ** The volume System appears to be OK.
    [11:47:58.0334] executing /sbin/mount_hfs
    [11:47:58.0334] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [11:47:58.0334] /dev/disk0s1s1 mounted on /mnt1
    [11:47:58.0334] Trying to resize system partition to 2519728128 bytes aka 2403 MB
    [11:47:58.0334] entering adjust_partition_preflight
    [11:47:58.0334] partition:0 requiredSize=615168
    [11:47:58.0334] no change in size
    [11:47:58.0334] Successfully resized the system partition
    [11:47:58.0334] entering maximize_data_partition
    [11:47:58.0334] entering adjust_partition_preflight
    [11:47:58.0334] partition:1 requiredSize=<<<<<IMEI>>>>>>6
    [11:47:58.0334] maximizing data partition to 29189210111 bytes
    [11:47:58.0334] entering adjust_partition_preflight
    [11:47:58.0334] partition:1 requiredSize=7126272
    [11:47:58.0334] no change in size
    [11:47:58.0334] Successfully resized data partition to consume free blocks
    [11:47:58.0334] The system partition now has a total HFS+ capacity of 2403 MB
    [11:47:58.0334] entering ramrod_probe_media
    [11:47:58.0334] device partitioning scheme is GPT
    [11:47:58.0334] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [11:47:58.0334] entering unmount_filesystems
    [11:47:58.0334] entering ramrod_ticket_update
    [11:47:58.0334] looking up boot manifest hash
    [11:47:58.0334] device tree ticket-hash: <CFData 0x144605730 [0x1004130c0]>{length = 20, capacity = 20, bytes = 0x<<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>}
    [11:47:58.0334] ticket_hash: <<<<<<<<<<<<<<<<<<UDID>>>>>>>>>>>>>>>>>>
    [11:47:58.0334] received valid ticket (4991 bytes)
    [11:47:58.0334] entering restore_images
    [11:47:58.0334] Successfully marked device node /dev/rdisk0s1s1 as static data
    [11:47:58.0334] executing /usr/sbin/asr -source asr://localhost:12345 -target /dev/disk0s1s1 -erase -noprompt --chunkchecksum --puppetstrings
    [11:47:58.0334] void AppleUSBDeviceMux::handleConnectResult(struct BulkUSBMuxSession *, errno_t) new session to port 12345 failed: 61
    [11:47:58.0334] void AppleUSBDeviceMux::handleConnectResult(struct BulkUSBMuxSession *, errno_t) new session to port 12345 failed: 61
    [11:47:58.0334] ASR: asr: Unable to disable idle sleep - -536870199
    [11:47:58.0334] ASR STATUS: start    241.1    multicast-client
    [11:47:58.0334] ASR: Waiting for connection attempt from server
    [11:47:58.0334] AppleUSBDeviceMux::handleConnectResult new session 0x<<<<<MEID>>>>>80 established 12345<-lo0->49168 12345<-usb->17664
    [11:47:58.0334] ASR STATUS: setup
    [11:47:58.0334] ASR: Validating target...
    [11:47:58.0334] ASR: done
    [11:47:58.0334] ASR STATUS: metadata
    [11:47:58.0334] ASR: Validating source...
    [11:47:58.0334] ASR: done
    [11:47:58.0334] ASR: Retrieving scan information...
    [11:47:58.0334] ASR: done
    [11:47:58.0334] ASR: Validating sizes...
    [11:47:58.0334] ASR: done
    [11:47:58.0334] ASR STATUS: restore
    [11:47:58.0334] ASR RESTORE PROGRESS: 2%
    [11:47:58.0334] ASR RESTORE PROGRESS: 4%
    [11:47:58.0334] ASR RESTORE PROGRESS: 6%
    [11:47:58.0334] ASR RESTORE PROGRESS: 8%
    [11:47:58.0334] ASR RESTORE PROGRESS: 10%
    [11:47:58.0334] ASR RESTORE PROGRESS: 12%
    [11:47:58.0334] ASR RESTORE PROGRESS: 14%
    [11:47:58.0334] ASR RESTORE PROGRESS: 16%
    [11:47:58.0334] ASR RESTORE PROGRESS: 18%
    [11:47:58.0334] ASR RESTORE PROGRESS: 20%
    [11:47:58.0334] ASR RESTORE PROGRESS: 22%
    [11:47:58.0334] ASR RESTORE PROGRESS: 24%
    [11:47:58.0334] ASR RESTORE PROGRESS: 26%
    [11:47:58.0334] ASR RESTORE PROGRESS: 28%
    [11:47:58.0334] ASR RESTORE PROGRESS: 30%
    [11:47:58.0334] ASR RESTORE PROGRESS: 32%
    [11:47:58.0334] ASR RESTORE PROGRESS: 34%
    [11:47:58.0334] ASR RESTORE PROGRESS: 36%
    [11:47:58.0334] ASR RESTORE PROGRESS: 38%
    [11:47:58.0334] ASR RESTORE PROGRESS: 40%
    [11:47:58.0334] ASR RESTORE PROGRESS: 42%
    [11:47:58.0334] ASR RESTORE PROGRESS: 44%
    [11:47:58.0334] ASR RESTORE PROGRESS: 46%
    [11:47:58.0334] ASR RESTORE PROGRESS: 48%
    [11:47:58.0334] ASR RESTORE PROGRESS: 50%
    [11:47:58.0334] ASR RESTORE PROGRESS: 52%
    [11:47:58.0334] ASR RESTORE PROGRESS: 54%
    [11:47:58.0334] ASR RESTORE PROGRESS: 56%
    [11:47:58.0334] ASR RESTORE PROGRESS: 58%
    [11:47:58.0334] ASR RESTORE PROGRESS: 60%
    [11:47:58.0334] ASR RESTORE PROGRESS: 62%
    [11:47:58.0334] ASR RESTORE PROGRESS: 64%
    [11:47:58.0334] ASR RESTORE PROGRESS: 66%
    [11:47:58.0334] ASR RESTORE PROGRESS: 68%
    [11:47:58.0334] ASR RESTORE PROGRESS: 70%
    [11:47:58.0334] ASR RESTORE PROGRESS: 72%
    [11:47:58.0334] ASR RESTORE PROGRESS: 74%
    [11:47:58.0334] ASR RESTORE PROGRESS: 76%
    [11:47:58.0334] ASR RESTORE PROGRESS: 78%
    [11:47:58.0334] ASR RESTORE PROGRESS: 80%
    [11:47:58.0334] ASR RESTORE PROGRESS: 82%
    [11:47:58.0334] ASR RESTORE PROGRESS: 84%
    [11:47:58.0334] ASR RESTORE PROGRESS: 86%
    [11:47:58.0334] ASR RESTORE PROGRESS: 88%
    [11:47:58.0334] ASR RESTORE PROGRESS: 90%
    [11:47:58.0334] ASR RESTORE PROGRESS: 92%
    [11:47:58.0334] ASR RESTORE PROGRESS: 94%
    [11:47:58.0334] ASR RESTORE PROGRESS: 96%
    [11:47:58.0334] ASR RESTORE PROGRESS: 98%
    [11:47:58.0334] AppleUSBDeviceMux::sessionUpcall socket is closed, session 0x<<<<<MEID>>>>>80 (12345<-lo0->49168 12345<-usb->17664)
    [11:47:58.0334] ASR RESTORE PROGRESS: 100%
    [11:47:58.0334] ASR: Copied 2185060864 bytes in 59.63 seconds, 35782.00 KiB/s
    [11:47:58.0334] ASR STATUS: verify
    [11:47:58.0334] ASR VERIFY PROGRESS: 2%
    [11:47:58.0334] ASR VERIFY PROGRESS: 4%
    [11:47:58.0334] ASR VERIFY PROGRESS: 6%
    [11:47:58.0334] ASR VERIFY PROGRESS: 8%
    [11:47:58.0334] ASR VERIFY PROGRESS: 10%
    [11:47:58.0334] ASR VERIFY PROGRESS: 12%
    [11:47:58.0334] ASR VERIFY PROGRESS: 14%
    [11:47:58.0334] ASR VERIFY PROGRESS: 16%
    [11:47:58.0334] ASR VERIFY PROGRESS: 18%
    [11:47:58.0334] ASR VERIFY PROGRESS: 20%
    [11:47:58.0334] ASR VERIFY PROGRESS: 22%
    [11:47:58.0334] ASR VERIFY PROGRESS: 24%
    [11:47:58.0334] ASR VERIFY PROGRESS: 26%
    [11:47:58.0334] ASR VERIFY PROGRESS: 28%
    [11:47:58.0334] ASR VERIFY PROGRESS: 30%
    [11:47:58.0334] ASR VERIFY PROGRESS: 32%
    [11:47:58.0334] ASR VERIFY PROGRESS: 34%
    [11:47:58.0334] ASR VERIFY PROGRESS: 36%
    [11:47:58.0334] ASR VERIFY PROGRESS: 38%
    [11:47:58.0334] ASR VERIFY PROGRESS: 40%
    [11:47:58.0334] ASR VERIFY PROGRESS: 42%
    [11:47:58.0334] ASR VERIFY PROGRESS: 44%
    [11:47:58.0334] ASR VERIFY PROGRESS: 46%
    [11:47:58.0334] ASR VERIFY PROGRESS: 48%
    [11:47:58.0334] ASR VERIFY PROGRESS: 50%
    [11:47:58.0334] ASR VERIFY PROGRESS: 52%
    [11:47:58.0334] ASR VERIFY PROGRESS: 54%
    [11:47:58.0334] ASR VERIFY PROGRESS: 56%
    [11:47:58.0334] ASR VERIFY PROGRESS: 58%
    [11:47:58.0334] ASR VERIFY PROGRESS: 60%
    [11:47:58.0334] ASR VERIFY PROGRESS: 62%
    [11:47:58.0334] ASR VERIFY PROGRESS: 64%
    [11:47:58.0334] ASR VERIFY PROGRESS: 66%
    [11:47:58.0334] ASR VERIFY PROGRESS: 68%
    [11:47:58.0334] ASR VERIFY PROGRESS: 70%
    [11:47:58.0334] ASR VERIFY PROGRESS: 72%
    [11:47:58.0334] ASR VERIFY PROGRESS: 74%
    [11:47:58.0334] ASR VERIFY PROGRESS: 76%
    [11:47:58.0334] ASR VERIFY PROGRESS: 78%
    [11:47:58.0334] ASR VERIFY PROGRESS: 80%
    [11:47:58.0334] ASR VERIFY PROGRESS: 82%
    [11:47:58.0334] ASR VERIFY PROGRESS: 84%
    [11:47:58.0334] ASR VERIFY PROGRESS: 86%
    [11:47:58.0334] ASR VERIFY PROGRESS: 88%
    [11:47:58.0334] ASR VERIFY PROGRESS: 90%
    [11:47:58.0334] ASR VERIFY PROGRESS: 92%
    [11:47:58.0334] ASR VERIFY PROGRESS: 94%
    [11:47:58.0334] ASR VERIFY PROGRESS: 96%
    [11:47:58.0334] ASR VERIFY PROGRESS: 98%
    [11:47:58.0334] ASR VERIFY PROGRESS: 100%
    [11:47:58.0334] ASR: Verified SHA-1 checksum 2185060864 bytes in 7.03 seconds, 303742.50 KiB/s
    [11:47:58.0334] ASR STATUS: finish
    [11:47:58.0334] entering ramrod_probe_media
    [11:47:58.0334] device partitioning scheme is GPT
    [11:47:58.0334] find_filesystem_partitions: storage=/dev/disk0s1 system=/dev/disk0s1s1 data=/dev/disk0s1s2
    [11:47:58.0334] entering mount_filesystems
    [11:47:58.0334] executing /sbin/fsck_hfs
    [11:47:58.0334] ** /dev/rdisk0s1s1
    [11:47:58.0334]    Executing fsck_hfs (version hfs-277.10.5).
    [11:47:58.0334] ** Checking Journaled HFS Plus volume.
    [11:47:58.0334] ** Detected a case-sensitive volume.
    [11:47:58.0334]    The volume name is SUSochi11D201.N51OS
    [11:47:58.0334] ** Checking extents overflow file.
    [11:47:58.0334] ** Checking catalog file.
    [11:47:58.0334] ** Checking multi-linked files.
    [11:47:58.0334] ** Checking catalog hierarchy.
    [11:47:58.0334] ** Checking extended attributes file.
    [11:47:58.0334] ** Checking volume bitmap.
    [11:47:58.0334] ** Checking volume information.
    [11:47:58.0334] ** Trimming unused blocks.
    [11:47:58.0334] ** The volume SUSochi11D201.N51OS appears to be OK.
    [11:47:58.0334] executing /sbin/mount_hfs
    [11:47:58.0334] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [11:47:58.0334] /dev/disk0s1s1 mounted on /mnt1
    [11:47:58.0334] executing /sbin/fsck_hfs
    [11:47:58.0334] ** /dev/rdisk0s1s2
    [11:47:58.0334]    Executing fsck_hfs (version hfs-277.10.5).
    [11:47:58.0334] ** Checking Journaled HFS Plus volume.
    [11:47:58.0334] ** Detected a case-sensitive volume.
    [11:47:58.0334]    The volume name is Data
    [11:47:58.0334] ** Checking extents overflow file.
    [11:47:58.0334] ** Checking catalog file.
    [11:47:58.0334] ** Checking multi-linked files.
    [11:47:58.0334] ** Checking catalog hierarchy.
    [11:47:58.0334] ** Checking extended attributes file.
    [11:47:58.0334] ** Checking volume bitmap.
    [11:47:58.0334] ** Checking volume information.
    [11:47:58.0334] ** Trimming unused blocks.
    [11:47:58.0334] ** The volume Data appears to be OK.
    [11:47:58.0334] executing /sbin/mount_hfs
    [11:47:58.0334] mount_hfs: Could not create property for re-key environment check: No such file or directory
    [11:47:58.0334] /dev/disk0s1s2 mounted on /mnt2
    [11:47:58.0334] entering install_kernel_cache
    [11:47:58.0334] writing kernelcache to /mnt1/System/Library/Caches/com.apple.kernelcaches/kernelcache
    [11:47:58.0334] entering install_secure_vault_daemon
    [11:47:58.0334] entering get_hardware_platform
    [11:47:58.0334] platform-name = s5l8960x
    [11:47:58.0334] linking /mnt1/usr/sbin/securekeyvaultd to /mnt1/usr/sbin/securekeyvaultd.s5l8960x
    [11:47:58.0334] no securekeyvaultd for s5l8960x
    [11:47:58.0334] entering ramrod_ticket_write
    [11:47:58.0334] writing ticket to /mnt1/System/Library/Caches/apticket.der
    [11:47:58.0334] entering update_device_firmware
    [11:47:58.0334] create_baseband_update_options: Got imeisv: 5
    [11:47:58.0334] baseband updater options = <CFBasicHash 0x1445153b0 [0x1004130c0]>{type = mutable dict, count = 3,
    [11:47:58.0334] entries =>
    [11:47:58.0334]     0 : <CFString 0x10017b930 [0x1004130c0]>{contents = "autoSetupEnv"} = <CFBoolean 0x100413810 [0x1004130c0]>{value = false}
    [11:47:58.0334]     1 : <CFString 0x10017b950 [0x1004130c0]>{contents = "disablePing"} = <CFBoolean 0x100413800 [0x1004130c0]>{value = true}
    [11:47:58.0334]     2 : <CFString 0x10017b870 [0x1004130c0]>{contents = "IMEISwVersion"} = <CFNumber 0xb<<<<<IMEI>>>>>> [0x1004130c0]>{value = +5, type = kCFNumberSInt32Type}
    [11:47:58.0334] }
    [11:47:58.0334]
    [11:47:58.0334] _baseband_update_requires_system_filesystem_once: querying baseband to determine if it requires system filesystem
    [11:47:58.0334] _baseband_update_requires_system_filesystem_once: query returned <CFBasicHash 0x1445144b0 [0x1004130c0]>{type = mutable dict, count = 3,
    [11:47:58.0334] entries =>
    [11:47:58.0334]     0 : <CFString 0x10017b450 [0x1004130c0]>{contents = "requireUserPartitionMount"} = <CFBoolean 0x100413810 [0x1004130c0]>{value = false}
    [11:47:58.0334]     1 : <CFString 0x10017b470 [0x1004130c0]>{contents = "requireBasebandFSPartitionMount"} = <CFBoolean 0x100413810 [0x1004130c0]>{value = false}
    [11:47:58.0334]     2 : <CFString 0x10017b410 [0x1004130c0]>{contents = "requireSystemPartitionMount"} = <CFBoolean 0x100413800 [0x1004130c0]>{value = true}
    [11:47:58.0334] }
    [11:47:58.0334]
    [11:47:58.0334] entering update_iBoot
    [11:47:58.0334] entering copy_sep
    [11:47:58.0334] found 'ASPStorage' object in IORegistry
    [11:47:58.0334] entering update_iBoot_ASP_storage
    [11:47:58.0334] entering wait_for_device: '/dev/disk1'
    [11:47:58.0334] entering wait_for_device: '/dev/disk2'
    [11:47:58.0334] writing 10 images to Firmware node '/dev/disk1' (preferred_block_size = 4096)
    [11:47:58.0334] original data length: 455724; img4_restore_data length: 455761
    [11:47:58.0334] write_data_to_fd: length=455761, preferred_block_size=4096
    [11:47:58.0334] original data length: 48458; img4_restore_da

    Hi there semine,
    You may find the troubleshooting steps in the article below helpful.
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808
    -Griff W.

Maybe you are looking for

  • 10.5.7 didn't install, but it's installed!

    I downloaded 10.5.7 using iGetter a few days ago, but got an error when I tried installing it. I restarted my (late 2008 aluminum) Macbook and tried reinstalling it. Same error. Re-downloaded the file and attempted another reinstallation. No go. Thin

  • Placing a background image in fluid grid layout

    I am having trouble building a fluid grid layout  I am not sure why but when I shrink the layout it doesn't seem to work correctly I need to do 2 things. 1) make the background image shrink as it is suppossd to. when you scale down the images doesn't

  • Work with datetype in answers

    Hi all. The problem is to calculate the Date, that is less that the current in Edit Column Formula window in Answers. Column formula like CURRENT_DATE - 1 generate error [nQSError: 10058]...[nQSError: 22023] Arithmetic operation is executed for not n

  • Program changes in MS with Absynth

    Hey all - anyone else experiencing this? Absynth responds quite randomly to program change information - never really the same patch twice!

  • El video queda cortado

    Tengo Encore 1.0 y después que el software transcode el video todo parece perfecto pero cuando se vé el preview aparece la imagen movida hacia arriba y con una franja negra en la parte de abajo. Yo importo el archivo desde premier 6.0 como un MPG2 IB