aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Turn off the printf attribute for the ?error_msg* functions, since itandersen2001-02-222-8/+8
| | | | | | | | | is ok to pass them a NULL, unlike printf. This silences a pointless warning message. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1891 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add in kent robotti's updated dos2unix.candersen2001-02-227-83/+296
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1890 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix up Makefile -- uClibc nfs works these daysandersen2001-02-221-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1889 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Commit a few updates to the usage messages.andersen2001-02-223-282/+219
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1888 69ca8d6d-28ef-0310-b511-8ec308f3f277
* First pass at making up an automagical usage message extractor, whichandersen2001-02-221-0/+88
| | | | | | | | will be used (when it works) to autogenerate documentation. Based on code written by Mark Whitley. git-svn-id: svn://busybox.net/trunk/busybox@1887 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Account for remainder, and reset page_height for each and every page.andersen2001-02-222-8/+20
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1886 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make busybox and busybox-static conflict/replace each otherandersen2001-02-222-2/+5
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1883 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix malformed build-depends. Update list of bugs to closeandersen2001-02-222-1/+6
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@1882 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make md5sum not display filename when reading stdinandersen2001-02-222-2/+12
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@1881 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make init compile when DEBUG_INIT is enabledandersen2001-02-222-6/+4
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@1880 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Another update to the way usage messages are done by Evin Robertsonandersen2001-02-2210-5293/+2641
| | | | | | | | | <nitfol@my-deja.com>, which makes things just a little bit smaller, but makes usage.h more readable/maintainable IMHO. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1879 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Revert my change to do extra termType checking. That is done elsewhere.andersen2001-02-222-6/+0
| | | | | | | | Silly me. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1878 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Adjust the terminal height for any overlap, so that no linesandersen2001-02-222-10/+32
| | | | | | | | get lost off the top -Erik git-svn-id: svn://busybox.net/trunk/busybox@1877 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Oops! I left in my debug noise.andersen2001-02-212-6/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1874 69ca8d6d-28ef-0310-b511-8ec308f3f277
* df was totally broken. So I fixed it.andersen2001-02-212-22/+64
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@1873 69ca8d6d-28ef-0310-b511-8ec308f3f277