xv6

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit c36c8960ba9d06ffb00a7d6e89d81ddf2d31f8ea
parent aa6706cc7d7257c59b342ad934ec65a72223b151
Author: Brian Swetland <swetland@frotz.net>
Date:   Fri, 27 Dec 2013 10:10:49 -0800

move userspace tools to user/ directory

Diffstat:
MMakefile | 6+++---
Rcat.c -> user/cat.c | 0
Recho.c -> user/echo.c | 0
Rforktest.c -> user/forktest.c | 0
Rgrep.c -> user/grep.c | 0
Rinit.c -> user/init.c | 0
Rkill.c -> user/kill.c | 0
Rln.c -> user/ln.c | 0
Rls.c -> user/ls.c | 0
Rmkdir.c -> user/mkdir.c | 0
Rrm.c -> user/rm.c | 0
Rsh.c -> user/sh.c | 0
Rstressfs.c -> user/stressfs.c | 0
Rusertests.c -> user/usertests.c | 0
Rwc.c -> user/wc.c | 0
Rzombie.c -> user/zombie.c | 0
16 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -137,15 +137,15 @@ vectors.S: vectors.pl ULIB = ulib.o usys.o printf.o umalloc.o -_%: %.o $(ULIB) +_%: user/%.o $(ULIB) $(LD) $(LDFLAGS) -N -e main -Ttext 0 -o $@ $^ $(OBJDUMP) -S $@ > $*.asm $(OBJDUMP) -t $@ | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$$/d' > $*.sym -_forktest: forktest.o $(ULIB) +_forktest: user/forktest.o $(ULIB) # forktest has less library code linked in - needs to be small # in order to be able to max out the proc table. - $(LD) $(LDFLAGS) -N -e main -Ttext 0 -o _forktest forktest.o ulib.o usys.o + $(LD) $(LDFLAGS) -N -e main -Ttext 0 -o _forktest user/forktest.o ulib.o usys.o $(OBJDUMP) -S _forktest > forktest.asm mkfs: mkfs.c include/fs.h diff --git a/cat.c b/user/cat.c diff --git a/echo.c b/user/echo.c diff --git a/forktest.c b/user/forktest.c diff --git a/grep.c b/user/grep.c diff --git a/init.c b/user/init.c diff --git a/kill.c b/user/kill.c diff --git a/ln.c b/user/ln.c diff --git a/ls.c b/user/ls.c diff --git a/mkdir.c b/user/mkdir.c diff --git a/rm.c b/user/rm.c diff --git a/sh.c b/user/sh.c diff --git a/stressfs.c b/user/stressfs.c diff --git a/usertests.c b/user/usertests.c diff --git a/wc.c b/user/wc.c diff --git a/zombie.c b/user/zombie.c