omap3530/beagleboard/bootstrap/aware.cmm
changeset 0 6663340f3fc9
equal deleted inserted replaced
-1:000000000000 0:6663340f3fc9
       
     1 
       
     2 
       
     3   local &system
       
     4 
       
     5 ; Check if system is running
       
     6 ; Store present state to restore back later
       
     7 
       
     8  if run()
       
     9  (  
       
    10     &system="run"
       
    11     Break
       
    12  )
       
    13 
       
    14   
       
    15 ; Initialize Symbian OS Support
       
    16 
       
    17   print "initializing Symbian OS support..."
       
    18 
       
    19   TASK.CONFIG symbian2       ; loads Symbian OS awareness (symbian2.t32)
       
    20   MENU.ReProgram symbian2    ; loads Symbian OS menu (symbian2.men)
       
    21   HELP.FILTER.Add rtossymbian2 ; add Symbian OS awareness manual to help filter
       
    22 
       
    23 ; Ok, we're done, let's continue Symbian OS
       
    24 
       
    25  if "&system"=="run"
       
    26   Go
       
    27 
       
    28   enddo