aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-04-17Added some help messages.Mark Whitley
2001-04-17The tiniest of bracket-placement fixes.Mark Whitley
2001-04-17- usage.hJohn Beppu
o echo_example_usage needed to escape some backslashes in an inner quote o find_full_usage missing a \n at the end of the -name line ? getopt_full_usage the -o line has tab issues, but I didn't fix them. o length_example_usage removed some double-quotes that were within an inner quotes o printf_example_usage needed to escape a backslash in an inner quote o sort_example_usage needed to escape some backslashes and double quotes in an inner quote o tftp_full_usage s/nameing/naming/; o umount_full_usage remove colons after options for consistency w/ other full_usage messages o uniq_example_usage needed to escape some backslashes and double quotes in an inner quote - TODO xargs -l ? - docs/autodocifier.pl POD && comment updates - docs/busybox_footer.pod added Larry Doolittle and Sterling Huxley
2001-04-17Convert mount to use getopt.Matt Kraai
2001-04-17Further cleanup of mount option handling.Matt Kraai
2001-04-17Fix -a support (broken by previous patch).Matt Kraai
2001-04-17Fix segfault on `mount -t nfs' reported by Gratien D'haese.Matt Kraai
2001-04-16Several fixes from Sterling Huxley for the vi applet.Eric Andersen
2001-04-16Write full status fileGlenn L McGrath
2001-04-16dpkg improvements, use full package struct, avoid extracting to tmp dir, ↵Glenn L McGrath
rename variable. deb_extract, untar and dpkg_deb modified to make the above possible
2001-04-15Document new dpkg-deb funtionsGlenn L McGrath
2001-04-15untar changed to allow deb_extract to extract to memory, allows better ↵Glenn L McGrath
operation of dpkg-deb -f
2001-04-15NEw functions read_package_field and read_text_file_to_bufferGlenn L McGrath
2001-04-15Reads a field from a debian control (status or available) file, handles ↵Glenn L McGrath
multi-line fields.
2001-04-15Read a FILE* till an empty line or eof and return it as a char buffer.Glenn L McGrath
In future maybe add char *end_str to interface to allow calling function to specify end point.
2001-04-14Handle endian-ness. Patch from Paul J.Y. Lahaie <pjlahaie@linuxcare.com>Eric Andersen
-Erik
2001-04-13Fix infinite loop and reallocate if too many modules.Matt Kraai
2001-04-13dpkg-deb -f and partial -I commands, adds 600 bytesGlenn L McGrath
2001-04-12Fix dos2unix/tr problem noted by Larry Doolittle.Matt Kraai
2001-04-12Fix return code and don't output spurious newlines.Matt Kraai
2001-04-12Another banner consolidation from Larry Doolittle <ldoolitt@recycle.lbl.gov>.Matt Kraai
2001-04-12Fix comment.Matt Kraai
2001-04-12Use date -u instead of date --utc and consolidate version string.Matt Kraai
Patch by Larry Doolittle <ldoolitt@recycle.lbl.gov>.
2001-04-12Updates, fixes for handling contents, verbose extract.Glenn L McGrath
More updates to come
2001-04-12Rename variable that shadows globalGlenn L McGrath
2001-04-12Fix handling of '' and "".Matt Kraai
2001-04-12New dpkg-deb function -t, stands for --fsys-tarfileGlenn L McGrath
2001-04-12Change size to unsinged long long, so if -1 is passed it will read as much ↵Glenn L McGrath
as possible.
2001-04-12dpkg-deb -c works nowGlenn L McGrath
2001-04-12Fix dpkg-deb, enum's are coolGlenn L McGrath
2001-04-12remove unused clearerr statementsGlenn L McGrath
2001-04-12This belongs in dos2unix.cGlenn L McGrath
2001-04-12use tmpfile() and revert my previous changes... convert() belongs hereGlenn L McGrath
2001-04-12dos2unix and unix2dos are now independentGlenn L McGrath
2001-04-12Move convert to libbbGlenn L McGrath
2001-04-12convert() is used by dos2unix and unix2dosGlenn L McGrath
2001-04-12Moved from dos2unixGlenn L McGrath
2001-04-11Use putc, and write to stderr as the rest of the progressmeter does.Matt Kraai
2001-04-11Only finish with a newline if we are displaying the progress indicator.Matt Kraai
2001-04-11Fix behavior when extracting to stdout. Report and patch byMatt Kraai
Evin Robertson <nitfol@my-deja.com>.
2001-04-11Vladimir's patch to reverse previous patchGlenn L McGrath
2001-04-11readTarFile changed from exter nto staticGlenn L McGrath
2001-04-11Seek to start of an entry inside an ar fileGlenn L McGrath
2001-04-11dpkg, dpkg_deb dont depend on any other applets nowGlenn L McGrath
2001-04-11copy_file_chunk uses streams now.Glenn L McGrath
2001-04-11This is primarily to allow deb_extract to be independent of the tar applet.Glenn L McGrath
TODO: This function and its conterpart in tar.c should be merged
2001-04-11Remove unneeded printf statmentGlenn L McGrath
2001-04-11Disable sigtermGlenn L McGrath
2001-04-11replace getOctal with strtol( , NULL, 8)Glenn L McGrath
saves 100 Bytes
2001-04-11dpkg only dependeds on tarGlenn L McGrath