From: Lawrence S. <ljs...@us...> - 2014-06-13 22:49:21
|
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 5e6026791b51e4ed17d69ca69ac8c60c50a03c82 (commit) from 5cd0fd3fdf1ca507b576e60f56dedc890f21db3d (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 5e6026791b51e4ed17d69ca69ac8c60c50a03c82 Author: Lawrence Sebald <ljs...@us...> Date: Fri Jun 13 18:46:38 2014 -0400 Move the lwIP examples out of the network examples directory and into their own. Other than dcload-ip-lwip-test, all of these could easily be modified to not use lwIP, and they will be sometime soon. Also, I'm considering removing lwIP entirely sometime. Probably won't do it until after the next release, though. ----------------------------------------------------------------------- Summary of changes: examples/dreamcast/lwip/Makefile | 19 +++++++++++++++++++ .../{network => lwip}/dcload-ip-lwip-test/Makefile | 0 .../{network => lwip}/dcload-ip-lwip-test/main.c | 0 .../{network => lwip}/dns-client/Makefile | 0 .../{network => lwip}/dns-client/dnslookup.c | 0 .../dreamcast/{network => lwip}/httpd/Makefile | 0 examples/dreamcast/{network => lwip}/httpd/httpd.c | 0 .../{network => lwip}/httpd/romdisk/changelog.html | 0 .../httpd/romdisk/documentation.html | 0 .../{network => lwip}/httpd/romdisk/download.html | 0 .../{network => lwip}/httpd/romdisk/img/sics.gif | Bin 724 -> 724 bytes .../{network => lwip}/httpd/romdisk/index.html | 0 .../{network => lwip}/httpd/romdisk/licence.html | 0 .../{network => lwip}/httpd/romdisk/links.html | 0 .../httpd/romdisk/mailinglist.html | 0 .../{network => lwip}/httpd/romdisk/news.html | 0 .../dreamcast/{network => lwip}/httpd/simhost.c | 0 examples/dreamcast/network/Makefile | 8 -------- 18 files changed, 19 insertions(+), 8 deletions(-) create mode 100644 examples/dreamcast/lwip/Makefile rename examples/dreamcast/{network => lwip}/dcload-ip-lwip-test/Makefile (100%) rename examples/dreamcast/{network => lwip}/dcload-ip-lwip-test/main.c (100%) rename examples/dreamcast/{network => lwip}/dns-client/Makefile (100%) rename examples/dreamcast/{network => lwip}/dns-client/dnslookup.c (100%) rename examples/dreamcast/{network => lwip}/httpd/Makefile (100%) rename examples/dreamcast/{network => lwip}/httpd/httpd.c (100%) rename examples/dreamcast/{network => lwip}/httpd/romdisk/changelog.html (100%) rename examples/dreamcast/{network => lwip}/httpd/romdisk/documentation.html (100%) rename examples/dreamcast/{network => lwip}/httpd/romdisk/download.html (100%) rename examples/dreamcast/{network => lwip}/httpd/romdisk/img/sics.gif (100%) rename examples/dreamcast/{network => lwip}/httpd/romdisk/index.html (100%) rename examples/dreamcast/{network => lwip}/httpd/romdisk/licence.html (100%) rename examples/dreamcast/{network => lwip}/httpd/romdisk/links.html (100%) rename examples/dreamcast/{network => lwip}/httpd/romdisk/mailinglist.html (100%) rename examples/dreamcast/{network => lwip}/httpd/romdisk/news.html (100%) rename examples/dreamcast/{network => lwip}/httpd/simhost.c (100%) diff --git a/examples/dreamcast/lwip/Makefile b/examples/dreamcast/lwip/Makefile new file mode 100644 index 0000000..8fd5b87 --- /dev/null +++ b/examples/dreamcast/lwip/Makefile @@ -0,0 +1,19 @@ +# KallistiOS ##version## +# +# examples/dreamcast/lwip/Makefile +# + +all: + $(KOS_MAKE) -C dns-client + $(KOS_MAKE) -C httpd +# $(KOS_MAKE) -C dcload-ip-lwip-test + +clean: + $(KOS_MAKE) -C dns-client clean + $(KOS_MAKE) -C httpd clean +# $(KOS_MAKE) -C dcload-ip-lwip-test clean + +dist: + $(KOS_MAKE) -C dns-client dist + $(KOS_MAKE) -C httpd dist +# $(KOS_MAKE) -C dcload-ip-lwip-test dist diff --git a/examples/dreamcast/network/dcload-ip-lwip-test/Makefile b/examples/dreamcast/lwip/dcload-ip-lwip-test/Makefile similarity index 100% rename from examples/dreamcast/network/dcload-ip-lwip-test/Makefile rename to examples/dreamcast/lwip/dcload-ip-lwip-test/Makefile diff --git a/examples/dreamcast/network/dcload-ip-lwip-test/main.c b/examples/dreamcast/lwip/dcload-ip-lwip-test/main.c similarity index 100% rename from examples/dreamcast/network/dcload-ip-lwip-test/main.c rename to examples/dreamcast/lwip/dcload-ip-lwip-test/main.c diff --git a/examples/dreamcast/network/dns-client/Makefile b/examples/dreamcast/lwip/dns-client/Makefile similarity index 100% rename from examples/dreamcast/network/dns-client/Makefile rename to examples/dreamcast/lwip/dns-client/Makefile diff --git a/examples/dreamcast/network/dns-client/dnslookup.c b/examples/dreamcast/lwip/dns-client/dnslookup.c similarity index 100% rename from examples/dreamcast/network/dns-client/dnslookup.c rename to examples/dreamcast/lwip/dns-client/dnslookup.c diff --git a/examples/dreamcast/network/httpd/Makefile b/examples/dreamcast/lwip/httpd/Makefile similarity index 100% rename from examples/dreamcast/network/httpd/Makefile rename to examples/dreamcast/lwip/httpd/Makefile diff --git a/examples/dreamcast/network/httpd/httpd.c b/examples/dreamcast/lwip/httpd/httpd.c similarity index 100% rename from examples/dreamcast/network/httpd/httpd.c rename to examples/dreamcast/lwip/httpd/httpd.c diff --git a/examples/dreamcast/network/httpd/romdisk/changelog.html b/examples/dreamcast/lwip/httpd/romdisk/changelog.html similarity index 100% rename from examples/dreamcast/network/httpd/romdisk/changelog.html rename to examples/dreamcast/lwip/httpd/romdisk/changelog.html diff --git a/examples/dreamcast/network/httpd/romdisk/documentation.html b/examples/dreamcast/lwip/httpd/romdisk/documentation.html similarity index 100% rename from examples/dreamcast/network/httpd/romdisk/documentation.html rename to examples/dreamcast/lwip/httpd/romdisk/documentation.html diff --git a/examples/dreamcast/network/httpd/romdisk/download.html b/examples/dreamcast/lwip/httpd/romdisk/download.html similarity index 100% rename from examples/dreamcast/network/httpd/romdisk/download.html rename to examples/dreamcast/lwip/httpd/romdisk/download.html diff --git a/examples/dreamcast/network/httpd/romdisk/index.html b/examples/dreamcast/lwip/httpd/romdisk/index.html similarity index 100% rename from examples/dreamcast/network/httpd/romdisk/index.html rename to examples/dreamcast/lwip/httpd/romdisk/index.html diff --git a/examples/dreamcast/network/httpd/romdisk/licence.html b/examples/dreamcast/lwip/httpd/romdisk/licence.html similarity index 100% rename from examples/dreamcast/network/httpd/romdisk/licence.html rename to examples/dreamcast/lwip/httpd/romdisk/licence.html diff --git a/examples/dreamcast/network/httpd/romdisk/links.html b/examples/dreamcast/lwip/httpd/romdisk/links.html similarity index 100% rename from examples/dreamcast/network/httpd/romdisk/links.html rename to examples/dreamcast/lwip/httpd/romdisk/links.html diff --git a/examples/dreamcast/network/httpd/romdisk/mailinglist.html b/examples/dreamcast/lwip/httpd/romdisk/mailinglist.html similarity index 100% rename from examples/dreamcast/network/httpd/romdisk/mailinglist.html rename to examples/dreamcast/lwip/httpd/romdisk/mailinglist.html diff --git a/examples/dreamcast/network/httpd/romdisk/news.html b/examples/dreamcast/lwip/httpd/romdisk/news.html similarity index 100% rename from examples/dreamcast/network/httpd/romdisk/news.html rename to examples/dreamcast/lwip/httpd/romdisk/news.html diff --git a/examples/dreamcast/network/httpd/simhost.c b/examples/dreamcast/lwip/httpd/simhost.c similarity index 100% rename from examples/dreamcast/network/httpd/simhost.c rename to examples/dreamcast/lwip/httpd/simhost.c diff --git a/examples/dreamcast/network/Makefile b/examples/dreamcast/network/Makefile index 6dd685d..bc15bae 100644 --- a/examples/dreamcast/network/Makefile +++ b/examples/dreamcast/network/Makefile @@ -6,26 +6,18 @@ all: $(KOS_MAKE) -C basic - $(KOS_MAKE) -C httpd $(KOS_MAKE) -C ping $(KOS_MAKE) -C ping6 $(KOS_MAKE) -C udpecho6 -# $(KOS_MAKE) -C dcload-ip-lwip-test clean: $(KOS_MAKE) -C basic clean - $(KOS_MAKE) -C httpd clean $(KOS_MAKE) -C ping clean $(KOS_MAKE) -C ping6 clean $(KOS_MAKE) -C udpecho6 clean -# $(KOS_MAKE) -C dcload-ip-lwip-test clean dist: $(KOS_MAKE) -C basic dist - $(KOS_MAKE) -C httpd dist $(KOS_MAKE) -C ping dist $(KOS_MAKE) -C ping6 dist $(KOS_MAKE) -C udpecho6 dist -# $(KOS_MAKE) -C dcload-ip-lwip-test dist - - hooks/post-receive -- A pseudo Operating System for the Dreamcast. |