Lines Matching refs:set

21 # set the major version, which might be used by drivers and libraries
35 dpdk_conf.set('RTE_VER_YEAR', pver.get(0).to_int())
36 dpdk_conf.set('RTE_VER_MONTH', pver.get(1).to_int())
39 dpdk_conf.set('RTE_VER_MINOR', rc_ver.get(0).to_int())
41 dpdk_conf.set('RTE_VER_RELEASE', rc_ver.get(1).to_int())
43 dpdk_conf.set('RTE_VER_MINOR', pver.get(2).to_int())
45 # for actual, non-rc releases, set the release value to 99 to ensure releases
47 dpdk_conf.set('RTE_VER_RELEASE', 99)
66 # set the machine type and cflags for it
93 dpdk_conf.set('RTE_MACHINE', machine)
106 dpdk_conf.set('RTE_TOOLCHAIN_' + toolchain.to_upper(), 1)
108 dpdk_conf.set('RTE_ARCH_64', cc.sizeof('void *') == 8)
109 dpdk_conf.set('RTE_ARCH_32', cc.sizeof('void *') == 4)
165 dpdk_conf.set('RTE_USE_LIBBSD', 1)
175 dpdk_conf.set('RTE_PORT_PCAP', 1)
235 # set other values pulled from the build options
236 dpdk_conf.set('RTE_MAX_LCORE', get_option('max_lcores'))
237 dpdk_conf.set('RTE_MAX_NUMA_NODES', get_option('max_numa_nodes'))
238 dpdk_conf.set('RTE_MAX_ETHPORTS', get_option('max_ethports'))
239 dpdk_conf.set('RTE_LIBEAL_USE_HPET', get_option('use_hpet'))
240 dpdk_conf.set('RTE_ENABLE_TRACE_FP', get_option('enable_trace_fp'))
242 dpdk_conf.set('RTE_MAX_VFIO_GROUPS', 64)
243 dpdk_conf.set('RTE_DRIVER_MEMPOOL_BUCKET_SIZE_KB', 64)
244 dpdk_conf.set('RTE_LIBRTE_DPAA2_USE_PHYS_IOVA', true)
246 dpdk_conf.set('RTE_MAX_MEM_MB', 524288)
248 dpdk_conf.set('RTE_MAX_MEM_MB', 2048)
254 dpdk_conf.set('RTE_COMPILE_TIME_CPUFLAGS', ','.join(compile_time_cpuflags))
256 # set the install path for the drivers
263 dpdk_conf.set('RTE_EAL_VFIO', is_linux)