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
Solved! Go to Solution.
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 && \
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 && \
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.