Subversion Repositories HelenOS

Rev

Go to most recent revision | Show changed files | Details | Compare with Previous | Blame | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
3287 5850 d 19 h post /branches/shell/uspace/app/bdsh/ exec: find_command() - Don't test cmd for / or . to determine if the given path is
absolute, let open figure it out. try_access() now mimics access(path, F_OK)
 
3286 5850 d 19 h post /branches/shell/uspace/app/bdsh/cmds/modules/mkdir/ Implemented basics in mkdir  
3285 5850 d 19 h post /branches/shell/uspace/app/bdsh/ Added CL_EEXISTS for mkdir  
3284 5850 d 19 h post /branches/shell/uspace/app/bdsh/cmds/ mknewcmd: Generated stub should include errors.h and config.h  
3283 5850 d 20 h post /branches/shell/uspace/app/bdsh/cmds/ mknewcmd: Generated functions should return CMD_*  
3280 5851 d 10 h post /branches/shell/uspace/app/bdsh/ Get rid of cli_free() wrapper (no longer needed), this also removes -fno-strict-aliasing  
3279 5851 d 10 h post /branches/shell/uspace/app/bdsh/ Updated GNU Makefile to pass new stuff though valgrind  
3278 5851 d 10 h post /branches/shell/uspace/app/bdsh/cmds/builtins/cd/ cd: Don't try to chdir(NULL) if no argument is given, fix help info  
3277 5851 d 11 h post /branches/shell/uspace/app/bdsh/ Add skeletal touch, mkdir, cat, rm, and ls  
3276 5851 d 11 h post /branches/shell/uspace/app/bdsh/cmds/ Modified mknewcmd shell script to get rid of autoconfisms, config.h now included by default  
3275 5851 d 11 h post /branches/shell/uspace/app/bdsh/ Remove un-needed debug printf()s, add greeting  
3270 5851 d 19 h post /branches/shell/uspace/app/init/ Add bdsh to init  
3269 5851 d 19 h post /branches/shell/uspace/app/bdsh/ cd: Don't send users to non-existent usr->home on 0 arguments, add debug noise  
3268 5851 d 21 h post /branches/shell/uspace/app/bdsh/ input: don't allocate tmp unless its needed, check before freeing.  
3267 5852 d 0 h post /branches/shell/uspace/app/bdsh/cmds/builtins/cd/ cd: Don't look for errno.h in sys/  
3265 5852 d 0 h post /branches/shell/uspace/app/bdsh/ Added initial port of simple CLI to bdsh (brain dead shell)  
3241 5861 d 16 h decky /branches/shell/ shell branch  
3224 5883 d 19 h svoboda /trunk/uspace/app/tetris/ Fix tetris :) - expecting console at a fixed phone number  
3222 5884 d 11 h svoboda /trunk/ Merge program-loader related stuff from dynload branch to trunk. (huge)  
3201 5889 d 14 h svoboda /trunk/uspace/ Do not disassemble needlessly.  
3117 5915 d 14 h svoboda /trunk/uspace/ Make getchar() and tester behave sanely when there's no console.  
3115 5915 d 14 h decky /trunk/uspace/app/klog/ wait until console is initiated  
3112 5916 d 4 h decky /trunk/uspace/ uspace klog  
3089 5919 d 12 h decky /trunk/uspace/app/ use common devmap.h  
3088 5919 d 12 h decky /trunk/uspace/app/tetris/ conding style  
2934 5938 d 9 h jermar /trunk/ Do not attempt to malloc() zero bytes of memory during VFS_READ at end of file.  
2788 5986 d 19 h jermar /trunk/uspace/ Return EBUSY if trying to mount something over an already mounted root FS.
(Contributed by Tim Post)
 
2786 5987 d 13 h decky /trunk/uspace/app/tester/ revision of 2785  
2785 5988 d 4 h jermar /trunk/uspace/app/tester/ Finish run_safe_tests() in app/tester (contributed by Tim Post).  
2763 6005 d 10 h jermar /trunk/uspace/ Support for rename().  
2755 6012 d 3 h jermar /trunk/uspace/ Add support for relative paths: chdir() and getcwd().  
2737 6026 d 6 h jermar /trunk/uspace/app/tester/vfs/ Modify the vfs1 test to excercise unlink() and rmdir().  
2717 6041 d 11 h cejka /trunk/uspace/app/ash/tools/ Ash: removed .map file commited by mistake.  
2716 6041 d 11 h cejka /trunk/uspace/app/ash/tools/ Ash: fixed recursive Makefile.  
2715 6041 d 13 h cejka /trunk/uspace/app/ash/ Ash - add recursion to Makefile to create build tools in subdirectory.  
2714 6041 d 13 h cejka /trunk/uspace/app/ash/ Initial commit of ash shell.
It cannot be compiled yet.
 
2711 6047 d 8 h jermar /trunk/uspace/ Remove the debugging hack from tmpfs_init(), which created several files and
directories on the filesystem. TMPFS is now self-sufficient enough to be able
to create its content via the standard VFS interface.
 
2710 6047 d 8 h jermar /trunk/uspace/ VFS_WRITE and tmpfs_write fixes.  
2707 6047 d 12 h jermar /trunk/uspace/ Support for mkdir().  
2699 6056 d 3 h jermar /trunk/uspace/ Finish implementation of readdir(). Functions from this family are implemented
via using file descriptors for directories. For example, readdir() is
implemented as read() from an open directory. Of course, FS implementations
must understand that they are asked to read a directory and behave accordingly.