summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-12-14 13:23:56 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-12-14 13:23:56 +0000
commit7054195127b89e98121fe25975837aea7370f762 (patch)
tree13ec28e0747c54ddd701baab922a63710fa427a5
parente00204c565e6ad755534c6ad91c9e1a6cd651e40 (diff)
Changed CONFIGURATION_MICROSECONDS_PER_TICK definition to a more reasonable
value.
-rw-r--r--dnstest/init.c2
-rw-r--r--http/init.c2
-rw-r--r--netdemo/init.c2
-rw-r--r--netlink/Makefile8
-rw-r--r--netlink/init.c13
-rw-r--r--ntp/init.c2
-rw-r--r--select/init.c2
-rw-r--r--tftpTest/init.c2
-rw-r--r--ttcp/init.c2
9 files changed, 24 insertions, 11 deletions
diff --git a/dnstest/init.c b/dnstest/init.c
index 0677666..6ed75d0 100644
--- a/dnstest/init.c
+++ b/dnstest/init.c
@@ -25,7 +25,7 @@
#define CONFIGURE_MAXIMUM_SEMAPHORES 20
#define CONFIGURE_MAXIMUM_TASKS 20
-#define CONFIGURE_MICROSECONDS_PER_TICK 10486
+#define CONFIGURE_MICROSECONDS_PER_TICK 10000
#define CONFIGURE_INIT_TASK_STACK_SIZE (10*1024)
#define CONFIGURE_INIT_TASK_PRIORITY 100
diff --git a/http/init.c b/http/init.c
index 44f9fc8..d6008b8 100644
--- a/http/init.c
+++ b/http/init.c
@@ -15,7 +15,7 @@
#define CONFIGURE_MAXIMUM_SEMAPHORES 20
#define CONFIGURE_MAXIMUM_TASKS 20
-#define CONFIGURE_MICROSECONDS_PER_TICK 10486
+#define CONFIGURE_MICROSECONDS_PER_TICK 10000
#define CONFIGURE_INIT_TASK_STACK_SIZE (10*1024)
#define CONFIGURE_INIT_TASK_PRIORITY 120
diff --git a/netdemo/init.c b/netdemo/init.c
index 7581998..a3aca24 100644
--- a/netdemo/init.c
+++ b/netdemo/init.c
@@ -25,7 +25,7 @@
#define CONFIGURE_MAXIMUM_SEMAPHORES 20
#define CONFIGURE_MAXIMUM_TASKS 20
-#define CONFIGURE_MICROSECONDS_PER_TICK 10486
+#define CONFIGURE_MICROSECONDS_PER_TICK 10000
#define CONFIGURE_INIT_TASK_STACK_SIZE (10*1024)
#define CONFIGURE_INIT_TASK_PRIORITY 120
diff --git a/netlink/Makefile b/netlink/Makefile
index 0c05a12..81a118e 100644
--- a/netlink/Makefile
+++ b/netlink/Makefile
@@ -18,7 +18,7 @@ DOCTYPES=
DOCS=$(DOCTYPES:%=$(SAMPLE).%)
SRCS=$(DOCS) $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
-OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES) $(ARCH)/tarfile.o
+OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES) # $(ARCH)/tarfile.o
PRINT_SRCS=$(DOCS)
@@ -58,9 +58,9 @@ all: ${ARCH} $(SRCS) $(PGM)
${PGM}: $(OBJS) $(LINK_FILES)
$(make-exe)
-$(ARCH)/tarfile.o:
- tar cf tarfile index.html
- $(LD) -r -o $(ARCH)/tarfile.o -b binary tarfile
+#$(ARCH)/tarfile.o:
+# tar cf tarfile index.html
+# $(LD) -r -o $(ARCH)/tarfile.o -b binary tarfile
# Install the program(s), appending _g or _p as appropriate.
# for include files, just use $(INSTALL)
diff --git a/netlink/init.c b/netlink/init.c
index d1e941f..0397e08 100644
--- a/netlink/init.c
+++ b/netlink/init.c
@@ -64,9 +64,22 @@ struct rtems_ftpd_configuration rtems_ftpd_configuration = {
NULL /* List of hooks */
};
+/*
+ * Settings for the Application Profiles:
+ *
+ * Base Networking Profile - neither
+ * FTP Server Profile - include ftpd
+ * Web Server Profile -include httpd
+ */
+
#define INCLUDE_FTPD 0
#define INCLUDE_HTTPD 1
+/* XXX until binutils are rebuilt */
+
+int _binary_tarfile_start;
+int _binary_tarfile_size;
+
rtems_task Init(
rtems_task_argument argument
)
diff --git a/ntp/init.c b/ntp/init.c
index 2f4f900..67063a4 100644
--- a/ntp/init.c
+++ b/ntp/init.c
@@ -25,7 +25,7 @@
#define CONFIGURE_MAXIMUM_SEMAPHORES 20
#define CONFIGURE_MAXIMUM_TASKS 20
-#define CONFIGURE_MICROSECONDS_PER_TICK 10486
+#define CONFIGURE_MICROSECONDS_PER_TICK 10000
#define CONFIGURE_INIT_TASK_STACK_SIZE (10*1024)
#define CONFIGURE_INIT_TASK_PRIORITY 120
diff --git a/select/init.c b/select/init.c
index 93e0487..12ca874 100644
--- a/select/init.c
+++ b/select/init.c
@@ -25,7 +25,7 @@
#define CONFIGURE_MAXIMUM_SEMAPHORES 20
#define CONFIGURE_MAXIMUM_TASKS 20
-#define CONFIGURE_MICROSECONDS_PER_TICK 10486
+#define CONFIGURE_MICROSECONDS_PER_TICK 10000
#define CONFIGURE_INIT_TASK_STACK_SIZE (10*1024)
#define CONFIGURE_INIT_TASK_PRIORITY 120
diff --git a/tftpTest/init.c b/tftpTest/init.c
index 821e247..5356a03 100644
--- a/tftpTest/init.c
+++ b/tftpTest/init.c
@@ -26,7 +26,7 @@
#define CONFIGURE_MAXIMUM_SEMAPHORES 20
#define CONFIGURE_MAXIMUM_TASKS 20
-#define CONFIGURE_MICROSECONDS_PER_TICK 10486
+#define CONFIGURE_MICROSECONDS_PER_TICK 10000
#define CONFIGURE_INIT_TASK_STACK_SIZE (10*1024)
#define CONFIGURE_INIT_TASK_PRIORITY 100
diff --git a/ttcp/init.c b/ttcp/init.c
index f20fa4c..1b19a80 100644
--- a/ttcp/init.c
+++ b/ttcp/init.c
@@ -25,7 +25,7 @@
#define CONFIGURE_MAXIMUM_SEMAPHORES 20
#define CONFIGURE_MAXIMUM_TASKS 20
-#define CONFIGURE_MICROSECONDS_PER_TICK 10486
+#define CONFIGURE_MICROSECONDS_PER_TICK 10000
#define CONFIGURE_INIT_TASK_STACK_SIZE (10*1024)
#define CONFIGURE_INIT_TASK_PRIORITY 100