aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* add wget, tr, telnet, ping, md5sum and loadkmap to .debdwhedon2001-03-051-6/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1968 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Enable INSTALLER for the debandersen2001-03-051-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1965 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Vladimir to make sure PATH is set correctly.andersen2001-03-042-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1963 69ca8d6d-28ef-0310-b511-8ec308f3f277
* If umount2 is not available, stub it out.andersen2001-03-041-5/+20
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1962 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Added some words on use of getopt in applets.markw2001-03-032-1/+50
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1959 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Dont try to automount some specific filesystem typesbug12001-03-022-8/+28
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1958 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Applied patch from Vladimir N. Oleynik that fixes incorrect behaviour inmarkw2001-03-022-498/+602
| | | | | | | recovery_mode and changed option processing. git-svn-id: svn://busybox.net/trunk/busybox@1957 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Removed section on testing that is now in contributing.txt.markw2001-03-021-20/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1956 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Added 'How to contribute to Busybox' doc.markw2001-03-021-0/+390
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1955 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Whoops! BB_TFTP should prolly be off by default.markw2001-03-021-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1954 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Added Magnus Damm's tftp applet to Busybox.markw2001-03-028-0/+931
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1953 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Changed exit code from -1 to 0 when busybox is invoked with no args.markw2001-03-022-2/+2
| | | | | | | (Closes bug #1114.) git-svn-id: svn://busybox.net/trunk/busybox@1952 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Applied patch from David Douthitt to fix build error in df.c whenmarkw2001-03-012-2/+2
| | | | | | | BB_FEATURE_HUMAN_READABLE was disabled. git-svn-id: svn://busybox.net/trunk/busybox@1949 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Bah. I missed a header file.andersen2001-03-012-2/+10
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1948 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Reduce the size of mount (and bypass /proc/filesystems) by using the sysfsandersen2001-03-013-124/+30
| | | | | | | | system call, based on work done by Glenn McGrath in December. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1947 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Keep trying if an NFS mount fails, and eliminate a call to exit(3).kraai2001-02-282-10/+8
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1945 69ca8d6d-28ef-0310-b511-8ec308f3f277
* libpwd was getting added twice.andersen2001-02-271-1/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1943 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Little patchlet to make linking against libc5 work a little bettermarkw2001-02-271-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1941 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Vladimir N. Oleynik to save 128 bytes by moving errorandersen2001-02-276-28/+16
| | | | | | | checking for some my_* functions to utility.c git-svn-id: svn://busybox.net/trunk/busybox@1940 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Applied patch from Magnus Damm <damm@opensource.se> to fix a 'inner scope varmarkw2001-02-262-2/+4
| | | | | | | | masking outer scope var with same name' bug that was preventing the loopback device from being unmounted if mount() fails. git-svn-id: svn://busybox.net/trunk/busybox@1938 69ca8d6d-28ef-0310-b511-8ec308f3f277
* - changed the way POD is generated such that the dashedbeppu2001-02-261-10/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | line appears at the bottom instead of the top. The indentation semantics of POD make the first item in the (=over,=back) block look weird the other way. - implemented a way to encode example usage into usage.h One would define a macro called "${applet}_example_usage" which would expand to the example text. - The example usage is considered optional, but trivial and full usage are not. Here's an example using chown. ---- before #define chown_trivial_usage \ "[OPTION]... OWNER[<.|:>[GROUP] FILE..." #define chown_full_usage \ "Change the owner and/or group of each FILE to OWNER and/or GROUP.\n" \ "\nOptions:\n" \ "\t-R\tChanges files and directories recursively." #define chown_example_usage \ "\t$ ls -l /tmp/foo\n" \ "\t-r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo\n" \ "\t$ chown root /tmp/foo\n" \ "\t$ ls -l /tmp/foo\n" \ "\t-r--r--r-- 1 root andersen 0 Apr 12 18:25 /tmp/foo\n" \ "\t$ chown root.root /tmp/foo\n" \ "\tls -l /tmp/foo\n" \ "\t-r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo\n" ---- after =item I<chown> chown [OPTION]... OWNER[<.|:>[GROUP] FILE... Change the owner and/or group of each FILE to OWNER and/or GROUP. Options: -R Changes files and directories recursively. Example: $ ls -l /tmp/foo -r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo $ chown root /tmp/foo $ ls -l /tmp/foo -r--r--r-- 1 root andersen 0 Apr 12 18:25 /tmp/foo $ chown root.root /tmp/foo ls -l /tmp/foo -r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo ------------------------------- git-svn-id: svn://busybox.net/trunk/busybox@1931 69ca8d6d-28ef-0310-b511-8ec308f3f277
* This patch, from Quinn Jensen <jensenq@lineo.com>, adds MIPS supportandersen2001-02-242-8/+254
| | | | | | | | to busybox insmod. Thanks Quinn!!! -Erik git-svn-id: svn://busybox.net/trunk/busybox@1930 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make output match the real lsmod -- print (autoclean) typeandersen2001-02-242-12/+12
| | | | | | | | stuff first not last. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1929 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Stub out the syscall, not the whole application. The stubbedandersen2001-02-242-16/+36
| | | | | | | | | out syscall sets errno properly and whines about missing kernel support. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1928 69ca8d6d-28ef-0310-b511-8ec308f3f277
* The usage message for syslogd had stuff longer then 80 chars and wrapped.andersen2001-02-243-6/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1927 69ca8d6d-28ef-0310-b511-8ec308f3f277
* ...beppu2001-02-241-3/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1925 69ca8d6d-28ef-0310-b511-8ec308f3f277
* refinementbeppu2001-02-241-12/+16
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1924 69ca8d6d-28ef-0310-b511-8ec308f3f277
* formatting ...beppu2001-02-231-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1923 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Added some documentation and made --sgml use sgml_from_usage().beppu2001-02-231-9/+24
| | | | | | | pod_from_usage() is the default generator. git-svn-id: svn://busybox.net/trunk/busybox@1922 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Another usage cleanup from kent robottiandersen2001-02-233-24/+30
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1921 69ca8d6d-28ef-0310-b511-8ec308f3f277
* During POD generation, it inserts a blank line before linesbeppu2001-02-231-5/+17
| | | | | | | that were intended to be indented. git-svn-id: svn://busybox.net/trunk/busybox@1920 69ca8d6d-28ef-0310-b511-8ec308f3f277
* More cleanupsandersen2001-02-233-51/+57
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1917 69ca8d6d-28ef-0310-b511-8ec308f3f277
* forgot to remove some debugging noisebeppu2001-02-231-3/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1916 69ca8d6d-28ef-0310-b511-8ec308f3f277
* This one should be able to deal with the USAGE macros a littlebeppu2001-02-231-3/+6
| | | | | | | more robustly. I also blow away any USAGE_NOT_\w+ macros. git-svn-id: svn://busybox.net/trunk/busybox@1915 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make HUMAN_READABLE be single argument like the others.andersen2001-02-233-27/+30
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1914 69ca8d6d-28ef-0310-b511-8ec308f3f277
* forgot a comma.beppu2001-02-231-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1913 69ca8d6d-28ef-0310-b511-8ec308f3f277
* More usage cleanups from kent robotti. I know some of these wereandersen2001-02-233-117/+117
| | | | | | | applied previously but apparently lost with some of the latest changes. git-svn-id: svn://busybox.net/trunk/busybox@1912 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix up a stupid mistake caught by David Whedon <dwhedon@gordian.com>andersen2001-02-231-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1906 69ca8d6d-28ef-0310-b511-8ec308f3f277
* space after \ make preprocessor saddwhedon2001-02-233-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1905 69ca8d6d-28ef-0310-b511-8ec308f3f277
* utility.c must include stdarg.hdwhedon2001-02-231-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1904 69ca8d6d-28ef-0310-b511-8ec308f3f277
* I can't leave it alone.beppu2001-02-231-8/+7
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1903 69ca8d6d-28ef-0310-b511-8ec308f3f277
* minor cleanup... all that's left to do isbeppu2001-02-231-5/+5
| | | | | | | | | | | | | | * make headers and footers for both the POD and SGML content * make an SGML generator * finish the command-line handling Also, some of the documentation in usage.h will have to be adjusted. expr needs some lines to be indented, and ls has a stray comma. I may have missed some things... but it looks OK for the most part. git-svn-id: svn://busybox.net/trunk/busybox@1902 69ca8d6d-28ef-0310-b511-8ec308f3f277
* This is the remixed autodocufier.pl.beppu2001-02-231-80/+175
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1901 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Stub out pivot_root so it won't fail to compile.andersen2001-02-232-4/+18
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@1900 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Somewhere along the line, MAKE_LINKS got broken, thereby breakingandersen2001-02-232-0/+8
| | | | | | | 'make install'. Fix that. git-svn-id: svn://busybox.net/trunk/busybox@1899 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Argh. I should know to compile first.andersen2001-02-231-2/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1898 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Only default to BB_FEATURE_NEW_MODULE_INTERFACE whenandersen2001-02-231-1/+1
| | | | | | | | BB_FEATURE_OLD_MODULE_INTERFACE is not defined. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1897 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make utility.c only define query_module when BB_FEATURE_NEW_MODULE_INTERFACEandersen2001-02-231-1/+2
| | | | | | | | is enabled. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1896 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Yet another fix. I think I got it this time.andersen2001-02-232-16/+20
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@1894 69ca8d6d-28ef-0310-b511-8ec308f3f277
* I should be more careful...andersen2001-02-235-7/+11
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1892 69ca8d6d-28ef-0310-b511-8ec308f3f277