cbbe4d6bc2
Copy the string terminator.
2000-09-14 00:26:50 +00:00
56a328810b
Fix looping bug, use fullRead
2000-09-13 23:08:07 +00:00
b4c3c59a45
Add in BasicLinux by request
2000-09-13 23:06:41 +00:00
f8e04f7113
Added _install
2000-09-13 16:52:32 +00:00
fb6a50820c
Ensure forked processes always are on a controlling tty, so the
...
^C can be properly sent to /dev/console.
-Erik
2000-09-13 16:15:29 +00:00
d39d120998
Make syslogd ignore SIGCLD only if SIGCLD is defined. This should fix SPARC.
...
Also ignore SIGCHLD - it must have been meant.
2000-09-13 14:14:29 +00:00
5d513f7256
List of signals updated from util-linux-2.10o
...
Architecture names are no longer used - should now compile on SPARC
2000-09-13 14:03:48 +00:00
dd450a0ded
Don't fork for the . (source) command so that environment settings are
...
preserved.
2000-09-13 03:43:36 +00:00
322ae93a5e
Fix calls to {m,c,re}alloc so that they use x{m,c,re}alloc instead of
...
segfaulting or handling errors the same way themselves.
2000-09-13 02:46:14 +00:00
b89075298e
Fix unchecked calls to {m,c,re}alloc so that they print an error and
...
exit rather than segfaulting (what an improvement).
2000-09-13 02:08:21 +00:00
23ad7f7f06
Typo fix: resolv -> resolve
2000-09-12 22:05:17 +00:00
ccb0a9ba88
Formatting cleanup patch from Bryan Rittmeyer <bryan@ixiacom.com>.
...
-Erik
2000-09-12 16:20:49 +00:00
fca8050f0f
Fix .deb unpack and experimental TAR support
...
The previous ar.c fialed to recognise one record in .debs
Experimental tar support, this is currently *very* cheap because ar and
tar are functionally similar. It will need lots of testing so by
default tar support code is defined out.
To test uncomment the line "#define BB_AR_EXPERIMENTAL_UNTAR"
2000-09-11 05:25:39 +00:00
ac19b7e032
Extra defines for ar
2000-09-11 05:06:13 +00:00
49352adf9c
Simplify a few little things, and merge in a patch from
...
robotti@metconnect.com so that 'ar -xv' and 'ar -x -v'
both work.
-Erik
2000-09-11 04:55:31 +00:00
605a819a17
New dd behaviour
2000-09-11 00:33:09 +00:00
f0b073f55a
dd now truncates files at the end its write, this can be turned of by
...
specifying conv=notrunc in the command line
This conforms to GNU dd behaviour
2000-09-11 00:32:13 +00:00
de34e43755
MAke lsmod act just like modutils lsmod, by printing which modules use
...
other modules, and state info like (deleted) and such.
-Erik
2000-09-10 16:16:00 +00:00
cbb61c78ae
Make init handle current 2.4.x sysinfo behavior
...
-Erik
2000-09-10 16:13:41 +00:00
73de6561ca
Update free for current 2.4.x behavior...
...
-Erik
2000-09-10 16:10:41 +00:00
729216cb11
Remove some debugging code
2000-09-10 04:42:20 +00:00
18310f1ce3
Using seek=? used to cause part of the original file to be zero'ed, i
...
think this was caused by opening the file in truncate mode.
2000-09-10 04:39:37 +00:00
0ae8e5a645
My previous attempt to make dd use fullRead, fullWrite was very broken,
...
this should actually work.
2000-09-10 01:54:27 +00:00
bd7c67136a
remove some printf statements i forgot about
2000-09-09 15:04:34 +00:00
1c6917d2c4
Updated to match new -R ar functionality
2000-09-09 14:57:15 +00:00
e2b345a6d8
Implemented new ar functionality unique to busybox ar (i think), the -R
...
option enable a Recursive extraction (or listing) to take place.
i.e. if any files being extracted are themselves ar archives then
busybox ar will extract their contents as well.
e.g. take bar.deb and do (with GNU ar) ar -q foo.deb b.ar
then with busybox ar can do ar -x b.ar data.tar.gz
-R isnt used for anything in GNU ar so i think it should be ok, could
have used long options
This functionality will become (more) usufull with tar, gz support.
2000-09-09 14:50:04 +00:00
437bf72785
Changed getopt so that options can be grouped together, the source
...
archive is now assumed to be the first non parameter.
This is how GNU ar behaves.
2000-09-09 13:38:26 +00:00
6fb88e73f7
Fix permisions
2000-09-09 12:48:40 +00:00
8324b9f1aa
Now supports GNU style long filenames.
...
If no filenames are specifed to be (extracted/listed) it will act on
all files in the archive (i dont think the old version did this)
Code is structured to better support upcoming recursive extraction
functionality.
The old code was a bit strange in places, dont know what i was thinking.
2000-09-09 08:35:45 +00:00
11c655295c
New ls sorting patch, as written by Sterling Huxley, and then updated
...
by kent robotti. I then updated it to use my_getpwuid and my_getgrgid
(per busybox policy).
-Erik
2000-09-07 17:24:47 +00:00
44e3840343
Stop leaking file handles.
2000-09-07 04:34:17 +00:00
17c8851813
Fix more typos.
2000-09-06 03:59:49 +00:00
6085c72b6e
Reset optind so that getopt works in busybox applets called directly by sh.
...
Change the behavior of -c to correctly handle $1..$9.
2000-09-06 01:46:18 +00:00
9dd79791c8
Fixed a grammatical error.
2000-09-06 00:50:51 +00:00
ebee301c8b
Fixed for when BB_CP_MV is enabled.
2000-09-05 22:17:22 +00:00
d13ebff163
Add BB_SH to get_last_path_component()... Fix thanks to
...
Bj�rn Eriksson.
2000-09-05 21:50:52 +00:00
1eec89df4c
Apply segfault on no-args fix from robotti@metconnect.com
2000-09-05 18:21:53 +00:00
3639c5d950
Set environment variable to make ash happy. ash is a frequent enough
...
target....
2000-09-05 17:57:52 +00:00
1b355ebba6
Added expr, from Edward Betts <edward@debian.org>, with some fixups
...
and docs added by me.
-Erik
2000-09-05 17:37:48 +00:00
43c8c38bbf
Allow compilation when not using BB_FEATURE_TAR_EXCLUDE, and fix
...
handling of --exclude option.
2000-09-04 16:51:55 +00:00
61a9d8d145
Forgot this part of wget
2000-09-04 15:16:51 +00:00
9670083818
Initial implementation of wget, from Chip Rosenthal <chip@laserlink.net>.
...
Very cool. Still lacks "chunked" transfer-coding, so not totally RFC
compliant for HTTP1.1, but very nice nonethe less, and very small.
-Erik
2000-09-04 15:15:55 +00:00
b92223b6f5
Allow selective extraction and listing of files. And fix an unchecked
...
return value of realloc (with xrealloc).
2000-09-04 08:25:42 +00:00
fd50c3d2f9
Add in byld
2000-09-01 22:24:03 +00:00
cb91d69b3f
Fix compile when BB_FEATURE_LINUXRC is defined
...
-Erik
2000-09-01 18:43:02 +00:00
73bdf13d35
Fixed a stupid thinko preventing zcat from doing its job, thanks
...
to Torbj�rn Axelsson <torax@cendio.se > for the fix.
-Erik
2000-09-01 16:25:33 +00:00
3a957b9d4c
Turned off ls file-sorting till it can be fixed.
2000-09-01 16:15:51 +00:00
18a1014c95
updated some usage info from a patch from robotti@metconnect.com
...
-Erik
2000-09-01 16:12:57 +00:00
da542f3a0c
Argh. I *will* compile before checking in.
2000-09-01 02:53:01 +00:00
f446297afd
Don't unlink files if we are extracting to stdout.
2000-09-01 02:50:48 +00:00