Ignore:
Timestamp:
Nov 3, 2014, 11:15:07 AM (10 years ago)
Author:
alain
Message:

Removing support for the (use_tty, use_tim, use_nic, use_cma) constructs in the mapping.
Introducing the "display" application using the CMA component to acces the frame buffer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_python/genmap

    r432 r441  
    102102                   help = 'map the "router" application for the GietVM' )
    103103
     104parser.add_option( '--display', action = 'store_true', dest = 'display',     
     105                   default = False,
     106                   help = 'map the "display" application for the GietVM' )
     107
    104108######################################################################################
    105109#   Get command line arguments
     
    129133map_convol    = options.convol      # map "convol" application if True
    130134map_router    = options.router      # map "convol" application if True
     135map_display   = options.display     # map "convol" application if True
    131136
    132137######################################################################################
     
    155160    app = __import__( 'transpose' )
    156161    app.transpose( mapping )
    157     print '[genmap] application "transpose" loaded'
     162    print '[genmap] application "transpose" will be loaded'
    158163
    159164if ( map_sort ):     
    160165    app = __import__( 'sort' )
    161166    app.sort( mapping )
    162     print '[genmap] application "sort" loaded'
     167    print '[genmap] application "sort" will be loaded'
    163168
    164169if ( map_convol ):     
    165170    app = __import__( 'convol' )
    166171    app.convol( mapping )
    167     print '[genmap] application "convol" loaded'
     172    print '[genmap] application "convol" will be loaded'
    168173
    169174if ( map_router ):     
    170175    app = __import__( 'router' )
    171176    app.router( mapping )
    172     print '[genmap] application "router" loaded'
     177    print '[genmap] application "router" will be loaded'
     178
     179if ( map_display ):     
     180    app = __import__( 'display' )
     181    app.display( mapping )
     182    print '[genmap] application "display" will be loaded'
    173183
    174184######################################################################################
Note: See TracChangeset for help on using the changeset viewer.