diff options
author | Roland McGrath <roland@gnu.org> | 2001-08-17 04:47:51 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-08-17 04:47:51 +0000 |
commit | b9cccadc0ec3ff86b52b205e9dd2417e9d798009 (patch) | |
tree | ee14395fa038d0988eb0f1b62e02e378c157902f | |
parent | 16bc4b4cfed8959345574d8389c1aa1f24ecfa95 (diff) |
2001-08-16 Roland McGrath <roland@frob.com>
* boot_script.h (boot_script_malloc, boot_script_free): Declare new
functions that callers must define.
* boot_script.c: All uses of malloc/free changed to use those instead.
* userland-boot.c: New file. Defines them using malloc/free.
* Makefile (SRCS, OBJS): Add it.
* boot.c (boot_script_malloc, boot_script_free): Old cruft functions
removed.
-rw-r--r-- | boot/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/boot/Makefile b/boot/Makefile index 50266481..6c787cfd 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -18,10 +18,11 @@ dir := boot makemode := utility -SRCS = mach-crt0.c boot.c ux.c sigvec.S syscall.S boot_script.c +SRCS = mach-crt0.c boot.c ux.c sigvec.S syscall.S \ + boot_script.c userland-boot.c COMMON-OBJS = notifyServer.o ourdeviceServer.o \ ioServer.o io_replyUser.o device_replyUser.o \ - termServer.o bootstrapServer.o boot_script.o + termServer.o bootstrapServer.o boot_script.o userland-boot.o OBJS = boot.o $(COMMON-OBJS) UX-OBJS = mach-crt0.o uxboot.o sigvec.o syscall.o ux.o $(COMMON-OBJS) LCLHDRS = boot_script.h ux.h |