Building DPDK reordering application for LS2088

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

Building DPDK reordering application for LS2088

跳至解决方案
1,299 次查看
sedat_altun
Contributor III

Hi community,

I want to build DPDK packet reordering sample application to run on LS2088RDB. I am using flexbuild to compile the components. After successfully building with flexbuild I got some dpdk applications under images subdirectory like l2fwd, but there is no reordering application at this directory , Is there any way to build dpdk ordering application with flexbuild for LS2088 RDB board?

Thanks in advance

标签 (2)
标记 (2)
0 项奖励
回复
1 解答
1,177 次查看
yipingwang
NXP TechSupport
NXP TechSupport

Please modify packages/apps/Makefile as the following.

$(MAKE) -j$(JOBS) -C l2fwd && $(MAKE) -j$(JOBS) -C l3fwd && $(MAKE) -j$(JOBS) -C cmdif && $(MAKE) -j$(JOBS) -C l2fwd-qdma && \

=>

$(MAKE) -j$(JOBS) -C l2fwd && $(MAKE) -j$(JOBS) -C l3fwd && $(MAKE) -j$(JOBS) -C cmdif && $(MAKE) -j$(JOBS) -C l2fwd-qdma && $(MAKE) -j$(JOBS) -C packet_ordering && \

在原帖中查看解决方案

2 回复数
1,178 次查看
yipingwang
NXP TechSupport
NXP TechSupport

Please modify packages/apps/Makefile as the following.

$(MAKE) -j$(JOBS) -C l2fwd && $(MAKE) -j$(JOBS) -C l3fwd && $(MAKE) -j$(JOBS) -C cmdif && $(MAKE) -j$(JOBS) -C l2fwd-qdma && \

=>

$(MAKE) -j$(JOBS) -C l2fwd && $(MAKE) -j$(JOBS) -C l3fwd && $(MAKE) -j$(JOBS) -C cmdif && $(MAKE) -j$(JOBS) -C l2fwd-qdma && $(MAKE) -j$(JOBS) -C packet_ordering && \

1,177 次查看
sedat_altun
Contributor III

Thank you very much for your help. I was able to built DPDK packet_ordering application by editing Makefile but I couldnt find any help about how to run the application. In LS2088 SDK document some DPDK applications like l2fwd are explained but there is no help about ordering application. Could you please help us about how to run this application or which documents do we have to refer for running this application on LS2088.

Best regards.

0 项奖励
回复