diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2011-05-08 23:00:10 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2011-05-08 23:00:10 +0200 |
commit | bf135caeedf3f24dc9a17b7d95739c3de9e298e5 (patch) | |
tree | b9529e875d95bb3110e983c6b4a118e4b7d0b369 | |
parent | 93b17fcac3b1b178bc5a05f77d46c1efad3409d0 (diff) |
drop diff file
-rw-r--r-- | boot.backup1/Makefile.diff | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/boot.backup1/Makefile.diff b/boot.backup1/Makefile.diff deleted file mode 100644 index f302b639..00000000 --- a/boot.backup1/Makefile.diff +++ /dev/null @@ -1,34 +0,0 @@ -diff --git a/boot/Makefile b/boot/Makefile -index f8d15bb..33c475f 100644 ---- a/boot/Makefile -+++ b/boot/Makefile -@@ -19,13 +19,13 @@ dir := boot - makemode := utility - - SRCS = mach-crt0.c boot.c ux.c sigvec.S syscall.S \ -- boot_script.c userland-boot.c -+ boot_script.c userland-boot.c list.c mach_proxy.c - COMMON-OBJS = notifyServer.o ourdeviceServer.o \ - ioServer.o io_replyUser.o device_replyUser.o \ - termServer.o bootstrapServer.o boot_script.o userland-boot.o \ -- ourmach_hostServer.o ourmachServer.o mach_portServer.o excServer.o -+ ourmach_hostServer.o ourmachServer.o ourmach_portServer.o excServer.o - OBJS = boot.o mach_host_impl.o mach_impl.o mach_port_impl.o \ -- exc_impl.o $(COMMON-OBJS) -+ exc_impl.o list.o mach_proxy.o $(COMMON-OBJS) - UX-OBJS = mach-crt0.o uxboot.o sigvec.o syscall.o ux.o $(COMMON-OBJS) - LCLHDRS = boot_script.h ux.h util.h - target = boot -@@ -45,12 +45,6 @@ all: boot # uxboot - ourdevice.defs: device.defs - $(CPP) $(CPPFLAGS) -x c $< | sed -e '/out[ ]*device[ ]*:[ ]*device_t/s/device_t/mach_port_send_t/' > $@ - --ourmach.defs: mach.defs -- $(CPP) $(CPPFLAGS) -x c $< | sed -e '/inout default_manager : mach_port_make_send_t/s/mach_port_make_send_t/mach_port_copy_send_t/' | sed -e '/out[ ]*special_port[ ]*:[ ]*mach_port_t/s/mach_port_t/mach_port_send_t/' | sed -e '/out[ ]*child_task[ ]*:[ ]*task_t/s/task_t/mach_port_send_t/' | sed -e '/out[ ]*child_thread[ ]*:[ ]*thread_t/s/thread_t/mach_port_send_t/' | sed -e '/subsystem/iserverprefix S_;' > $@ -- --ourmach_host.defs: mach_host.defs -- $(CPP) $(CPPFLAGS) -x c $< | sed -e '/out[ ]*set[ ]*:[ ]*processor_set_t/s/processor_set_t/mach_port_send_t/' | sed -e '/subsystem/iserverprefix S_;' > $@ -- - uxboot.o: boot.c - $(COMPILE.c) -DUX $< -o $@ - |