Ignore:
Timestamp:
Apr 5, 2015, 12:02:09 AM (9 years ago)
Author:
alain
Message:

Replace the "SPI" name by "SDC" for the third disk controller type (beside BDV and HBA).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_python/genmap

    r539 r546  
    7474                   help = 'define frame buffer width and heigth' )
    7575
     76parser.add_option( '--ioc', type = 'string', dest = 'ioc_type',
     77                   default = 'BDV',
     78                   help = 'define type of IOC: BDV / HBA / SDC / RDK' )
     79
    7680parser.add_option( '--v', action = 'store_true', dest = 'verbose',
    7781                   default = False,
     
    141145nb_ttys        = options.nb_ttys     # number of TTY channels           
    142146fbf_size       = options.fbf_size    # frame buffer width & heigth
     147ioc_type       = options.ioc_type    # ioc controller type
    143148
    144149verbose        = options.verbose     # report on map.bin generation if True
     
    178183
    179184# build mapping calling the function (function name)
    180 mapping = select.arch( x_size, y_size, nb_procs, nb_ttys, fbf_size )
     185mapping = select.arch( x_size, y_size, nb_procs, nb_ttys, fbf_size, ioc_type )
    181186print '[genmap] platform %s build' % mapping.name
    182187
Note: See TracChangeset for help on using the changeset viewer.