Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Chris Larson (kergoth) writes: | Eric Andersen | 2004-02-19 | 1 | -0/+16 | |
| | | | | | | | | | | | | | I was adding -s/--symbolic-link support to busybox cp when I noticed a bug with -r/-a. Test case: mkdir -p test/out cd test busybox cp -a * out/ Will never return until we run out of open files or similar. Coreutils cp on the other hand will error with "cannot copy a directory, `out', into itself, `out'". Patch attached. | |||||
* | Patch from Matt Kraai to fix debian bug #227081 | Glenn L McGrath | 2004-01-11 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | cp does not truncate existing destinations. That is, after running echo foo > foo echo fubar > fubar cp foo fubar the contents of fubar are foo r instead of foo | |||||
* | Use low level file descriptors to match bb_copyfd_eof | Glenn L McGrath | 2003-12-20 | 1 | -20/+19 | |
| | ||||||
* | As we no longer use function pointers for read in common archiving code | Glenn L McGrath | 2003-11-21 | 1 | -1/+1 | |
| | | | | | | | archive_xread can be replaced with bb_full_read, and archive_copy_file with bb_copyfd* bb_copyfd is split into two functions bb_copyfd_size and bb_copyfd_eof, they share a common backend. | |||||
* | Vodz, last_patch_86 | Glenn L McGrath | 2003-05-26 | 1 | -4/+2 | |
| | ||||||
* | Major coreutils update. | Manuel Novoa III | 2003-03-19 | 1 | -27/+27 | |
| | ||||||
* | Merge copyfd and copy_file_chunk | Glenn L McGrath | 2002-12-13 | 1 | -1/+1 | |
| | ||||||
* | last_patch56 from vodz to simplify copy_file logic | Eric Andersen | 2002-09-17 | 1 | -74/+18 | |
| | ||||||
* | Let people force overwrite links | Eric Andersen | 2002-09-16 | 1 | -1/+1 | |
| | | | | -Erik | |||||
* | Properly honor FILEUTILS_INTERACTIVE and FILEUTILS_FORCE for | Eric Andersen | 2002-09-16 | 1 | -1/+65 | |
| | | | | | | file all file types (not just regular files and dirs). Unlink destination files when needed. -Erik | |||||
* | * libbb/copy_file.c (copy_file): Check st_dev instead of st_rdev. | Matt Kraai | 2002-06-11 | 1 | -1/+1 | |
| | ||||||
* | Make cp and mv optionally preserve hard links. | Matt Kraai | 2001-12-17 | 1 | -1/+23 | |
| | ||||||
* | Open the source before creating the destination. | Matt Kraai | 2001-12-11 | 1 | -8/+11 | |
| | ||||||
* | Major rework of the directory structure and the entire build system. | Eric Andersen | 2001-10-24 | 1 | -1/+0 | |
| | | | | -Erik | |||||
* | Invert FILEUTILS_PRESERVE_SYMLINKS into FILEUTILS_DEREFERENCE. | Matt Kraai | 2001-10-05 | 1 | -2/+2 | |
| | ||||||
* | dfp might be used uninitialized. NULL it. | Eric Andersen | 2001-08-21 | 1 | -1/+1 | |
| | ||||||
* | Add some missing includes to kill warnings when building with the default | Manuel Novoa III | 2001-06-29 | 1 | -0/+1 | |
| | | | | | | | Config.h and using gcc's -fno-builtin. There are probably other files with the similar problems. Also, if building against uClibc, don't include asm/unistd.h in syscalls.c and module_syscalls.c. | |||||
* | Copy files until EOF, not the reported file size, to deal with bad sizes in | Matt Kraai | 2001-06-11 | 1 | -3/+4 | |
| | | | | the proc filesystem. | |||||
* | Made new xreadlink function for libbb and changed applets to use it instead of | Mark Whitley | 2001-04-30 | 1 | -10/+3 | |
| | | | | readlink(2). | |||||
* | Fix user permissions of copied directories. | Matt Kraai | 2001-04-30 | 1 | -1/+8 | |
| | ||||||
* | Simplify permission handling for FIFOs. | Matt Kraai | 2001-04-30 | 1 | -12/+1 | |
| | ||||||
* | Fix exit status when there is an error copying a file. | Matt Kraai | 2001-04-30 | 1 | -1/+1 | |
| | ||||||
* | Terminate source correctly when copying symlink. Report and patch by | Matt Kraai | 2001-04-27 | 1 | -2/+3 | |
| | | | | Brian Webb <webbb@desertscenes.net>. | |||||
* | Use generic flag names. | Matt Kraai | 2001-04-24 | 1 | -9/+10 | |
| | ||||||
* | Move applet_name declaration from busybox.h to libbb.h. | Matt Kraai | 2001-04-24 | 1 | -1/+1 | |
| | ||||||
* | Rewrite cp and mv to be SUSv2 compliant. | Matt Kraai | 2001-04-23 | 1 | -143/+189 | |
| | ||||||
* | Set permissions of created file | Glenn L McGrath | 2001-04-20 | 1 | -0/+1 | |
| | ||||||
* | copy_file_chunk uses streams now. | Glenn L McGrath | 2001-04-11 | 1 | -58/+75 | |
| | ||||||
* | Convert utility.c into libbb.a. It is now a whole pile of .c | Eric Andersen | 2001-03-16 | 1 | -0/+180 | |
files. Clean up the resulting damage and fix up the makefile. -Erik |