Skip to content

Commit

Permalink
examples/virtio: update sDDF module to new branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan-Velickovic committed Nov 20, 2023
1 parent 247ae58 commit b36f7d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[submodule "sddf"]
path = examples/virtio/sddf
url = https://github.com/au-ts/sddf
branch = ivanv/dev
branch = lionsos
2 changes: 1 addition & 1 deletion examples/virtio/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ $(BUILD_DIR)/%.o: $(VMM_SRC_DIR)/virtio/%.c Makefile
$(CC) -c $(CFLAGS) $< -o $@

$(BUILD_DIR)/%.o: $(SDDF_SERIAL_COMPONENTS)/%.c Makefile
$(CC) -c $(CFLAGS) $< -o $@
$(CC) -c $(CFLAGS) -DNUM_CLIENTS=2 $< -o $@

$(BUILD_DIR)/%.o: $(SDDF_SERIAL_RINGBUFFER)/%.c Makefile
$(CC) -c $(CFLAGS) $< -o $@
Expand Down
2 changes: 1 addition & 1 deletion examples/virtio/sddf
Submodule sddf updated 46 files
+4 −4 README.md
+15 −15 benchmark/benchmark.c
+3 −3 benchmark/idle.c
+18 −18 drivers/clock/imx/timer.c
+186 −0 drivers/clock/meson/timer.c
+14 −13 drivers/network/imx/ethernet.c
+33 −0 drivers/network/meson/Makefile
+541 −0 drivers/network/meson/ethernet.c
+157 −0 drivers/network/meson/ethernet.h
+2 −2 drivers/serial/meson/uart.c
+22 −18 examples/echo_server/Makefile
+12 −11 examples/serial_two_client/Makefile
+3 −3 examples/serial_two_client/README.md
+63 −72 examples/serial_two_client/serial.system
+24 −24 examples/serial_two_client/serial_server_1.c
+26 −26 examples/serial_two_client/serial_server_2.c
+62 −0 examples/timer/Makefile
+48 −0 examples/timer/client.c
+22 −0 examples/timer/timer.system
+13 −85 include/sddf/network/shared_ringbuffer.h
+22 −0 include/sddf/timer/client.h
+12 −11 network/components/arp.c
+6 −5 network/components/copy.c
+21 −21 network/components/lwip.c
+3 −3 network/components/lwip_timer.c
+6 −6 network/components/mux_rx.c
+5 −5 network/components/mux_tx.c
+8 −7 network/components/mux_tx_bandwidth_limited.c
+4 −4 network/components/mux_tx_priority.c
+5 −5 network/components/mux_tx_round_robin.c
+1 −1 network/components/udp_echo_socket.c
+17 −17 network/components/utilization_socket.c
+0 −2 network/ipstacks/lwip/src/core/inet_chksum.c
+0 −2 network/ipstacks/lwip/src/core/ipv4/etharp.c
+0 −5 network/ipstacks/lwip/src/core/ipv4/ip4.c
+0 −4 network/ipstacks/lwip/src/core/pbuf.c
+0 −4 network/ipstacks/lwip/src/core/tcp_in.c
+0 −4 network/ipstacks/lwip/src/core/udp.c
+0 −2 network/ipstacks/lwip/src/netif/ethernet.c
+32 −0 network/libethsharedringbuffer/Makefile
+93 −1 network/libethsharedringbuffer/shared_ringbuffer.c
+3 −1 serial/components/mux_rx.c
+3 −1 serial/components/mux_tx.c
+36 −0 timer/client/Makefile
+25 −0 timer/client/client.c
+1 −1 util/include/timer.h

0 comments on commit b36f7d3

Please sign in to comment.