Changeset 76ca3f7 in mainline for uspace/app/bdsh
- Timestamp:
- 2010-03-23T20:49:54Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e417b96
- Parents:
- b48ebd19 (diff), 63f8966 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace/app/bdsh
- Files:
-
- 18 edited
-
Makefile (modified) (2 diffs)
-
cmds/builtin_cmds.c (modified) (1 diff)
-
cmds/builtins/cd/cd.c (modified) (1 diff)
-
cmds/mod_cmds.c (modified) (1 diff)
-
cmds/modules/bdd/bdd.c (modified) (1 diff)
-
cmds/modules/cat/cat.c (modified) (1 diff)
-
cmds/modules/cp/cp.c (modified) (1 diff)
-
cmds/modules/help/help.c (modified) (1 diff)
-
cmds/modules/ls/ls.c (modified) (1 diff)
-
cmds/modules/mkdir/mkdir.c (modified) (1 diff)
-
cmds/modules/mkfile/mkfile.c (modified) (1 diff)
-
cmds/modules/rm/rm.c (modified) (1 diff)
-
cmds/modules/touch/touch.c (modified) (1 diff)
-
errors.c (modified) (1 diff)
-
exec.c (modified) (1 diff)
-
input.c (modified) (1 diff)
-
scli.c (modified) (1 diff)
-
util.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/Makefile
rb48ebd19 r76ca3f7 29 29 30 30 USPACE_PREFIX = ../.. 31 LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBC_PREFIX)/libc.a31 LIBS = $(LIBBLOCK_PREFIX)/libblock.a 32 32 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I. -Icmds/ -Icmds/builtins -Icmds/modules 33 34 OUTPUT = bdsh 33 BINARY = bdsh 35 34 36 35 SOURCES = \ … … 60 59 scli.c 61 60 62 include ../Makefile.common61 include $(USPACE_PREFIX)/Makefile.common -
uspace/app/bdsh/cmds/builtin_cmds.c
rb48ebd19 r76ca3f7 34 34 #include <stdio.h> 35 35 #include <stdlib.h> 36 #include <str ing.h>36 #include <str.h> 37 37 #include "errors.h" 38 38 #include "cmds.h" -
uspace/app/bdsh/cmds/builtins/cd/cd.c
rb48ebd19 r76ca3f7 32 32 #include <stdlib.h> 33 33 #include <unistd.h> 34 #include <str ing.h>34 #include <str.h> 35 35 #include <errno.h> 36 36 -
uspace/app/bdsh/cmds/mod_cmds.c
rb48ebd19 r76ca3f7 47 47 #include <stdio.h> 48 48 #include <stdlib.h> 49 #include <str ing.h>49 #include <str.h> 50 50 #include "errors.h" 51 51 #include "cmds.h" -
uspace/app/bdsh/cmds/modules/bdd/bdd.c
rb48ebd19 r76ca3f7 29 29 #include <stdio.h> 30 30 #include <stdlib.h> 31 #include <str ing.h>31 #include <str.h> 32 32 #include "config.h" 33 33 #include "util.h" -
uspace/app/bdsh/cmds/modules/cat/cat.c
rb48ebd19 r76ca3f7 33 33 #include <unistd.h> 34 34 #include <getopt.h> 35 #include <str ing.h>35 #include <str.h> 36 36 #include <fcntl.h> 37 37 -
uspace/app/bdsh/cmds/modules/cp/cp.c
rb48ebd19 r76ca3f7 33 33 #include <unistd.h> 34 34 #include <getopt.h> 35 #include <str ing.h>35 #include <str.h> 36 36 #include <fcntl.h> 37 37 #include "config.h" -
uspace/app/bdsh/cmds/modules/help/help.c
rb48ebd19 r76ca3f7 31 31 #include <stdio.h> 32 32 #include <stdlib.h> 33 #include <str ing.h>33 #include <str.h> 34 34 35 35 #include "config.h" -
uspace/app/bdsh/cmds/modules/ls/ls.c
rb48ebd19 r76ca3f7 40 40 #include <sys/types.h> 41 41 #include <sys/stat.h> 42 #include <str ing.h>42 #include <str.h> 43 43 44 44 #include "errors.h" -
uspace/app/bdsh/cmds/modules/mkdir/mkdir.c
rb48ebd19 r76ca3f7 38 38 #include <getopt.h> 39 39 #include <stdarg.h> 40 #include <str ing.h>40 #include <str.h> 41 41 42 42 #include "config.h" -
uspace/app/bdsh/cmds/modules/mkfile/mkfile.c
rb48ebd19 r76ca3f7 38 38 #include <getopt.h> 39 39 #include <stdarg.h> 40 #include <str ing.h>40 #include <str.h> 41 41 #include <ctype.h> 42 42 -
uspace/app/bdsh/cmds/modules/rm/rm.c
rb48ebd19 r76ca3f7 36 36 #include <getopt.h> 37 37 #include <mem.h> 38 #include <str ing.h>38 #include <str.h> 39 39 40 40 #include "config.h" -
uspace/app/bdsh/cmds/modules/touch/touch.c
rb48ebd19 r76ca3f7 38 38 #include <dirent.h> 39 39 #include <sys/types.h> 40 #include <str ing.h>40 #include <str.h> 41 41 42 42 #include "config.h" -
uspace/app/bdsh/errors.c
rb48ebd19 r76ca3f7 30 30 31 31 #include <stdio.h> 32 #include <str ing.h>32 #include <str.h> 33 33 #include <stdlib.h> 34 34 #include <unistd.h> -
uspace/app/bdsh/exec.c
rb48ebd19 r76ca3f7 38 38 #include <stdlib.h> 39 39 #include <unistd.h> 40 #include <str ing.h>40 #include <str.h> 41 41 #include <fcntl.h> 42 42 -
uspace/app/bdsh/input.c
rb48ebd19 r76ca3f7 32 32 #include <stdio.h> 33 33 #include <stdlib.h> 34 #include <str ing.h>34 #include <str.h> 35 35 #include <io/console.h> 36 36 #include <io/keycode.h> -
uspace/app/bdsh/scli.c
rb48ebd19 r76ca3f7 31 31 #include <stdio.h> 32 32 #include <stdlib.h> 33 #include <str ing.h>33 #include <str.h> 34 34 #include <unistd.h> 35 35 #include "config.h" -
uspace/app/bdsh/util.c
rb48ebd19 r76ca3f7 29 29 30 30 #include <stdio.h> 31 #include <str ing.h>31 #include <str.h> 32 32 #include <stdarg.h> 33 33 #include <stdlib.h>
Note:
See TracChangeset
for help on using the changeset viewer.
