diff options
author | Roland McGrath <roland@gnu.org> | 2001-08-21 04:19:34 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-08-21 04:19:34 +0000 |
commit | 7ad12bf7e68d675b99cd68e3173a8f1e2d3c61c1 (patch) | |
tree | 021982d4e82f3ebfc84c9874a93aec1fa1e58d6d /Makefile.in | |
parent | 9a23f3c7f25a686d931f760b2b39fe477992e0e6 (diff) | |
download | gnumach-7ad12bf7e68d675b99cd68e3173a8f1e2d3c61c1.tar.gz gnumach-7ad12bf7e68d675b99cd68e3173a8f1e2d3c61c1.tar.bz2 gnumach-7ad12bf7e68d675b99cd68e3173a8f1e2d3c61c1.zip |
2001-08-20 Roland McGrath <roland@frob.com>
Support "boot script" functionality in multiboot module strings.
* kern/bootstrap.c: Rewrite merged from oskit-branch.
* kern/boot_script.c, kern/boot_script.h: New files,
copied from boot/ directory in Hurd sources.
* Makefile.in (kern-cfiles): Add boot_script.c here.
(kern-files): Add boot_script.h here.
* NEWS: Mention the new feature.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 21abf576..04181e86 100644 --- a/Makefile.in +++ b/Makefile.in @@ -139,7 +139,7 @@ kern-cfiles = act.c ast.c bootstrap.c counters.c debug.c eventcount.c \ machine.c pc_sample.c printf.c priority.c processor.c profile.c \ queue.c sched_prim.c startup.c strings.c syscall_emulation.c \ syscall_subr.c syscall_sw.c task.c thread.c thread_swap.c \ - time_stamp.c timer.c xpr.c zalloc.c elf-load.c + time_stamp.c timer.c xpr.c zalloc.c elf-load.c boot_script.c kern-files = $(kern-cfiles) \ act.h assert.h ast.h compat_xxx_defs.h counters.h cpu_number.h \ debug.h eventcount.h host.h ipc_host.h ipc_kobject.h ipc_sched.h \ @@ -147,7 +147,7 @@ kern-files = $(kern-cfiles) \ pc_sample.h processor.h queue.h refcount.h sched.h sched_prim.h \ shuttle.h strings.h syscall_emulation.h syscall_subr.h syscall_sw.h \ task.h thread.h thread_swap.h time_out.h time_stamp.h timer.h xpr.h \ - zalloc.h \ + zalloc.h boot_script.h \ mach.srv mach4.srv mach_debug.srv mach_host.srv # Still more trivia |