From e40c757038d0b2d88288233fba9989ecc38201b0 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Mon, 20 Jun 2005 12:01:15 +0000 Subject: [PATCH] connected ps and ftpd200 to commands build disabled verbose message in readclock --- commands/Makefile | 1 + commands/ibm/readclock.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/commands/Makefile b/commands/Makefile index f83334a9e..6cde82500 100755 --- a/commands/Makefile +++ b/commands/Makefile @@ -33,6 +33,7 @@ all install clean:: cd flex-2.3.7 && $(MAKE) $@ cd ftp && $(MAKE) $@ cd ftpd && $(MAKE) $@ + cd ftpd200 && $(MAKE) $@ cd ibm && $(MAKE) $@ cd kermit && $(MAKE) $@ # cd kermit_211 && $(MAKE) $@ diff --git a/commands/ibm/readclock.c b/commands/ibm/readclock.c index 27cc860b2..9f1ed0011 100755 --- a/commands/ibm/readclock.c +++ b/commands/ibm/readclock.c @@ -181,7 +181,9 @@ PUBLIC int main(int argc, char **argv) if (strftime(date, sizeof(date), "%a %b %d %H:%M:%S %Z %Y", &tmnow) != 0) { if (date[8] == '0') date[8]= ' '; +#if 0 printf("%s [CMOS read via FS, see command/ibm/readclock.c]\n", date); +#endif } exit(0); }