summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--SOURCES.0.017
-rw-r--r--TODO3
-rw-r--r--boot/ChangeLog5
-rw-r--r--boot/boot.c2
-rw-r--r--boot/boot_script.h2
6 files changed, 18 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 4d362bd1..cbbd78c2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -917,3 +917,4 @@ Wed Apr 27 01:54:34 1994 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
* Makefile (LIB_SUBDIRS, PROG_SUBDIRS, OTHER_SUBDIRS, SUBDIRS):
Renamed to less annoying names, not in ALL GRATUITOUS CAPS.
(lib-subdirs): Fixed name of libthreads.
+
diff --git a/SOURCES.0.0 b/SOURCES.0.0
index 3ad593b3..d4b115ba 100644
--- a/SOURCES.0.0
+++ b/SOURCES.0.0
@@ -5,9 +5,6 @@ Key:
+ = Relinked to get libc.0.0
STILL TO CATEGORIZE: XXX
-* fileutils (3.13) [rebuild for df after libc install]
-* gperf (cperf 2.1a) [hacked src/Makefile and src/stderr.c slightly]
- [substitute with libg++ version?]
libc
@@ -27,6 +24,7 @@ instructions without modification:
*+ doschk (1.1)
*+ ed (0.2)
*+ emacs lisp manual (19-2.4)
+*+ fileutils (3.13)
*+ flex (2.5.3)
*+ gawk (3.0.0)
*+ gcal (1.01)
@@ -48,7 +46,7 @@ instructions without modification:
*+ recode (3.4)
*+ sed (2.05)
*+ sharutils (4.2)
-* termcap (1.3) [manual only]
+*+ termcap (1.3) [manual only]
*+ termutils (2.0)
*+ textutils (1.19)
*+ time (1.7)
@@ -71,6 +69,8 @@ instructions, after making the indicated minor modifications:
*+ findutils (4.1)
[Comment out decl of basename in defs.h and defn in util.c
Add `#define ARG_MAX 20480' in xargs/xargs.c, right after the includes]
+*+ gperf (cperf 2.1a)
+ [hacked src/Makefile and src/stderr.c slightly]
*+ gzip (1.2.4)
[commented out basename from gzip.h and util.c]
*+ ncurses (1.9.9e)
@@ -100,9 +100,12 @@ instructions, after making the indicated minor modifications:
The following were compiled from the sources found in
ftp://prep.gnu.ai.mit.edu/pub/gnu/gnu-0.0/hurd-special-src:
-* bash (1.14.4 patchlevel 10, with some additional local bugfixes)
-e2fsprogs (e2fsprogs-0.5c-hurd1.tar.gz) [1.04 doesn't have hurd patches]
-serverboot
+*+ bash (1.14.4 patchlevel 10, with some additional local bugfixes)
+*+ e2fsprogs (e2fsprogs-0.5c-hurd1.tar.gz) [1.04 doesn't have hurd patches]
+*+ serverboot (serverboot.tar.gz)
+ [ Unpack into the mach4 source directory, and rename it to be `bootstrap';
+ you won't need the existing mach4 bootstrap. Then build in the bootstrap
+ subdir of the build directory, and install as /boot/serverboot. ]
*+ from
(*) grub
[ Requires changes for ELF: avoid generating 16-bit relocations.
diff --git a/TODO b/TODO
index f82c246f..df6d5f8f 100644
--- a/TODO
+++ b/TODO
@@ -227,9 +227,6 @@ See `tasks', the exported task list.
** Compile released libc.
** Compile released utilities. (See SOURCES-0.0)
-** Make serverboot source tar and build instructions.
-** Release inetutils 1.1 with autoconf crypt test.
-** Relink everything after when released libc is installed.
** ext2fs: shutdown doesn't sync properly?
[Create a file, then (settrans -a) won't write it, but if you do sync
first, everything's fine; the code doesn't look too different...]
diff --git a/boot/ChangeLog b/boot/ChangeLog
index a19e0eee..19d13d51 100644
--- a/boot/ChangeLog
+++ b/boot/ChangeLog
@@ -1,3 +1,8 @@
+Thu Aug 1 14:38:38 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
+
+ * boot_script.h (safe_gets): Declare second parm as type `int'.
+ * boot.c (safe_gets): Likewise.
+
Sun Jul 7 21:10:08 1996 Michael I. Bushnell, p/BSG <mib@gnu.ai.mit.edu>
* boot.c (S_io_reauthenticate): Don't use unsafe MOVE_SEND in
diff --git a/boot/boot.c b/boot/boot.c
index 2a6cf848..dcf3bccc 100644
--- a/boot/boot.c
+++ b/boot/boot.c
@@ -123,7 +123,7 @@ char *bootdevice = "sd0a";
void set_mach_stack_args ();
-void safe_gets (char *buf, size_t buf_len)
+void safe_gets (char *buf, int buf_len)
{
fgets (buf, buf_len, stdin);
}
diff --git a/boot/boot_script.h b/boot/boot_script.h
index e32837e8..d2db1a14 100644
--- a/boot/boot_script.h
+++ b/boot/boot_script.h
@@ -87,4 +87,4 @@ int boot_script_define_function (const char *name, int ret_type,
char *boot_script_error_string (int err);
-void safe_gets (char *, size_t);
+void safe_gets (char *, int);