Building DPDK reordering application for LS2088

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

Building DPDK reordering application for LS2088

ソリューションへジャンプ
1,097件の閲覧回数
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 解決策
975件の閲覧回数
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 返答(返信)
976件の閲覧回数
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 && \

975件の閲覧回数
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 件の賞賛