Changeset 837

Show
Ignore:
Timestamp:
08/06/08 20:47:02 (4 years ago)
Author:
mwhitworth
Message:

Add start of registry server.

Location:
Whitix/trunk/user/system
Files:
7 added
2 modified

Legend:

Unmodified
Added
Removed
  • Whitix/trunk/user/system/Makefile

    r634 r837  
    1 CFLAGS = -ffreestanding -fno-builtin -I../libc/include -I../librtl -I../../include -fno-stack-protector -DMODULE -m32 
     1CFLAGS = -g -ffreestanding -fno-builtin -I../libc/include -I../librtl -I../../include -fno-stack-protector -DMODULE -m32 
    22OBJS = moduleadd.o testm.o startup.o 
    33 
     
    77build: $(OBJS) 
    88        gcc -m32 -nostdlib -L../libc -L../librtl -L../posix -L../sdk/libs ../libc/init/init.o moduleadd.o -lstdc -lrtl -lpthread -o moduleadd -Wl,-I/System/Runtime/liblinker.so 
    9         strip moduleadd 
    109        gcc -m32 -nostdlib -L../libc -L../librtl -L../posix -L../sdk/libs ../libc/init/init.o startup.o -lstdc -lrtl -lpthread -o startup -Wl,-I/System/Runtime/liblinker.so 
     10        make -C registry/server 
    1111#       make -C installer 
    1212 
     
    1515        cp moduleadd ../../CdRoot/System/Modules/ 
    1616        cp testm.o ../../CdRoot/System/Modules/testm.sys 
     17        make -C registry/server install 
    1718#       make -C installer install 
    1819         
     
    2021        rm -f *.o 
    2122        rm -f moduleadd startup 
     23        make -C registry/server clean 
    2224#       make -C installer clean 
  • Whitix/trunk/user/system/startup.c

    r645 r837  
    106106        char* args[]={NULL}; 
    107107 
     108        SysCreateProcess("/System/Startup/regserver", NULL, args); 
     109 
    108110        pid=SysCreateProcess("/Applications/Burn", NULL, args); 
    109111