Building DPDK reordering application for LS2088

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Building DPDK reordering application for LS2088

Jump to solution
1,078 Views
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

Labels (2)
Tags (2)
0 Kudos
1 Solution
956 Views
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 && \

View solution in original post

2 Replies
957 Views
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 && \

956 Views
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 Kudos