Changeset 6 for trunk/tools/arch_info/genarch.py
- Timestamp:
- Apr 26, 2017, 2:14:33 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/arch_info/genarch.py
r1 r6 23 23 # --nb_ttys=int : number of TTY channels 24 24 # --nb_nics=int : number of NIC channels 25 # --nb_cmas=int : number of CMA channels26 25 # --fbf_size=int : frame buffer width & heigth 27 26 # --ioc_type=string : can be IOC_BDV , IOC_HBA , IOC_SDC , IOC_SPI 28 # --mwr_type=string : can be MWR_GCD , MWR_DCT , MWR_CPY29 27 # --io_cxy=int : IO cluster identifier 30 28 # --boot_cxy=int : boot cluster identifier … … 76 74 help = 'define number ot NIC channels' ) 77 75 78 parser.add_option( '--nb_cmas', type = 'int', dest = 'nb_cmas',79 default = 2,80 help = 'define number ot CMA channels' )81 82 76 parser.add_option( '--fbf_size', type = 'int', dest = 'fbf_size', 83 77 default = 128, … … 87 81 default = 'IOC_BDV', 88 82 help = 'define type of IOC: BDV / HBA / SDC / RDK / SPI' ) 89 90 parser.add_option( '--mwr_type', type = 'string', dest = 'mwr_type',91 default = 'MWR_CPY',92 help = 'define type of COPROC: CPY / DCT / GCD' )93 83 94 84 parser.add_option( '--io_cxy', type = 'int', dest = 'io_cxy', … … 129 119 fbf_size = options.fbf_size # frame buffer width & heigth 130 120 nb_nics = options.nb_nics # number of NIC channels 131 nb_cmas = options.nb_cmas # number of CMA channels132 121 ioc_type = options.ioc_type # ioc controller type 133 mwr_type = options.mwr_type # hardware coprocessor type134 122 io_cxy = options.io_cxy # IO cluster identifier 135 123 boot_cxy = options.boot_cxy # boot cluster identifier … … 163 151 nb_ttys, 164 152 nb_nics, 165 nb_cmas,166 153 fbf_size, 167 154 ioc_type, 168 mwr_type,169 155 io_cxy, 170 156 boot_cxy,
Note: See TracChangeset
for help on using the changeset viewer.