Changeset 216d6fc in mainline
- Timestamp:
- 2008-08-22T09:09:03Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 49b2dc3
- Parents:
- fa81b5f
- Files:
-
- 68 added
- 4 edited
-
boot/arch/ia32/Makefile.inc (modified) (1 diff)
-
uspace/Makefile (modified) (1 diff)
-
uspace/app/bdsh/AUTHORS (added)
-
uspace/app/bdsh/LICENSE (added)
-
uspace/app/bdsh/Makefile (added)
-
uspace/app/bdsh/TODO (added)
-
uspace/app/bdsh/cmds/builtin_cmds.c (added)
-
uspace/app/bdsh/cmds/builtins/README (added)
-
uspace/app/bdsh/cmds/builtins/builtin_aliases.h (added)
-
uspace/app/bdsh/cmds/builtins/builtins.h (added)
-
uspace/app/bdsh/cmds/builtins/cd/cd.c (added)
-
uspace/app/bdsh/cmds/builtins/cd/cd.def (added)
-
uspace/app/bdsh/cmds/builtins/cd/cd.h (added)
-
uspace/app/bdsh/cmds/builtins/cd/entry.h (added)
-
uspace/app/bdsh/cmds/builtins/pwd/entry.h (added)
-
uspace/app/bdsh/cmds/builtins/pwd/pwd.c (added)
-
uspace/app/bdsh/cmds/builtins/pwd/pwd.def (added)
-
uspace/app/bdsh/cmds/builtins/pwd/pwd.h (added)
-
uspace/app/bdsh/cmds/cmds.h (added)
-
uspace/app/bdsh/cmds/mknewcmd (added)
-
uspace/app/bdsh/cmds/mod_cmds.c (added)
-
uspace/app/bdsh/cmds/modules/README (added)
-
uspace/app/bdsh/cmds/modules/cat/cat.c (added)
-
uspace/app/bdsh/cmds/modules/cat/cat.def (added)
-
uspace/app/bdsh/cmds/modules/cat/cat.h (added)
-
uspace/app/bdsh/cmds/modules/cat/entry.h (added)
-
uspace/app/bdsh/cmds/modules/help/entry.h (added)
-
uspace/app/bdsh/cmds/modules/help/help.c (added)
-
uspace/app/bdsh/cmds/modules/help/help.def (added)
-
uspace/app/bdsh/cmds/modules/help/help.h (added)
-
uspace/app/bdsh/cmds/modules/ls/entry.h (added)
-
uspace/app/bdsh/cmds/modules/ls/ls.c (added)
-
uspace/app/bdsh/cmds/modules/ls/ls.def (added)
-
uspace/app/bdsh/cmds/modules/ls/ls.h (added)
-
uspace/app/bdsh/cmds/modules/mkdir/entry.h (added)
-
uspace/app/bdsh/cmds/modules/mkdir/mkdir.c (added)
-
uspace/app/bdsh/cmds/modules/mkdir/mkdir.def (added)
-
uspace/app/bdsh/cmds/modules/mkdir/mkdir.h (added)
-
uspace/app/bdsh/cmds/modules/module_aliases.h (added)
-
uspace/app/bdsh/cmds/modules/modules.h (added)
-
uspace/app/bdsh/cmds/modules/mount/entry.h (added)
-
uspace/app/bdsh/cmds/modules/mount/mount.c (added)
-
uspace/app/bdsh/cmds/modules/mount/mount.def (added)
-
uspace/app/bdsh/cmds/modules/mount/mount.h (added)
-
uspace/app/bdsh/cmds/modules/quit/entry.h (added)
-
uspace/app/bdsh/cmds/modules/quit/quit.c (added)
-
uspace/app/bdsh/cmds/modules/quit/quit.def (added)
-
uspace/app/bdsh/cmds/modules/quit/quit.h (added)
-
uspace/app/bdsh/cmds/modules/rm/entry.h (added)
-
uspace/app/bdsh/cmds/modules/rm/rm.c (added)
-
uspace/app/bdsh/cmds/modules/rm/rm.def (added)
-
uspace/app/bdsh/cmds/modules/rm/rm.h (added)
-
uspace/app/bdsh/cmds/modules/touch/entry.h (added)
-
uspace/app/bdsh/cmds/modules/touch/touch.c (added)
-
uspace/app/bdsh/cmds/modules/touch/touch.def (added)
-
uspace/app/bdsh/cmds/modules/touch/touch.h (added)
-
uspace/app/bdsh/config.h (added)
-
uspace/app/bdsh/errors.c (added)
-
uspace/app/bdsh/errors.h (added)
-
uspace/app/bdsh/errstr.h (added)
-
uspace/app/bdsh/exec.c (added)
-
uspace/app/bdsh/exec.h (added)
-
uspace/app/bdsh/input.c (added)
-
uspace/app/bdsh/input.h (added)
-
uspace/app/bdsh/scli.c (added)
-
uspace/app/bdsh/scli.h (added)
-
uspace/app/bdsh/util.c (added)
-
uspace/app/bdsh/util.h (added)
-
uspace/app/init/init.c (modified) (1 diff)
-
uspace/lib/libc/Makefile (modified) (1 diff)
-
uspace/lib/libc/generic/getopt.c (added)
-
uspace/lib/libc/include/getopt.h (added)
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ia32/Makefile.inc
rfa81b5f r216d6fc 50 50 $(USPACEDIR)/app/tester/tester \ 51 51 $(USPACEDIR)/app/cli/cli \ 52 $(USPACEDIR)/app/klog/klog 52 $(USPACEDIR)/app/klog/klog \ 53 $(USPACEDIR)/app/bdsh/bdsh 53 54 54 55 build: $(BASE)/image.iso -
uspace/Makefile
rfa81b5f r216d6fc 51 51 app/cli \ 52 52 app/klog \ 53 app/init 53 app/init \ 54 app/bdsh 54 55 55 56 ifeq ($(ARCH), amd64) -
uspace/app/init/init.c
rfa81b5f r216d6fc 127 127 // FIXME: spawn("/sbin/tester"); 128 128 spawn("/sbin/klog"); 129 spawn("/sbin/bdsh"); 129 130 130 131 return 0; -
uspace/lib/libc/Makefile
rfa81b5f r216d6fc 71 71 generic/ipc.c \ 72 72 generic/async.c \ 73 generic/getopt.c \ 73 74 generic/libadt/list.o \ 74 75 generic/libadt/hash_table.o \
Note:
See TracChangeset
for help on using the changeset viewer.
