|
From: kosmirror <kos...@us...> - 2025-06-28 19:47:04
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "A pseudo Operating System for the Dreamcast.".
The branch, master has been updated
via 9525f1ed451487c3a11fb530269886d265a77840 (commit)
from 59fa7fd65a08ed7edc8b949cb1cd6a6bdc486eb0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 9525f1ed451487c3a11fb530269886d265a77840
Author: QuzarDC <qu...@co...>
Date: Sat Jun 21 00:51:30 2025 -0400
Keep network examples connected to dcload console.
By default most network examples were set to call dctool
with `-n` to disconnect the debug console. The idea behind
it seems to have been to prevent dcload-ip from interferring
with the network traffic, but that's not needed. We have a
system in place just for this and it relies on the dcload
console being active in order to request the already assigned
IP.
-----------------------------------------------------------------------
Summary of changes:
examples/dreamcast/network/basic/Makefile | 4 ++--
examples/dreamcast/network/dns-client/Makefile | 2 +-
examples/dreamcast/network/httpd/Makefile | 2 +-
examples/dreamcast/network/ntp/Makefile | 2 +-
examples/dreamcast/network/ping/Makefile | 4 ++--
examples/dreamcast/network/ping6/Makefile | 4 ++--
examples/dreamcast/network/speedtest/Makefile | 4 ++--
examples/dreamcast/network/udpecho6/Makefile | 4 ++--
8 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/examples/dreamcast/network/basic/Makefile b/examples/dreamcast/network/basic/Makefile
index 659c49f9..a05f43ec 100644
--- a/examples/dreamcast/network/basic/Makefile
+++ b/examples/dreamcast/network/basic/Makefile
@@ -1,7 +1,7 @@
#
# Basic KallistiOS skeleton / test program
# (c)2001 Megan Potter
-#
+#
# Put the filename of the output binary here
TARGET = basic.elf
@@ -26,7 +26,7 @@ $(TARGET): $(OBJS)
kos-cc -o $(TARGET) $(OBJS)
run: $(TARGET)
- $(KOS_LOADER) $(TARGET) -n
+ $(KOS_LOADER) $(TARGET)
dist: $(TARGET)
-rm -f $(OBJS)
diff --git a/examples/dreamcast/network/dns-client/Makefile b/examples/dreamcast/network/dns-client/Makefile
index d7c241c3..dfd496ea 100644
--- a/examples/dreamcast/network/dns-client/Makefile
+++ b/examples/dreamcast/network/dns-client/Makefile
@@ -21,7 +21,7 @@ $(TARGET): $(OBJS)
kos-cc -o $(TARGET) $(OBJS)
run: $(TARGET)
- $(KOS_LOADER) $(TARGET) -n
+ $(KOS_LOADER) $(TARGET)
dist: $(TARGET)
-rm -f $(OBJS)
diff --git a/examples/dreamcast/network/httpd/Makefile b/examples/dreamcast/network/httpd/Makefile
index 31b8c56a..c52cd2be 100644
--- a/examples/dreamcast/network/httpd/Makefile
+++ b/examples/dreamcast/network/httpd/Makefile
@@ -28,7 +28,7 @@ $(TARGET): $(OBJS)
kos-cc -o $(TARGET) $(OBJS)
run: $(TARGET)
- $(KOS_LOADER) $(TARGET) -n
+ $(KOS_LOADER) $(TARGET)
dist: $(TARGET)
-rm -f $(OBJS) romdisk.img
diff --git a/examples/dreamcast/network/ntp/Makefile b/examples/dreamcast/network/ntp/Makefile
index 3be6733f..5db8421e 100644
--- a/examples/dreamcast/network/ntp/Makefile
+++ b/examples/dreamcast/network/ntp/Makefile
@@ -27,7 +27,7 @@ $(TARGET): $(OBJS)
kos-cc -o $(TARGET) $(OBJS)
run: $(TARGET)
- $(KOS_LOADER) $(TARGET) -n
+ $(KOS_LOADER) $(TARGET)
dist: $(TARGET)
-rm -f $(OBJS)
diff --git a/examples/dreamcast/network/ping/Makefile b/examples/dreamcast/network/ping/Makefile
index 5ce6a0e4..53b6c744 100644
--- a/examples/dreamcast/network/ping/Makefile
+++ b/examples/dreamcast/network/ping/Makefile
@@ -1,7 +1,7 @@
#
# Basic KallistiOS skeleton / test program
# (c)2001 Megan Potter
-#
+#
# Put the filename of the output binary here
TARGET = ping.elf
@@ -26,7 +26,7 @@ $(TARGET): $(OBJS)
kos-cc -o $(TARGET) $(OBJS)
run: $(TARGET)
- $(KOS_LOADER) $(TARGET) -n
+ $(KOS_LOADER) $(TARGET)
dist: $(TARGET)
-rm -f $(OBJS)
diff --git a/examples/dreamcast/network/ping6/Makefile b/examples/dreamcast/network/ping6/Makefile
index 5ce6a0e4..53b6c744 100644
--- a/examples/dreamcast/network/ping6/Makefile
+++ b/examples/dreamcast/network/ping6/Makefile
@@ -1,7 +1,7 @@
#
# Basic KallistiOS skeleton / test program
# (c)2001 Megan Potter
-#
+#
# Put the filename of the output binary here
TARGET = ping.elf
@@ -26,7 +26,7 @@ $(TARGET): $(OBJS)
kos-cc -o $(TARGET) $(OBJS)
run: $(TARGET)
- $(KOS_LOADER) $(TARGET) -n
+ $(KOS_LOADER) $(TARGET)
dist: $(TARGET)
-rm -f $(OBJS)
diff --git a/examples/dreamcast/network/speedtest/Makefile b/examples/dreamcast/network/speedtest/Makefile
index 5c85f2f3..6616bf00 100644
--- a/examples/dreamcast/network/speedtest/Makefile
+++ b/examples/dreamcast/network/speedtest/Makefile
@@ -1,6 +1,6 @@
#
# KallistiOS network/speedtest example
-#
+#
# Copyright (C) 2024 Andress Barajas
#
@@ -23,7 +23,7 @@ $(TARGET): $(OBJS)
kos-cc -o $(TARGET) $(OBJS)
run: $(TARGET)
- $(KOS_LOADER) $(TARGET) -n
+ $(KOS_LOADER) $(TARGET)
dist: $(TARGET)
-rm -f $(OBJS) romdisk.img
diff --git a/examples/dreamcast/network/udpecho6/Makefile b/examples/dreamcast/network/udpecho6/Makefile
index 080db0a3..1189f081 100644
--- a/examples/dreamcast/network/udpecho6/Makefile
+++ b/examples/dreamcast/network/udpecho6/Makefile
@@ -1,7 +1,7 @@
#
# Basic KallistiOS skeleton / test program
# (c)2001 Megan Potter
-#
+#
# Put the filename of the output binary here
TARGET = echo.elf
@@ -26,7 +26,7 @@ $(TARGET): $(OBJS)
kos-cc -o $(TARGET) $(OBJS)
run: $(TARGET)
- $(KOS_LOADER) $(TARGET) -n
+ $(KOS_LOADER) $(TARGET)
dist: $(TARGET)
-rm -f $(OBJS)
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|