Changeset 546 for soft/giet_vm/giet_python/genmap
- Timestamp:
- Apr 5, 2015, 12:02:09 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_python/genmap
r539 r546 74 74 help = 'define frame buffer width and heigth' ) 75 75 76 parser.add_option( '--ioc', type = 'string', dest = 'ioc_type', 77 default = 'BDV', 78 help = 'define type of IOC: BDV / HBA / SDC / RDK' ) 79 76 80 parser.add_option( '--v', action = 'store_true', dest = 'verbose', 77 81 default = False, … … 141 145 nb_ttys = options.nb_ttys # number of TTY channels 142 146 fbf_size = options.fbf_size # frame buffer width & heigth 147 ioc_type = options.ioc_type # ioc controller type 143 148 144 149 verbose = options.verbose # report on map.bin generation if True … … 178 183 179 184 # build mapping calling the function (function name) 180 mapping = select.arch( x_size, y_size, nb_procs, nb_ttys, fbf_size )185 mapping = select.arch( x_size, y_size, nb_procs, nb_ttys, fbf_size, ioc_type ) 181 186 print '[genmap] platform %s build' % mapping.name 182 187
Note: See TracChangeset
for help on using the changeset viewer.