blob: 3f46cbb9a3945a52464966e9e77d4fbda0d8f46d [file] [log] [blame]
Eric Andersenc9897242003-07-15 07:52:41 +00001---------------------
Eric Andersenc181f342003-12-11 02:48:15 +00002PatchSet 3568
3Date: 2003/09/12 08:03:14
Eric Andersen7a6a7732003-07-30 09:33:54 +00004Author: andersen
5Branch: HEAD
6Tag: (none)
7Log:
Eric Andersenc181f342003-12-11 02:48:15 +00008Remove version #
Eric Andersen7a6a7732003-07-30 09:33:54 +00009
10Members:
Eric Andersenc181f342003-12-11 02:48:15 +000011 docs/busybox.net/index.html:1.130->1.131
Eric Andersen96bcfd31999-11-12 01:30:18 +000012
Eric Andersena4389cf2003-09-12 04:43:49 +000013---------------------
Eric Andersenc181f342003-12-11 02:48:15 +000014PatchSet 3569
15Date: 2003/09/12 08:03:52
Eric Andersena4389cf2003-09-12 04:43:49 +000016Author: andersen
17Branch: HEAD
18Tag: (none)
19Log:
Eric Andersenc181f342003-12-11 02:48:15 +000020Final changelog update
Eric Andersena4389cf2003-09-12 04:43:49 +000021
22Members:
Eric Andersenc181f342003-12-11 02:48:15 +000023 Changelog:1.283->1.284
Eric Andersena4389cf2003-09-12 04:43:49 +000024
25---------------------
Eric Andersenc181f342003-12-11 02:48:15 +000026PatchSet 3570
27Date: 2003/09/12 08:36:46
28Author: andersen
29Branch: HEAD
30Tag: (none)
31Log:
32Fix obligitory typos
33
34Members:
35 docs/busybox.net/index.html:1.131->1.132
36
37---------------------
38PatchSet 3571
39Date: 2003/09/12 09:32:24
40Author: andersen
41Branch: HEAD
42Tag: (none)
43Log:
44Remove final \n
45
46Members:
47 util-linux/rdate.c:1.24->1.25
48
49---------------------
50PatchSet 3572
51Date: 2003/09/12 09:39:05
52Author: andersen
53Branch: HEAD
54Tag: busybox_1_00_pre3 **FUNKY**
55Log:
56As vodz just pointed out, I screwup up the call to bb_xasprintf!
57
58Members:
59 networking/ifupdown.c:1.33->1.34
60
61---------------------
62PatchSet 3573
63Date: 2003/09/12 11:58:54
Eric Andersena4389cf2003-09-12 04:43:49 +000064Author: bug1
65Branch: HEAD
66Tag: (none)
67Log:
Eric Andersenc181f342003-12-11 02:48:15 +000068Typo.
Eric Andersena4389cf2003-09-12 04:43:49 +000069
70Members:
Eric Andersenc181f342003-12-11 02:48:15 +000071 include/usage.h:1.166->1.167
Eric Andersena4389cf2003-09-12 04:43:49 +000072
73---------------------
Eric Andersenc181f342003-12-11 02:48:15 +000074PatchSet 3574
75Date: 2003/09/12 12:27:15
76Author: bug1
77Branch: HEAD
78Tag: (none)
79Log:
80Fix compile error, Vodz, last_path_113
81
82Members:
83 networking/telnetd.c:1.7->1.8
84
85---------------------
86PatchSet 3575
87Date: 2003/09/13 07:57:39
88Author: bug1
89Branch: HEAD
90Tag: (none)
91Log:
92Fix the following testcase by storing the state of the adress match with
93the command.
94# cat strings
95a
96b
97c
98d
99e
100f
101g
102# ./busybox sed '1,2d;4,$d' <strings
103c
104# ./busybox sed '4,$d;1,2d' <strings
105# sed '4,$d;1,2d' <strings
106c
107# sed '1,2d;4,$d' <strings
108c
109
110Members:
111 editors/sed.c:1.131->1.132
112
113---------------------
114PatchSet 3576
115Date: 2003/09/13 16:12:22
116Author: bug1
117Branch: HEAD
118Tag: (none)
119Log:
120Fix the following testcase by disabling global substitution if the regex
121is anchored to the start of line, there can be only one subst.
122echo "aah" | sed 's/^a/b/g'
123
124Members:
125 editors/sed.c:1.132->1.133
126
127---------------------
128PatchSet 3577
129Date: 2003/09/14 02:25:31
130Author: bug1
131Branch: HEAD
132Tag: (none)
133Log:
134Fix some memory allocation problems
135
136Members:
137 editors/sed.c:1.133->1.134
138
139---------------------
140PatchSet 3578
141Date: 2003/09/14 03:37:46
142Author: bug1
143Branch: HEAD
144Tag: (none)
145Log:
146Stupid typo
147
148Members:
149 editors/sed.c:1.134->1.135
150
151---------------------
152PatchSet 3579
153Date: 2003/09/14 05:06:12
154Author: bug1
155Branch: HEAD
156Tag: (none)
157Log:
158Patch from Rob Landley
159
160Fixed a memory leak in add_cmd/add_cmd_str by moving the allocation
161of sed_cmd down to where it's actually first needed.
162
163In get_address, if index_of_next_unescaped_regexp_delim ever failed, we
164wouldn't notice because the return value was added to idx, which was
165already guaranteed to be > 0. (This is buried in the changes made when
166I redid get_address to be based on pointer arithmetic, because all the tests
167were gratuitously dereferencing with a constant zero, which wasn't obvious.)
168
169Comment in parse_regex_delim was wrong: 's' and 'y' both call it.
170
171The reason "sed_cmd->num_backrefs = 0;" isn't needed is that sed_cmd was
172allocated with cmalloc, which zeroes memory.
173
174Different handling of space after \ in i...
175
176Different handling of pattern "s/a/b s/c/d"
177
178Cool, resursive reads don't cause a crash. :)
179
180Fixed "sed -f blah filename - < filename" since GNU sed was handling
181both - and filenames on the same line. (You can even list - more than
182once, although it's immediate EOF...)
183
184Members:
185 editors/sed.c:1.135->1.136
186
187---------------------
188PatchSet 3580
189Date: 2003/09/14 07:01:14
190Author: bug1
191Branch: HEAD
192Tag: (none)
193Log:
194Fix branching commands.
195
196If a label isnt specified, jump to end of script, not the last command
197in the script.
198
199Print an error and exit if you try and jump to a non-existant label
200
201Works for the following testcase
202# cat strings
203a
204b
205c
206d
207e
208f
209g
210# cat strings | ./busybox sed -n '/d/b;p'
211a
212b
213c
214e
215f
216g
217
218Members:
219 editors/sed.c:1.136->1.137
220
221---------------------
222PatchSet 3581
223Date: 2003/09/14 08:59:28
224Author: bug1
225Branch: HEAD
226Tag: (none)
227Log:
228Preserve substitution flag value within the current line.
229Fixed the following testcase
230# cat strings |./busybox sed -n -f test3.sed
2311
2321
2332
234c
235c
236# cat strings
237a
238b
239c
240
241Members:
242 editors/sed.c:1.137->1.138
243
244---------------------
245PatchSet 3582
246Date: 2003/09/14 09:52:53
247Author: bug1
248Branch: HEAD
249Tag: (none)
250Log:
251The previous fix for 's/a/1/;s/b/2/;t one;p;:one;p' broke the case of
252echo fooba | ./busybox sed -n 's/foo//;s/bar/found/p'
253
254I really need to start adding these tests to the testsuite.
255
256keep the substituted and altered flags seperate
257
258Members:
259 editors/sed.c:1.138->1.139
260
261---------------------
262PatchSet 3583
263Date: 2003/09/14 10:38:24
264Author: bug1
265Branch: HEAD
266Tag: (none)
267Log:
268Add two new tests, sed-recurses-properly should always work
269
270Members:
271 testsuite/sed/sed-branch:INITIAL->1.1
272 testsuite/sed/sed-chains-substs2:INITIAL->1.1
273 testsuite/sed/sed-recurses-properly:1.4->1.5
274
275---------------------
276PatchSet 3584
277Date: 2003/09/14 12:10:08
278Author: bug1
279Branch: HEAD
280Tag: (none)
281Log:
282Update sed branch tests
283
284Members:
285 testsuite/sed/sed-branch:1.1->1.2
286 testsuite/sed/sed-branch-conditional:INITIAL->1.1
287 testsuite/sed/sed-branch-no-label:INITIAL->1.1
288
289---------------------
290PatchSet 3585
291Date: 2003/09/14 16:24:18
292Author: bug1
293Branch: HEAD
294Tag: (none)
295Log:
296Cleanup memory usage
297
298Members:
299 editors/sed.c:1.139->1.140
300
301---------------------
302PatchSet 3586
303Date: 2003/09/14 17:28:08
304Author: bug1
305Branch: HEAD
306Tag: (none)
307Log:
308Memory cleanups and fix for `echo "foo" | sed 's/foo/bar/;H;q'`
309
310Members:
311 editors/sed.c:1.140->1.141
312
313---------------------
314PatchSet 3587
315Date: 2003/09/15 04:37:32
316Author: bug1
317Branch: HEAD
318Tag: (none)
319Log:
320Update Matteo Croce's email address
321
322Members:
323 miscutils/hdparm.c:1.4->1.5
324
325---------------------
326PatchSet 3588
327Date: 2003/09/15 05:41:17
328Author: bug1
329Branch: HEAD
330Tag: (none)
331Log:
332Check sed doesnt go into an infinite loop (yes it does)
333
334Members:
335 testsuite/sed/sed-branch-conditional2:INITIAL->1.1
336
337---------------------
338PatchSet 3589
339Date: 2003/09/15 05:55:29
340Author: bug1
341Branch: HEAD
342Tag: (none)
343Log:
344Fix recursion problem
345
346Members:
347 editors/sed.c:1.141->1.142
348
349---------------------
350PatchSet 3590
351Date: 2003/09/15 06:35:47
352Author: bug1
353Branch: HEAD
354Tag: (none)
355Log:
356Test the N command
357
358Members:
359 testsuite/sed/sed-append-next-line:INITIAL->1.1
360
361---------------------
362PatchSet 3591
363Date: 2003/09/15 06:42:05
364Author: bug1
365Branch: HEAD
366Tag: (none)
367Log:
368Fix for the sed-append-next-line test
369
370Members:
371 editors/sed.c:1.142->1.143
372
373---------------------
374PatchSet 3592
375Date: 2003/09/15 06:53:28
376Author: bug1
377Branch: HEAD
378Tag: (none)
379Log:
380Test for use of newline in regex's, this feature is used by most
381configure scripts.
382
383Members:
384 testsuite/sed/sed-regex-match-newline:INITIAL->1.1
385
386---------------------
387PatchSet 3593
388Date: 2003/09/15 07:12:53
389Author: bug1
390Branch: HEAD
391Tag: (none)
392Log:
393A test and fix for the sed 'n' command
394
395Members:
396 editors/sed.c:1.143->1.144
397 testsuite/sed/sed-next-line:INITIAL->1.1
398
399---------------------
400PatchSet 3594
401Date: 2003/09/15 07:28:40
402Author: bug1
403Branch: HEAD
404Tag: (none)
405Log:
406Add a test for the 'P' command and fix current implementation so it
407doesnt permanently modify the pattern space.
408
409Members:
410 editors/sed.c:1.144->1.145
411 testsuite/sed/sed-write-to-stdout:INITIAL->1.1
412
413---------------------
414PatchSet 3595
415Date: 2003/09/15 09:06:15
Eric Andersena4389cf2003-09-12 04:43:49 +0000416Author: andersen
417Branch: HEAD
418Tag: (none)
419Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000420Do not shadow the global name 'accept'
Eric Andersena4389cf2003-09-12 04:43:49 +0000421
422Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000423 archival/dpkg.c:1.72->1.73
Eric Andersena4389cf2003-09-12 04:43:49 +0000424
425---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000426PatchSet 3596
427Date: 2003/09/15 09:11:29
Eric Andersena4389cf2003-09-12 04:43:49 +0000428Author: andersen
429Branch: HEAD
430Tag: (none)
431Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000432comparison was always false due to limited range of data types.
433Carefully cast to unsigned long long prior to multiply to get
434the expected result.
Eric Andersena4389cf2003-09-12 04:43:49 +0000435
436Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000437 init/init.c:1.196->1.197
Eric Andersena4389cf2003-09-12 04:43:49 +0000438
439---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000440PatchSet 3597
441Date: 2003/09/15 09:12:53
Eric Andersena4389cf2003-09-12 04:43:49 +0000442Author: andersen
443Branch: HEAD
444Tag: (none)
445Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000446Needs prototype for close()
447
448Members:
449 util-linux/freeramdisk.c:1.23->1.24
450
451---------------------
452PatchSet 3598
453Date: 2003/09/15 09:13:43
454Author: andersen
455Branch: HEAD
456Tag: (none)
457Log:
458fix function prototype
459
460Members:
461 util-linux/rdate.c:1.25->1.26
462
463---------------------
464PatchSet 3599
465Date: 2003/09/15 09:33:34
466Author: andersen
467Branch: HEAD
468Tag: (none)
469Log:
470Be entirely consistant when using ioctl(0, TIOCGWINSZ, &winsize)
471to ensure proper fallback behavior on, i.e. serial consoles.
Eric Andersena4389cf2003-09-12 04:43:49 +0000472 -Erik
473
474Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000475 coreutils/ls.c:1.99->1.100
476 editors/vi.c:1.28->1.29
477 include/libbb.h:1.111->1.112
478 libbb/get_terminal_width_height.c:INITIAL->1.1
479 networking/telnet.c:1.37->1.38
480 networking/wget.c:1.59->1.60
481 procps/ps.c:1.50->1.51
482 procps/top.c:1.7->1.8
483 shell/cmdedit.c:1.82->1.83
484 util-linux/more.c:1.57->1.58
Eric Andersena4389cf2003-09-12 04:43:49 +0000485
486---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000487PatchSet 3600
488Date: 2003/09/15 10:22:04
Eric Andersena4389cf2003-09-12 04:43:49 +0000489Author: bug1
490Branch: HEAD
491Tag: (none)
492Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000493Fix some memory allocation problems
Eric Andersena4389cf2003-09-12 04:43:49 +0000494----------------------------------------------------------------------
495
496Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000497 editors/sed.c:1.145->1.146
Eric Andersena4389cf2003-09-12 04:43:49 +0000498
499---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000500PatchSet 3601
501Date: 2003/09/15 13:00:19
Eric Andersena4389cf2003-09-12 04:43:49 +0000502Author: bug1
503Branch: HEAD
504Tag: (none)
505Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000506Patch by Jean Wolter to fix a bug where a script wouldnt be executed
507unless it had #!/bin/sh in the first line
508
509"It correctly locates the script, tries to execute it via execve which
510fails. After that it tries to hand it over to /bin/sh which fails too,
511since ash
512
513 - neither provides the absolute pathname to /bin/sh
514 - nor tries to lookup the script via PATH if called as "sh script"
515"
Eric Andersena4389cf2003-09-12 04:43:49 +0000516
517Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000518 shell/ash.c:1.78->1.79
Eric Andersena4389cf2003-09-12 04:43:49 +0000519
520---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000521PatchSet 3602
522Date: 2003/09/15 13:07:46
Eric Andersena4389cf2003-09-12 04:43:49 +0000523Author: bug1
524Branch: HEAD
525Tag: (none)
526Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000527Fix a simple mistake with pattern space, and add a test for it
Eric Andersena4389cf2003-09-12 04:43:49 +0000528
529Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000530 editors/sed.c:1.146->1.147
531 testsuite/sed/sed-append-hold-space-to-pattern-space:INITIAL->1.1
Eric Andersena4389cf2003-09-12 04:43:49 +0000532
533---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000534PatchSet 3603
535Date: 2003/09/15 15:22:37
Eric Andersena4389cf2003-09-12 04:43:49 +0000536Author: bug1
537Branch: HEAD
538Tag: (none)
539Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000540Patch from Tito, Reduces the size of busybox's strings applet from 1900 to
5411788 bytes (for strings.o).
Eric Andersena4389cf2003-09-12 04:43:49 +0000542
543Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000544 miscutils/strings.c:1.11->1.12
Eric Andersena4389cf2003-09-12 04:43:49 +0000545
546---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000547PatchSet 3604
548Date: 2003/09/15 15:42:39
Eric Andersena4389cf2003-09-12 04:43:49 +0000549Author: bug1
550Branch: HEAD
551Tag: (none)
552Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000553Patch from Bastian Blank to fix a problem when runing find under ash.
554
555"If the shell is compiled with -DJOBS, this is all fine -- find wasn't
556stopped (it was killed), so it correctly uses WTERMSIG instead of WSTOPSIG.
557However, if the shell _isn't_ compiled with -DJOBS (which it isn't in d-i),
558only WSTOPSIG is used, which extracts the high byte instead of the low
559byte from the status code. Since the status code is 13 (SIGPIPE), "st"
560suddenly gets the value 0, which is equivalent to SIGEXIT. Thus, ash prints
561out "EXIT" on find's exit."
Eric Andersena4389cf2003-09-12 04:43:49 +0000562
563Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000564 shell/ash.c:1.79->1.80
Eric Andersena4389cf2003-09-12 04:43:49 +0000565
566---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000567PatchSet 3605
568Date: 2003/09/15 16:00:43
Eric Andersena4389cf2003-09-12 04:43:49 +0000569Author: bug1
570Branch: HEAD
571Tag: (none)
572Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000573Patch from Stephane Billiart to fix an unused variable warning.
Eric Andersena4389cf2003-09-12 04:43:49 +0000574
575Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000576 networking/httpd.c:1.16->1.17
Eric Andersena4389cf2003-09-12 04:43:49 +0000577
578---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000579PatchSet 3606
580Date: 2003/09/16 01:50:36
Eric Andersena4389cf2003-09-12 04:43:49 +0000581Author: bug1
582Branch: HEAD
583Tag: (none)
584Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000585Compile get_terminal_width_height
Eric Andersena4389cf2003-09-12 04:43:49 +0000586
587Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000588 libbb/Makefile.in:1.27->1.28
Eric Andersena4389cf2003-09-12 04:43:49 +0000589
590---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000591PatchSet 3607
592Date: 2003/09/16 02:46:34
Eric Andersena4389cf2003-09-12 04:43:49 +0000593Author: bug1
594Branch: HEAD
595Tag: (none)
596Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000597Fix a bug that creapt in recently with substitution subprinting, and add
598a test for it.
Eric Andersena4389cf2003-09-12 04:43:49 +0000599
600Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000601 editors/sed.c:1.147->1.148
602 testsuite/sed/sed-subst-subprint:INITIAL->1.1
Eric Andersena4389cf2003-09-12 04:43:49 +0000603
604---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000605PatchSet 3608
606Date: 2003/09/16 06:25:40
Eric Andersena4389cf2003-09-12 04:43:49 +0000607Author: bug1
608Branch: HEAD
609Tag: (none)
610Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000611Configuration option to define wether to follows GNU sed's behaviour
612or the posix standard.
613Put the cleanup code back the way it was.
Eric Andersena4389cf2003-09-12 04:43:49 +0000614
615Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000616 editors/Config.in:1.6->1.7
617 editors/sed.c:1.148->1.149
618 libbb/get_line_from_file.c:1.5->1.6
619 testsuite/sed/sed-append-next-line:1.1->1.2
620 testsuite/sed/sed-append-next-line-gnu:INITIAL->1.1
Eric Andersena4389cf2003-09-12 04:43:49 +0000621
622---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000623PatchSet 3609
624Date: 2003/09/17 01:22:26
Eric Andersena4389cf2003-09-12 04:43:49 +0000625Author: bug1
626Branch: HEAD
627Tag: (none)
628Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000629Patch by Junio C Hamano to workaround a gcc compiler bug.
630
631The construct certain vintages of GCC (the one I have trouble
632with is 3.2.3) have trouble with looks like the following:
633
634 static struct st a;
635 static struct st *p = &a;
636 struct st { int foo; };
637 static void init(void) { a.foo = 0; }
638
639The problem disappears if we move the struct declaration up to
640let the compiler know the shape of the struct before the first
641definition uses it, like this:
642
643 struct st { int foo; }; /* this has been moved up */
644 static struct st a;
645 static struct st *p = &a;
646 static void init(void) { a.foo = 0; }
Eric Andersena4389cf2003-09-12 04:43:49 +0000647
648Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000649 shell/ash.c:1.80->1.81
Eric Andersena4389cf2003-09-12 04:43:49 +0000650
651---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000652PatchSet 3610
653Date: 2003/09/20 01:59:35
Eric Andersena4389cf2003-09-12 04:43:49 +0000654Author: bug1
655Branch: HEAD
656Tag: (none)
657Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000658Patch by Steinar H. Gunderson to fix debian bug #211675.
659Linking to my_getgrnam from libpwdgrp wasnt working, instead it was
660trying to use functionality from glibc, which pulled in libnss.
Eric Andersena4389cf2003-09-12 04:43:49 +0000661
662Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000663 Makefile:1.286->1.287
Eric Andersena4389cf2003-09-12 04:43:49 +0000664
665---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000666PatchSet 3611
667Date: 2003/09/24 04:22:54
Eric Andersena4389cf2003-09-12 04:43:49 +0000668Author: bug1
669Branch: HEAD
670Tag: (none)
671Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000672Add the "install" applet, move get_ug_id to libbb as its used by chown,
673chgrp and install.
Eric Andersena4389cf2003-09-12 04:43:49 +0000674
675Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000676 coreutils/Config.in:1.15->1.16
677 coreutils/Makefile.in:1.4->1.5
678 coreutils/chgrp.c:1.15->1.16
679 coreutils/chown.c:1.24->1.25
680 coreutils/install.c:INITIAL->1.1
681 include/applets.h:1.104->1.105
682 include/libbb.h:1.112->1.113
683 include/usage.h:1.167->1.168
684 libbb/Makefile.in:1.28->1.29
685 libbb/get_ug_id.c:INITIAL->1.1
Eric Andersena4389cf2003-09-12 04:43:49 +0000686
687---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000688PatchSet 3612
689Date: 2003/09/24 06:00:29
Eric Andersena4389cf2003-09-12 04:43:49 +0000690Author: bug1
691Branch: HEAD
692Tag: (none)
693Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000694Add the -d option
Eric Andersena4389cf2003-09-12 04:43:49 +0000695
696Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000697 coreutils/install.c:1.1->1.2
Eric Andersena4389cf2003-09-12 04:43:49 +0000698
699---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000700PatchSet 3613
701Date: 2003/09/24 11:23:39
Eric Andersena4389cf2003-09-12 04:43:49 +0000702Author: bug1
703Branch: HEAD
704Tag: (none)
705Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000706Fix some typo's, remove some extra free statements
Eric Andersena4389cf2003-09-12 04:43:49 +0000707
708Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000709 editors/sed.c:1.149->1.150
Eric Andersena4389cf2003-09-12 04:43:49 +0000710
711---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000712PatchSet 3614
713Date: 2003/09/24 16:30:44
Eric Andersena4389cf2003-09-12 04:43:49 +0000714Author: bug1
715Branch: HEAD
716Tag: (none)
717Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000718Syncronise with debian busybox-cvs package
Eric Andersena4389cf2003-09-12 04:43:49 +0000719
720Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000721 debian/changelog:1.37->1.38
722 debian/config-deb:1.8->1.9
723 debian/config-net-udeb:1.3->1.4
724 debian/config-net-udeb-i386:1.4->1.5
725 debian/config-net-udeb-linux-i386:INITIAL->1.1
726 debian/config-static:1.11->1.12
727 debian/config-udeb:1.15->1.16
728 debian/config-udeb-i386:1.4->1.5
729 debian/config-udeb-linux-i386:INITIAL->1.1
Eric Andersena4389cf2003-09-12 04:43:49 +0000730
731---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000732PatchSet 3615
733Date: 2003/09/24 16:48:29
Eric Andersena4389cf2003-09-12 04:43:49 +0000734Author: bug1
735Branch: HEAD
736Tag: (none)
737Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000738Use a variable for the config files, makes it easier to syncronise with
739debian builds
Eric Andersena4389cf2003-09-12 04:43:49 +0000740
741Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000742 Makefile:1.287->1.288
Eric Andersena4389cf2003-09-12 04:43:49 +0000743
744---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000745PatchSet 3616
746Date: 2003/09/26 01:33:18
Eric Andersena4389cf2003-09-12 04:43:49 +0000747Author: bug1
748Branch: HEAD
749Tag: (none)
750Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000751Patch by Fillod Stephane, declare variables as static to not clobber
752busybox namespace
Eric Andersena4389cf2003-09-12 04:43:49 +0000753
754Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000755 networking/arping.c:1.5->1.6
Eric Andersena4389cf2003-09-12 04:43:49 +0000756
757---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000758PatchSet 3617
759Date: 2003/09/26 01:49:05
Eric Andersena4389cf2003-09-12 04:43:49 +0000760Author: bug1
761Branch: HEAD
762Tag: (none)
763Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000764add size parameter to syslogd -C
765Patch by Padraig, resubmitted by Fillod Stephane
Eric Andersena4389cf2003-09-12 04:43:49 +0000766
767Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000768 sysklogd/syslogd.c:1.102->1.103
Eric Andersena4389cf2003-09-12 04:43:49 +0000769
770---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000771PatchSet 3618
772Date: 2003/09/26 02:03:16
Eric Andersena4389cf2003-09-12 04:43:49 +0000773Author: bug1
774Branch: HEAD
775Tag: (none)
776Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000777Patch from Fillod Stephane
778Add follow mode to logread, ala "tail -f /var/log/messages"
779Note: output to a slow serial terminal can have side effects
780on syslog because of the semaphore. In such case, define
781RC_LOGREAD.
Eric Andersena4389cf2003-09-12 04:43:49 +0000782
783Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000784 sysklogd/logread.c:1.12->1.13
Eric Andersena4389cf2003-09-12 04:43:49 +0000785
786---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000787PatchSet 3619
788Date: 2003/09/26 11:45:55
Eric Andersena4389cf2003-09-12 04:43:49 +0000789Author: bug1
790Branch: HEAD
791Tag: (none)
792Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000793Patch by Guillaume Morin
794Fix two race conditions, as described at.
795http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=212764
Eric Andersena4389cf2003-09-12 04:43:49 +0000796
797Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000798 init/init.c:1.197->1.198
Eric Andersena4389cf2003-09-12 04:43:49 +0000799
800---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000801PatchSet 3620
802Date: 2003/10/01 04:06:14
Eric Andersena4389cf2003-09-12 04:43:49 +0000803Author: bug1
804Branch: HEAD
805Tag: (none)
806Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000807Patch by Rob Landley, work in progress update, fixes lots of bugs,
808introduces a few others (but they are being worked on)
Eric Andersena4389cf2003-09-12 04:43:49 +0000809
810Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000811 editors/Config.in:1.7->1.8
812 editors/sed.c:1.150->1.151
813 include/libbb.h:1.113->1.114
Eric Andersena4389cf2003-09-12 04:43:49 +0000814
815---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000816PatchSet 3621
817Date: 2003/10/01 07:45:11
Eric Andersena4389cf2003-09-12 04:43:49 +0000818Author: bug1
819Branch: HEAD
820Tag: (none)
821Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000822Patch by Rob Landley, fix "newline after edit command"
Eric Andersena4389cf2003-09-12 04:43:49 +0000823
824Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000825 editors/sed.c:1.151->1.152
Eric Andersena4389cf2003-09-12 04:43:49 +0000826
827---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000828PatchSet 3622
829Date: 2003/10/01 11:26:23
Eric Andersena4389cf2003-09-12 04:43:49 +0000830Author: bug1
831Branch: HEAD
832Tag: (none)
833Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000834Patch from Rob Landley to fix backrefs
Eric Andersena4389cf2003-09-12 04:43:49 +0000835
836Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000837 editors/sed.c:1.152->1.153
Eric Andersena4389cf2003-09-12 04:43:49 +0000838
839---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000840PatchSet 3623
841Date: 2003/10/01 12:33:46
Eric Andersena4389cf2003-09-12 04:43:49 +0000842Author: bug1
843Branch: HEAD
844Tag: (none)
845Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000846Thomas Lundquist, update for current structure
Eric Andersena4389cf2003-09-12 04:43:49 +0000847
848Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000849 docs/new-applet-HOWTO.txt:1.7->1.8
Eric Andersena4389cf2003-09-12 04:43:49 +0000850
851---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000852PatchSet 3624
853Date: 2003/10/02 15:33:23
Eric Andersena4389cf2003-09-12 04:43:49 +0000854Author: bug1
855Branch: HEAD
856Tag: (none)
857Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000858Fix -C option when creating tar files.
859Need to chdir after the tar file is opened, so make common tar filename
860parsing and send the file descriptor rather than filename to
861writeTarFile.
862Modify the verboseFlag operation to determine wether to display on
863stderr or stdout at display time, simpler than doing it in tar_main.
Eric Andersena4389cf2003-09-12 04:43:49 +0000864
865Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000866 archival/tar.c:1.177->1.178
Eric Andersena4389cf2003-09-12 04:43:49 +0000867
868---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000869PatchSet 3625
870Date: 2003/10/03 04:25:30
Eric Andersena4389cf2003-09-12 04:43:49 +0000871Author: bug1
872Branch: HEAD
873Tag: (none)
874Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000875Patch from Rob Landley, Simplify organisation of arguments.
Eric Andersena4389cf2003-09-12 04:43:49 +0000876
877Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000878 applets/busybox.c:1.139->1.140
Eric Andersena4389cf2003-09-12 04:43:49 +0000879
880---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000881PatchSet 3626
882Date: 2003/10/03 08:51:30
Eric Andersena4389cf2003-09-12 04:43:49 +0000883Author: bug1
884Branch: HEAD
885Tag: (none)
886Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000887argc has already been decremented
Eric Andersena4389cf2003-09-12 04:43:49 +0000888
889Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000890 applets/busybox.c:1.140->1.141
Eric Andersena4389cf2003-09-12 04:43:49 +0000891
892---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000893PatchSet 3627
894Date: 2003/10/03 09:28:59
Eric Andersena4389cf2003-09-12 04:43:49 +0000895Author: bug1
896Branch: HEAD
897Tag: (none)
898Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000899Patch by Rob Landley, fix warning
Eric Andersena4389cf2003-09-12 04:43:49 +0000900
901Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000902 scripts/config/confdata.c:1.3->1.4
Eric Andersena4389cf2003-09-12 04:43:49 +0000903
904---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000905PatchSet 3628
906Date: 2003/10/03 11:50:56
Eric Andersena4389cf2003-09-12 04:43:49 +0000907Author: bug1
908Branch: HEAD
909Tag: (none)
910Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000911Vodz, last_patch_114
912- env vars CONTENT_TYPE, CONTENT_LENGTH, HTTPD_REFERER, REMOTE_USER and
913AUTH_TYPE(Basic always).
914- POST data pipied now (previous version have loading into memory may be
915big size data and reducing with hardcoded limit)
916- removed $CGI_foo environment variables, else my have rubbish
917enviroment if POST data have big binary file
Eric Andersena4389cf2003-09-12 04:43:49 +0000918
919Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000920 networking/httpd.c:1.17->1.18
Eric Andersena4389cf2003-09-12 04:43:49 +0000921
922---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000923PatchSet 3629
924Date: 2003/10/03 14:15:44
Eric Andersena4389cf2003-09-12 04:43:49 +0000925Author: bug1
926Branch: HEAD
927Tag: (none)
928Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000929Dont mix xarg options with utility option, fixes example of
930`echo "README" | xargs ls -al`
931Dont specify a path for the default behaviour of echo
932args allocated space for an extra ptr
933Use defines for the different options
Eric Andersena4389cf2003-09-12 04:43:49 +0000934
935Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000936 findutils/xargs.c:1.26->1.27
Eric Andersena4389cf2003-09-12 04:43:49 +0000937
938---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000939PatchSet 3630
940Date: 2003/10/03 14:21:10
Eric Andersena4389cf2003-09-12 04:43:49 +0000941Author: bug1
942Branch: HEAD
943Tag: (none)
944Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000945Reverse my previous changes and make a note about why its dont this way
Eric Andersena4389cf2003-09-12 04:43:49 +0000946
947Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000948 applets/busybox.c:1.141->1.142
Eric Andersena4389cf2003-09-12 04:43:49 +0000949
950---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000951PatchSet 3631
952Date: 2003/10/04 01:05:47
Eric Andersena4389cf2003-09-12 04:43:49 +0000953Author: bug1
954Branch: HEAD
955Tag: (none)
956Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000957Woops, the previous patch reversal wasnt complete, breaking everything.
Eric Andersena4389cf2003-09-12 04:43:49 +0000958
959Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000960 applets/busybox.c:1.142->1.143
Eric Andersena4389cf2003-09-12 04:43:49 +0000961
962---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000963PatchSet 3632
964Date: 2003/10/04 06:27:56
Eric Andersena4389cf2003-09-12 04:43:49 +0000965Author: bug1
966Branch: HEAD
967Tag: (none)
968Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000969Patch from Rob Landley;
970Moving on to building diffutils, busybox sed needs this patch to get
971past the first problem. (Passing it a multi-line command line argument
972with -e works, but if you don't use -e it doesn't break up the multiple
973lines...)
Eric Andersena4389cf2003-09-12 04:43:49 +0000974
975Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000976 editors/sed.c:1.153->1.154
Eric Andersena4389cf2003-09-12 04:43:49 +0000977
978---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000979PatchSet 3633
980Date: 2003/10/04 15:44:27
Eric Andersena4389cf2003-09-12 04:43:49 +0000981Author: bug1
982Branch: HEAD
983Tag: (none)
984Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000985Add the x, n, s and E options, remove -r as its expected behaviour.
Eric Andersena4389cf2003-09-12 04:43:49 +0000986
987Members:
Eric Andersenc181f342003-12-11 02:48:15 +0000988 findutils/xargs.c:1.27->1.28
Eric Andersena4389cf2003-09-12 04:43:49 +0000989
990---------------------
Eric Andersenc181f342003-12-11 02:48:15 +0000991PatchSet 3634
992Date: 2003/10/06 14:23:04
Eric Andersena4389cf2003-09-12 04:43:49 +0000993Author: bug1
994Branch: HEAD
995Tag: (none)
996Log:
Eric Andersenc181f342003-12-11 02:48:15 +0000997Vodz last_patch_105 without his xargs patch which doenst apply cleanly
Eric Andersena4389cf2003-09-12 04:43:49 +0000998
999Members:
Eric Andersenc181f342003-12-11 02:48:15 +00001000 libbb/getopt_ulflags.c:1.2->1.3
1001 networking/httpd.c:1.18->1.19
Eric Andersena4389cf2003-09-12 04:43:49 +00001002
1003---------------------
Eric Andersenc181f342003-12-11 02:48:15 +00001004PatchSet 3635
1005Date: 2003/10/09 08:22:59
Eric Andersena4389cf2003-09-12 04:43:49 +00001006Author: bug1
1007Branch: HEAD
1008Tag: (none)
1009Log:
Eric Andersenc181f342003-12-11 02:48:15 +00001010Comaptability with gcc-2.95
Eric Andersena4389cf2003-09-12 04:43:49 +00001011
1012Members:
Eric Andersenc181f342003-12-11 02:48:15 +00001013 editors/sed.c:1.154->1.155
Eric Andersena4389cf2003-09-12 04:43:49 +00001014
1015---------------------
Eric Andersenc181f342003-12-11 02:48:15 +00001016PatchSet 3636
1017Date: 2003/10/09 08:28:22
Eric Andersena4389cf2003-09-12 04:43:49 +00001018Author: bug1
1019Branch: HEAD
1020Tag: (none)
1021Log:
Eric Andersenc181f342003-12-11 02:48:15 +00001022Patch from Tito, size optimisation and fix error in exit code of -V
1023option
Eric Andersena4389cf2003-09-12 04:43:49 +00001024
1025Members:
Eric Andersenc181f342003-12-11 02:48:15 +00001026 miscutils/hdparm.c:1.5->1.6
Eric Andersena4389cf2003-09-12 04:43:49 +00001027
1028---------------------
Eric Andersenc181f342003-12-11 02:48:15 +00001029PatchSet 3637
1030Date: 2003/10/09 09:18:36
Eric Andersena4389cf2003-09-12 04:43:49 +00001031Author: andersen
1032Branch: HEAD
1033Tag: (none)
1034Log:
Eric Andersenc181f342003-12-11 02:48:15 +00001035Fix some warnings that have crept in recently
Eric Andersena4389cf2003-09-12 04:43:49 +00001036
1037Members:
Eric Andersenc181f342003-12-11 02:48:15 +00001038 editors/sed.c:1.155->1.156
Eric Andersena4389cf2003-09-12 04:43:49 +00001039
1040---------------------
Eric Andersenc181f342003-12-11 02:48:15 +00001041PatchSet 3638
1042Date: 2003/10/09 09:35:41
Eric Andersena4389cf2003-09-12 04:43:49 +00001043Author: andersen
1044Branch: HEAD
1045Tag: (none)
1046Log:
Eric Andersenc181f342003-12-11 02:48:15 +00001047We did not have a safe_write, which is the analog to safe_read. Convert
1048full_write to use safe_write internally, which is needed to guarantee proper
1049behavior, i.e. when writing to a pipe.
Eric Andersena4389cf2003-09-12 04:43:49 +00001050
1051Members:
Eric Andersenc181f342003-12-11 02:48:15 +00001052 include/libbb.h:1.114->1.115
1053 libbb/full_write.c:1.4->1.5
1054 libbb/safe_write.c:INITIAL->1.1
Eric Andersena4389cf2003-09-12 04:43:49 +00001055
1056---------------------
Eric Andersenc181f342003-12-11 02:48:15 +00001057PatchSet 3639
1058Date: 2003/10/09 10:43:17
Eric Andersena4389cf2003-09-12 04:43:49 +00001059Author: andersen
1060Branch: HEAD
1061Tag: (none)
1062Log:
Eric Andersenc181f342003-12-11 02:48:15 +00001063Arnd Ben Otto writes:
1064
1065Hi Eric
1066
1067I have written a small patch for the Busybox syslogd. With this patch
1068one can limit the size of the messagfile. As soon as the limit is
1069reached the syslogd can rotate or purge the messagefile(s) on his own.
1070There is no necessity to use an external rotatescript.
1071
1072Even if logread does something similar, its very handy to have some
1073messagefile after your box crash.
1074
1075I wrote this patch initial vor BB 0.6x where no cron daemon was avail.
1076Now I adapted it for the new Version and i hope it is still useful. At
1077least I still use it :-)
1078
1079bye
1080Arnd
Eric Andersena4389cf2003-09-12 04:43:49 +00001081
1082Members:
Eric Andersenc181f342003-12-11 02:48:15 +00001083 include/usage.h:1.168->1.169
1084 sysklogd/Config.in:1.3->1.4
1085 sysklogd/syslogd.c:1.103->1.104
Eric Andersena4389cf2003-09-12 04:43:49 +00001086
1087---------------------
Eric Andersenc181f342003-12-11 02:48:15 +00001088PatchSet 3640
1089Date: 2003/10/09 12:06:45
Eric Andersena4389cf2003-09-12 04:43:49 +00001090Author: bug1
1091Branch: HEAD
1092Tag: (none)
1093Log:
Eric Andersenc181f342003-12-11 02:48:15 +00001094Bugfix for xargs
Eric Andersena4389cf2003-09-12 04:43:49 +00001095
1096Members:
Eric Andersenc181f342003-12-11 02:48:15 +00001097 findutils/Config.in:1.6->1.7
1098 findutils/xargs.c:1.28->1.29
Eric Andersena4389cf2003-09-12 04:43:49 +00001099
Eric Andersenaa2afee2003-09-12 07:03:52 +00001100---------------------
Eric Andersenc181f342003-12-11 02:48:15 +00001101PatchSet 3641
1102Date: 2003/10/09 12:38:43
Eric Andersenaa2afee2003-09-12 07:03:52 +00001103Author: bug1
1104Branch: HEAD
1105Tag: (none)
1106Log:
Eric Andersenc181f342003-12-11 02:48:15 +00001107Patch from Steven Scholz, fix some warnings
Eric Andersenaa2afee2003-09-12 07:03:52 +00001108
1109Members:
Eric Andersenc181f342003-12-11 02:48:15 +00001110 coreutils/chgrp.c:1.16->1.17
1111 miscutils/hdparm.c:1.6->1.7
1112 util-linux/rdate.c:1.26->1.27
Eric Andersenaa2afee2003-09-12 07:03:52 +00001113
1114---------------------
Eric Andersenc181f342003-12-11 02:48:15 +00001115PatchSet 3642
1116Date: 2003/10/09 12:46:20
Eric Andersenaa2afee2003-09-12 07:03:52 +00001117Author: bug1
1118Branch: HEAD
1119Tag: (none)
1120Log:
Eric Andersenc181f342003-12-11 02:48:15 +00001121New applet, devfsd, by Matteo Croce and Tito
Eric Andersenaa2afee2003-09-12 07:03:52 +00001122
1123Members:
Eric Andersenc181f342003-12-11 02:48:15 +00001124 AUTHORS:1.38->1.39
1125 include/applets.h:1.105->1.106
1126 include/usage.h:1.169->1.170
1127 miscutils/Config.in:1.8->1.9
1128 miscutils/Makefile.in:1.8->1.9
1129 miscutils/devfsd.c:INITIAL->1.1
Eric Andersenaa2afee2003-09-12 07:03:52 +00001130
1131---------------------
Eric Andersenc181f342003-12-11 02:48:15 +00001132PatchSet 3643
1133Date: 2003/10/09 14:25:00
1134Author: bug1
1135Branch: HEAD
1136Tag: (none)
1137Log:
1138example devfs config file, patch from Tito.
1139
1140Members:
1141 examples/devfsd.conf:INITIAL->1.1
1142
1143---------------------
1144PatchSet 3644
1145Date: 2003/10/09 14:40:17
1146Author: bug1
1147Branch: HEAD
1148Tag: (none)
1149Log:
1150Fix an ommision preventing building, patch by Tito.
1151
1152Members:
1153 libbb/Makefile.in:1.29->1.30
1154
1155---------------------
1156PatchSet 3645
1157Date: 2003/10/09 22:02:23
Eric Andersenaa2afee2003-09-12 07:03:52 +00001158Author: andersen
1159Branch: HEAD
1160Tag: (none)
1161Log:
Eric Andersenc181f342003-12-11 02:48:15 +00001162Do not use kernel headers
Eric Andersenaa2afee2003-09-12 07:03:52 +00001163
1164Members:
Eric Andersenc181f342003-12-11 02:48:15 +00001165 miscutils/devfsd.c:1.1->1.2
Eric Andersenaa2afee2003-09-12 07:03:52 +00001166
1167---------------------
Eric Andersenc181f342003-12-11 02:48:15 +00001168PatchSet 3646
1169Date: 2003/10/09 22:19:21
Eric Andersenaa2afee2003-09-12 07:03:52 +00001170Author: andersen
1171Branch: HEAD
1172Tag: (none)
1173Log:
Eric Andersenc181f342003-12-11 02:48:15 +00001174I don't need to have my email adder listed twice
Eric Andersenaa2afee2003-09-12 07:03:52 +00001175
1176Members:
Eric Andersenc181f342003-12-11 02:48:15 +00001177 AUTHORS:1.39->1.40
1178
1179---------------------
1180PatchSet 3647
1181Date: 2003/10/10 13:10:18
1182Author: bug1
1183Branch: HEAD
1184Tag: (none)
1185Log:
1186Vods versions of xargs
1187
1188Members:
1189 findutils/xargs.c:1.29->1.30
1190
1191---------------------
1192PatchSet 3648
1193Date: 2003/10/11 00:15:22
1194Author: bug1
1195Branch: HEAD
1196Tag: (none)
1197Log:
1198Vodz last_patch_117, update options for new xargs
1199
1200Members:
1201 findutils/Config.in:1.7->1.8
1202 include/usage.h:1.170->1.171
1203
1204---------------------
1205PatchSet 3649
1206Date: 2003/10/11 19:47:20
1207Author: andersen
1208Branch: HEAD
1209Tag: (none)
1210Log:
1211Paul Mundt (lethal) writes:
1212
1213Erik,
1214
1215The format for /proc/meminfo has changed between 2.4 and 2.6, quite considerably.
1216In addition to the removal of the two-line summary that was present in 2.4,
1217MemShared was also removed. Presently (at least in busybox CVS HEAD), top fails
1218to parse this correctly and spews forth a:
1219
1220top: failed to read 'meminfo'
1221
1222message. This patch switches around some of the semantics a little to do sane
1223parsing for both 2.4 and 2.6. Also, in the event that the summary gets yanked
1224from 2.4, this patch will deal with that as well. With this patch, I'm able
1225to run top correctly on 2.6.0-test7 (tested on sh).
1226
1227Please apply.
1228
1229 procps/top.c | 60 +++++++++++++++++++++++++++++++++++++++++++++++------------
1230 1 files changed, 48 insertions(+), 12 deletions(-)
1231
1232Members:
1233 procps/top.c:1.8->1.9
1234
1235---------------------
1236PatchSet 3650
1237Date: 2003/10/17 19:54:55
1238Author: timr
1239Branch: HEAD
1240Tag: (none)
1241Log:
1242old gcc
1243
1244Members:
1245 miscutils/devfsd.c:1.2->1.3
1246
1247---------------------
1248PatchSet 3651
1249Date: 2003/10/18 02:58:35
1250Author: andersen
1251Branch: HEAD
1252Tag: (none)
1253Log:
1254Rob Landley's new micro-bunzip version 3. Rob writes:
1255
1256The API for using partial writes, as described in my last message, sucked.
1257
1258So here's a patch against my last patch that changes things so that
1259write_bunzip_data calls read_bunzip_data itself behind the scenes whenever
1260necessary. So usage is now just start_bunzip(), write_bunzip_data() until it
1261returns a negative number, and then the cleanup at the end of
1262uncompressStream.
1263
1264It adds 32 bytes to the executable, but it should allow the caller (tar) to be
1265simplified enough to compensate. Total -Os stripped exe size now 6856 bytes.
1266
1267Rob
1268
1269P.S. I attached the whole C file so you don't have to keep incremental
1270patches straight if you don't want to. :)
1271
1272P.S. In the version I'm banging on now, I've simplified the license to just
1273LGPL. I read the OSL a bit more closely and the patent termination clause
1274would have bit IBM in their counter-suit of SCO if the code in question had
1275been OSL instead of GPL, and I've decided I just don't want to beta-test
1276legal code right now.
1277
1278Members:
1279 archival/libunarchive/decompress_bunzip2.c:1.4->1.5
1280
1281---------------------
1282PatchSet 3652
1283Date: 2003/10/18 02:59:46
1284Author: andersen
1285Branch: HEAD
1286Tag: (none)
1287Log:
1288Manuel Novoa III writes:
1289
1290Hello Rob,
1291
1292Here's a patch to your bunzip-3.c file. Nice work btw.
1293
1294One minor bug fix... checking for error return when read()ing.
1295Some size/performance optimizations as well. One instance of
1296memset() seems unnecssary. You might want to take a look.
1297
1298Anyway, on my machine, decompressing linux-2.6.0-test7.tar.bz2
1299to /dev/null gave the following times:
1300
1301 bunzip-3.c bzcat (system) bunzip-3.c (patched)
1302real 0m24.420s 0m22.725s 0m20.701s
1303user 0m23.930s 0m22.170s 0m20.180s
1304sys 0m0.070s 0m0.080s 0m0.140s
1305
1306Size of the patched version is comparable (slightly larger or
1307smaller depending on compiler flags).
1308
1309Manuel
1310
1311Members:
1312 archival/libunarchive/decompress_bunzip2.c:1.5->1.6
1313
1314---------------------
1315PatchSet 3653
1316Date: 2003/10/20 06:40:40
1317Author: andersen
1318Branch: HEAD
1319Tag: (none)
1320Log:
1321ccording to this:
1322 http://sources.redhat.com/ml/binutils/2003-01/msg00290.html
1323The name R_390_GOTOFF was changed to R_390_GOTOFF32.
1324 -Erik
1325
1326Members:
1327 modutils/insmod.c:1.103->1.104
1328
1329---------------------
1330PatchSet 3654
1331Date: 2003/10/21 07:45:29
1332Author: andersen
1333Branch: HEAD
1334Tag: (none)
1335Log:
1336Do a better job of dealing with screwy s390 abi changes
1337
1338Members:
1339 modutils/insmod.c:1.104->1.105
1340
1341---------------------
1342PatchSet 3655
1343Date: 2003/10/22 10:58:11
1344Author: andersen
1345Branch: HEAD
1346Tag: (none)
1347Log:
1348Andreas Mohr writes:
1349
1350the busybox menuconfig triggered my "inacceptable number of spelling mistakes"
1351upper level, so I decided to make a patch ;-)
1352
1353I also improved some wording to describe some things in a better way.
1354
1355Many thanks for an incredible piece of software!
1356
1357Andreas Mohr, random OSS developer
1358
1359Members:
1360 archival/Config.in:1.9->1.10
1361 coreutils/Config.in:1.16->1.17
1362 editors/Config.in:1.8->1.9
1363 findutils/Config.in:1.8->1.9
1364 init/Config.in:1.7->1.8
1365 loginutils/Config.in:1.6->1.7
1366 miscutils/Config.in:1.9->1.10
1367 networking/Config.in:1.24->1.25
1368 networking/udhcp/Config.in:1.4->1.5
1369 procps/Config.in:1.6->1.7
1370 shell/Config.in:1.10->1.11
1371 sysdeps/linux/Config.in:1.11->1.12
1372 sysklogd/Config.in:1.4->1.5
1373 util-linux/Config.in:1.9->1.10
1374
1375---------------------
1376PatchSet 3656
1377Date: 2003/10/22 11:10:50
1378Author: andersen
1379Branch: HEAD
1380Tag: (none)
1381Log:
1382Tito writes:
1383
1384Hi to all,
1385I'm sorry but I didn't spot this big fat bug until now,
1386Matteo Croce emailed me about it.
1387Please apply this patch as the devfsd applet is broken
1388and works only on a system booted with a standard devfsd
1389( the test I mostly did :-( ), but if used at boot time
1390it DOESN'T WORK.
1391
1392Thanks in advance and please apply
1393Tito
1394
1395Members:
1396 miscutils/devfsd.c:1.3->1.4
1397
1398---------------------
1399PatchSet 3657
1400Date: 2003/10/22 11:18:24
1401Author: andersen
1402Branch: HEAD
1403Tag: (none)
1404Log:
1405Disable any buffering to stdout
1406
1407Members:
1408 coreutils/tee.c:1.22->1.23
1409
1410---------------------
1411PatchSet 3658
1412Date: 2003/10/22 11:19:01
1413Author: andersen
1414Branch: HEAD
1415Tag: (none)
1416Log:
1417Update mail location
1418
1419Members:
1420 README:1.28->1.29
1421
1422---------------------
1423PatchSet 3659
1424Date: 2003/10/22 11:23:04
1425Author: andersen
1426Branch: HEAD
1427Tag: (none)
1428Log:
1429make this a little bit less messy
1430
1431Members:
1432 libbb/Makefile.in:1.30->1.31
1433
1434---------------------
1435PatchSet 3660
1436Date: 2003/10/22 11:26:38
1437Author: andersen
1438Branch: HEAD
1439Tag: (none)
1440Log:
1441Patch from Arthur Othieno to fix a compiler warning
1442
1443Members:
1444 libbb/get_ug_id.c:1.1->1.2
1445
1446---------------------
1447PatchSet 3661
1448Date: 2003/10/22 11:30:53
1449Author: andersen
1450Branch: HEAD
1451Tag: (none)
1452Log:
1453Patch from Arthur Othieno for docs/style-guide.txt conformance.
1454
1455Members:
1456 console-tools/chvt.c:1.19->1.20
1457
1458---------------------
1459PatchSet 3662
1460Date: 2003/10/22 11:31:36
1461Author: andersen
1462Branch: HEAD
1463Tag: (none)
1464Log:
1465Patch from Arthur Othieno for style-guide.txt conformance
1466
1467Members:
1468 console-tools/clear.c:1.16->1.17
1469 console-tools/deallocvt.c:1.26->1.27
1470 console-tools/reset.c:1.10->1.11
1471
1472---------------------
1473PatchSet 3663
1474Date: 2003/10/22 11:37:04
1475Author: andersen
1476Branch: HEAD
1477Tag: (none)
1478Log:
1479Tomasz Motylewski reported that the 'which' applet does not find
1480files when the full file PATH is specified.
1481
1482This patch from Arthur Othieno fixes it.
1483
1484Members:
1485 debianutils/which.c:1.3->1.4
1486
1487---------------------
1488PatchSet 3664
1489Date: 2003/10/22 11:56:45
1490Author: andersen
1491Branch: HEAD
1492Tag: (none)
1493Log:
1494last_patch116 from vodz:
1495
1496Stephane,
1497
1498>Using busybox+uclibc, crond syslog messages look like:
1499>
1500>Oct 9 09:04:46 soekris cron.notice crond[347]: ^Icrond 2.3.2 dillon,
1501>started, log level 8
1502
1503Thanks for testing.
1504
1505>The attached patch corrects the problem.
1506
1507Your patch is not correct.
1508Correct patch attached.
1509
1510Also. Last patch have
1511- add "Broken pipe" message to ash.c
1512- busybox ash synced with dash_0.4.18
1513
1514--w
1515vodz
1516
1517Members:
1518 miscutils/crond.c:1.9->1.10
1519 shell/ash.c:1.81->1.82
1520
1521---------------------
1522PatchSet 3665
1523Date: 2003/10/22 12:24:38
1524Author: andersen
1525Branch: HEAD
1526Tag: (none)
1527Log:
1528Goetz Bock writes:
1529
1530Dear list,
1531
1532during my quest do pack busybox into an RPM, I've fixed a small bug
1533(missing \n) in dc's usage. And added two additional operations: mod and
1534exp/power.
1535
1536Feel free to drop them.
1537
1538Members:
1539 include/usage.h:1.171->1.172
1540 miscutils/dc.c:1.16->1.17
1541
1542---------------------
1543PatchSet 3666
1544Date: 2003/10/22 12:36:55
1545Author: andersen
1546Branch: HEAD
1547Tag: (none)
1548Log:
1549sigh
1550
1551Members:
1552 debianutils/which.c:1.4->1.5
1553
1554---------------------
1555PatchSet 3667
1556Date: 2003/10/22 23:29:08
1557Author: andersen
1558Branch: HEAD
1559Tag: (none)
1560Log:
1561the dc applet now needs libm
1562 -Erik
1563
1564Members:
1565 miscutils/Makefile.in:1.9->1.10
1566
1567---------------------
1568PatchSet 3668
1569Date: 2003/10/23 07:52:01
1570Author: andersen
1571Branch: HEAD
1572Tag: (none)
1573Log:
1574Another bzip2 update and speedup from Manuel Novoa III, with some
1575additional changes (primarily lots of comments) from Rob Landley.
1576
1577Members:
1578 archival/libunarchive/decompress_bunzip2.c:1.6->1.7
1579
1580---------------------
1581PatchSet 3669
1582Date: 2003/10/28 10:44:58
1583Author: bug1
1584Branch: HEAD
1585Tag: (none)
1586Log:
1587Conditionally compile some files.
1588This hides a bug related to the new bunzip code in the tar and dpkg[-deb]
1589applets.
1590It will also reduce compile time a little as some unused files wont be
1591compiled.
1592
1593Members:
1594 archival/libunarchive/Makefile.in:1.14->1.15
1595
1596---------------------
1597PatchSet 3670
1598Date: 2003/10/28 23:04:50
1599Author: bug1
1600Branch: HEAD
1601Tag: (none)
1602Log:
1603Fix a logic error, the old bunzip code returned non-zero for success,
1604new code returns 0 for success.
1605
1606Members:
1607 archival/bunzip2.c:1.14->1.15
1608
1609---------------------
1610PatchSet 3671
1611Date: 2003/10/28 23:32:12
1612Author: bug1
1613Branch: HEAD
1614Tag: (none)
1615Log:
1616Add some error messages, use xmalloc instead of malloc
1617
1618Members:
1619 archival/libunarchive/decompress_bunzip2.c:1.7->1.8
1620
1621---------------------
1622PatchSet 3672
1623Date: 2003/10/29 03:37:52
1624Author: bug1
1625Branch: HEAD
1626Tag: (none)
1627Log:
1628Use the return value from uncompress_bunzip, fix some typo
1629
1630Members:
1631 archival/bunzip2.c:1.15->1.16
1632 include/unarchive.h:1.18->1.19
1633
1634---------------------
1635PatchSet 3673
1636Date: 2003/10/29 03:40:47
1637Author: bug1
1638Branch: HEAD
1639Tag: (none)
1640Log:
1641"A few references to sourcefiles and URLs in docs/contributing.txt had
1642gone stale" - Peter Korsgaard
1643
1644Members:
1645 docs/contributing.txt:1.8->1.9
1646
1647---------------------
1648PatchSet 3674
1649Date: 2003/10/29 04:46:30
1650Author: bug1
1651Branch: HEAD
1652Tag: (none)
1653Log:
1654make CONFIG_FEATURE_UNARCHIVE_TAPE common between itar and cpio, patch
1655by Arthur Othieno
1656
1657Members:
1658 archival/Config.in:1.10->1.11
1659
1660---------------------
1661PatchSet 3675
1662Date: 2003/10/29 04:50:35
1663Author: bug1
1664Branch: HEAD
1665Tag: (none)
1666Log:
1667fix a bug where `which' doesn't check whether the file passed as an argument
1668is a regular file, patch by Arthur Othieno
1669
1670Members:
1671 debianutils/which.c:1.5->1.6
1672
1673---------------------
1674PatchSet 3676
1675Date: 2003/10/29 11:10:02
1676Author: bug1
1677Branch: HEAD
1678Tag: (none)
1679Log:
1680Accept the -c option and do nothing
1681
1682Members:
1683 coreutils/install.c:1.2->1.3
1684
1685---------------------
1686PatchSet 3677
1687Date: 2003/10/30 07:48:38
1688Author: andersen
1689Branch: HEAD
1690Tag: (none)
1691Log:
1692make certain values specified in the environment always win
1693
1694Members:
1695 Rules.mak:1.21->1.22
1696
1697---------------------
1698PatchSet 3678
1699Date: 2003/10/30 13:36:39
1700Author: bug1
1701Branch: HEAD
1702Tag: (none)
1703Log:
1704Patch from Dmitry Zakharov,
1705Fixes two bugs:
1706- END block didn't execute after an exit() call
1707- huge memory consumption and performance degradation on large input
1708(now performance is comparable to gawk)
1709
1710Members:
1711 editors/awk.c:1.4->1.5
1712
1713---------------------
1714PatchSet 3679
1715Date: 2003/10/30 22:47:16
1716Author: bug1
1717Branch: HEAD
1718Tag: (none)
1719Log:
1720run through indent
1721
1722Members:
1723 findutils/xargs.c:1.30->1.31
1724
1725---------------------
1726PatchSet 3680
1727Date: 2003/10/30 22:51:33
1728Author: bug1
1729Branch: HEAD
1730Tag: (none)
1731Log:
1732Add a comment with link to the SUSv3 standard for xargs
1733
1734Members:
1735 findutils/xargs.c:1.31->1.32
1736
1737---------------------
1738PatchSet 3681
1739Date: 2003/10/31 00:04:24
1740Author: bug1
1741Branch: HEAD
1742Tag: (none)
1743Log:
1744Remove config options for sort -u and sort -r, they are always enabled
1745
1746Members:
1747 coreutils/Config.in:1.17->1.18
1748
1749---------------------
1750PatchSet 3682
1751Date: 2003/10/31 00:21:28
1752Author: andersen
1753Branch: HEAD
1754Tag: (none)
1755Log:
1756Fix stupid typo
1757
1758Members:
1759 archival/libunarchive/Makefile.in:1.15->1.16
1760
1761---------------------
1762PatchSet 3683
1763Date: 2003/10/31 00:35:59
1764Author: bug1
1765Branch: HEAD
1766Tag: (none)
1767Log:
1768Move the tail -c option from FANCY_TAIL to the default tail, this makes
1769the default tail options conform to SUSv3, with the non-SUS
1770option all in FANCY_TAIL
1771
1772Members:
1773 coreutils/Config.in:1.18->1.19
1774 coreutils/tail.c:1.45->1.46
1775
1776---------------------
1777PatchSet 3684
1778Date: 2003/10/31 02:04:18
1779Author: bug1
1780Branch: HEAD
1781Tag: (none)
1782Log:
1783Patch from David Meggy to make the swap default to the new version if no
1784version is specified and the kernel is relatively new.
1785
1786Members:
1787 util-linux/mkswap.c:1.28->1.29
1788
1789---------------------
1790PatchSet 3685
1791Date: 2003/10/31 08:19:44
1792Author: andersen
1793Branch: HEAD
1794Tag: (none)
1795Log:
1796Try to make indent formatting less horrible
1797
1798Members:
1799 findutils/xargs.c:1.32->1.33
1800
1801---------------------
1802PatchSet 3686
1803Date: 2003/10/31 08:52:57
1804Author: andersen
1805Branch: HEAD
1806Tag: (none)
1807Log:
1808Put back the tar support stubs (and warnings) for now.
1809
1810Members:
1811 archival/libunarchive/decompress_bunzip2.c:1.8->1.9
1812
1813---------------------
1814PatchSet 3687
1815Date: 2003/10/31 09:31:46
1816Author: andersen
1817Branch: HEAD
1818Tag: (none)
1819Log:
1820Rework wget, the xconnect interface, and its various clients
1821in order to fix the problems with round robin DNS reported
1822by Andrew Flegg:
1823 http://busybox.net/lists/busybox/2003-October/009579.html
1824
1825This removes the ipv6 specific xconnect dns lookups. I do
1826not see why that would need to be special cased for ipv6 as
1827was done, but that will just have to be tested.
1828
1829So IPV6 people -- please test this change!
1830
1831 -Erik
1832
1833Members:
1834 include/libbb.h:1.115->1.116
1835 libbb/safe_write.c:1.1->1.2
1836 libbb/xconnect.c:1.6->1.7
1837 networking/telnet.c:1.38->1.39
1838 networking/wget.c:1.60->1.61
1839 util-linux/rdate.c:1.27->1.28
1840
1841---------------------
1842PatchSet 3688
1843Date: 2003/11/03 08:59:51
1844Author: andersen
1845Branch: HEAD
1846Tag: (none)
1847Log:
1848Avoid conflicts with the 2.6 kernel headers, which define
1849_IOR rather differently, thereby breaking the BLKGETSIZE64
1850ioctl.
1851 -Erik
1852
1853Members:
1854 util-linux/fdisk.c:1.10->1.11
1855
1856---------------------
1857PatchSet 3689
1858Date: 2003/11/03 21:20:18
1859Author: andersen
1860Branch: HEAD
1861Tag: (none)
1862Log:
1863Fix rdate and ftpget/ftpput so they compile with the new xconnect.
1864I have checked rdate. Someone should also check ftpget/ftpput to
1865be sure they still work.
1866
1867Members:
1868 include/libbb.h:1.116->1.117
1869 libbb/xconnect.c:1.7->1.8
1870 networking/ftpgetput.c:1.7->1.8
1871 util-linux/rdate.c:1.28->1.29
1872
1873---------------------
1874PatchSet 3690
1875Date: 2003/11/03 22:46:14
1876Author: andersen
1877Branch: HEAD
1878Tag: (none)
1879Log:
1880Set unset_env pointing to a NULL item, to prevent us from walking
1881off the end of the list and segfaulting.
1882 -Erik
1883
1884Members:
1885 coreutils/env.c:1.8->1.9
1886
1887---------------------
1888PatchSet 3691
1889Date: 2003/11/04 23:16:48
1890Author: andersen
1891Branch: HEAD
1892Tag: (none)
1893Log:
1894Fix oversight with CONFIG_FEATURE_AUTOWIDTH handling
1895
1896Members:
1897 coreutils/ls.c:1.100->1.101
1898
1899---------------------
1900PatchSet 3692
1901Date: 2003/11/05 04:55:58
1902Author: bug1
1903Branch: HEAD
1904Tag: (none)
1905Log:
1906Fix tar -j support
1907Use the old fork() method of tar compression support, rather than
1908read_bz2....
1909 - (*uncompress)(int in, int out) seems like a more natural interface
1910for compression code.
1911 - it might improve performance by seperating the work into one cpu
1912bound and one io bound process.
1913 - There is extra code required to do read_[gz|bunzip] since (*uncompress)(int in,
1914int out) will normally be used by the standalone compression applet.
1915
1916There have been problems with this method so if you see a "Short read"
1917error let me know.
1918
1919Members:
1920 archival/libunarchive/decompress_bunzip2.c:1.9->1.10
1921 archival/libunarchive/get_header_tar.c:1.23->1.24
1922 archival/libunarchive/get_header_tar_bz2.c:1.2->1.3
1923
1924---------------------
1925PatchSet 3693
1926Date: 2003/11/05 11:34:26
1927Author: andersen
1928Branch: HEAD
1929Tag: (none)
1930Log:
1931By popular demand, revert to version 1.21, since Rules.mak:1.22
1932causes the build to ignore CROSS_COMPILER_PREFIX set in .config
1933
1934Members:
1935 Rules.mak:1.22->1.23
1936
1937---------------------
1938PatchSet 3694
1939Date: 2003/11/06 03:17:23
1940Author: bug1
1941Branch: HEAD
1942Tag: (none)
1943Log:
1944Rewrite, 800+ bytes smaller and more robust.
1945
1946Members:
1947 coreutils/uudecode.c:1.20->1.21
1948
1949---------------------
1950PatchSet 3695
1951Date: 2003/11/07 11:20:21
1952Author: andersen
1953Branch: HEAD
1954Tag: (none)
1955Log:
1956As vodz pointed out, setting unset_env to NULL is sufficient
1957
1958Members:
1959 coreutils/env.c:1.9->1.10
1960
1961---------------------
1962PatchSet 3696
1963Date: 2003/11/07 19:37:20
1964Author: timr
1965Branch: HEAD
1966Tag: (none)
1967Log:
1968wrap bb help output if CONFIG_FEATURE_AUTOWIDTH
1969
1970Members:
1971 applets/busybox.c:1.143->1.144
1972
1973---------------------
1974PatchSet 3697
1975Date: 2003/11/07 21:22:09
1976Author: andersen
1977Branch: HEAD
1978Tag: (none)
1979Log:
1980fix comment
1981
1982Members:
1983 archival/libunarchive/get_header_tar_gz.c:1.6->1.7
1984
1985---------------------
1986PatchSet 3698
1987Date: 2003/11/07 21:31:58
1988Author: andersen
1989Branch: HEAD
1990Tag: (none)
1991Log:
1992This appears to be the correct fix to make CONFIG_FEATURE_DEB_TAR_BZ2
1993support compile. Glenn, you may want to verify this.
1994 -Erik
1995
1996Members:
1997 archival/libunarchive/filter_accept_list_reassign.c:1.2->1.3
1998
1999---------------------
2000PatchSet 3699
2001Date: 2003/11/07 21:39:14
2002Author: andersen
2003Branch: HEAD
2004Tag: (none)
2005Log:
2006Patch from Steven Scholz to send the output from 'time'
2007to stderr, rather than stdout, so that things like
2008
2009~ # time bunzip2 -c /tmp/test.bz2 > /dev/null
2010real 0m 29.44s
2011user 0m 29.30s
2012sys 0m 0.12s
2013
2014operate as expected.
2015
2016Members:
2017 miscutils/time.c:1.4->1.5
2018
2019---------------------
2020PatchSet 3700
2021Date: 2003/11/08 00:23:23
2022Author: andersen
2023Branch: HEAD
2024Tag: (none)
2025Log:
2026Rob Landley writes:
2027
2028Remove three entries in defconfig that config no longer has.
2029
2030Rob
2031
2032Members:
2033 sysdeps/linux/defconfig:1.4->1.5
2034
2035---------------------
2036PatchSet 3701
2037Date: 2003/11/08 00:33:02
2038Author: andersen
2039Branch: HEAD
2040Tag: (none)
2041Log:
2042Add some basic cvs usage info
2043
2044Members:
2045 docs/busybox.net/cvs_anon.html:1.6->1.7
2046
2047---------------------
2048PatchSet 3702
2049Date: 2003/11/10 04:33:52
2050Author: bug1
2051Branch: HEAD
2052Tag: (none)
2053Log:
2054Merge common parts of sha1sum and md5sum, which is everything except the
2055algorithms.
2056Move algorithms to hash_fd and make them available via a common
2057function.
2058
2059Members:
2060 coreutils/Config.in:1.19->1.20
2061 coreutils/Makefile.in:1.5->1.6
2062 coreutils/md5_sha1_sum.c:INITIAL->1.1
2063 include/libbb.h:1.117->1.118
2064 libbb/Makefile.in:1.31->1.32
2065 libbb/hash_fd.c:INITIAL->1.1
2066
2067---------------------
2068PatchSet 3703
2069Date: 2003/11/14 02:40:08
2070Author: andersen
2071Branch: HEAD
2072Tag: (none)
2073Log:
2074Marc Kleine-Budde noticed a missing semicolon
2075
2076Members:
2077 util-linux/fdisk.c:1.11->1.12
2078
2079---------------------
2080PatchSet 3704
2081Date: 2003/11/14 02:44:28
2082Author: andersen
2083Branch: HEAD
2084Tag: (none)
2085Log:
2086Vladimir N. Oleynik (vodz) writes:
2087
2088Hi Glenn.
2089
2090I analysed BSS size gzip applet and found may be mistake:
2091updcrc() checking if (crc_table_empty) but not resetted this var.
2092This do make slow gzip applet ;-)
2093
2094
2095--w
2096vodz
2097
2098Members:
2099 archival/gzip.c:1.60->1.61
2100
2101---------------------
2102PatchSet 3705
2103Date: 2003/11/14 02:49:19
2104Author: andersen
2105Branch: HEAD
2106Tag: (none)
2107Log:
2108Steven Seeger writes:
2109
2110Hey guys. I've found a bug in modprobe where it generates bad strings and
2111makes sytem calls with them. The following patch seems to have fixed the
2112problem. It is rather inherited elsewhere, as there seems to be incorrect
2113entries in the list which results in more dependencies than really exist for
2114a given call to mod_process. But, this patch prevents the bad text from
2115going to the screen. You will notice there are cases where lcmd goes
2116unmodified before calling system.
2117
2118Please consider the following patch.
2119
2120Thanks.
2121
2122-Steve
2123
2124Members:
2125 modutils/modprobe.c:1.22->1.23
2126
2127---------------------
2128PatchSet 3706
2129Date: 2003/11/14 03:00:04
2130Author: andersen
2131Branch: HEAD
2132Tag: (none)
2133Log:
2134Ulrich Marx writes:
2135
2136hello
2137
2138i had some trouble with the filedescriptor in udhcp.
2139Two things happened on my device:
21401.) broken or not connected cable (no dhcp-server)
21412.) daemonizing (starting with option -b)
2142
2143i got a filedescriptor fd=0 from function raw_socket,
2144after daemonizing (daemon call) the fd is closed.
2145Client can't recieve data's anymore.
2146
2147i fixed this problem (like pidfile handling):
2148
2149Members:
2150 networking/udhcp/socket.c:1.3->1.4
2151
2152---------------------
2153PatchSet 3707
2154Date: 2003/11/14 03:04:08
2155Author: andersen
2156Branch: HEAD
2157Tag: (none)
2158Log:
2159Michael Smith writes:
2160
2161I noticed a problem with ifconfig in busybox 0.60.5. The matching code
2162seems to exist in busybox CVS as well, so I'll paste in the patch that
2163fixed it.
2164
2165I was running:
2166 # ifconfig wan0 1.2.3.4 pointopoint 1.2.3.5 netmask 255.255.255.255
2167
2168I was seeing the inet addr and P-t-P addr both being set to 1.2.3.5
2169(the pointopoint address).
2170
2171wan0 Link encap:Point-Point Protocol
2172 inet addr:1.2.3.5 P-t-P:1.2.3.5 Mask:255.255.255.255
2173 UP POINTOPOINT RUNNING NOARP MTU:1500 Metric:1
2174 ...
2175
2176The patch below seems to fix it.
2177
2178Members:
2179 networking/ifconfig.c:1.26->1.27
2180
2181---------------------
2182PatchSet 3708
2183Date: 2003/11/14 03:11:24
2184Author: andersen
2185Branch: HEAD
2186Tag: (none)
2187Log:
2188Oskar Liljeblad writes:
2189
2190Here's a fix for the hard-coded device name in fbset.
2191
2192Members:
2193 include/libbb.h:1.118->1.119
2194 util-linux/fbset.c:1.32->1.33
2195
2196---------------------
2197PatchSet 3709
2198Date: 2003/11/14 08:26:25
2199Author: bug1
2200Branch: HEAD
2201Tag: (none)
2202Log:
2203Read in blocks rather than one char at a time, greatly improves speed
2204
2205Members:
2206 archival/libunarchive/seek_by_char.c:1.1->1.2
2207
2208---------------------
2209PatchSet 3710
2210Date: 2003/11/14 08:30:46
2211Author: bug1
2212Branch: HEAD
2213Tag: (none)
2214Log:
2215Remove debugging noise.
2216
2217Members:
2218 archival/libunarchive/get_header_tar_bz2.c:1.3->1.4
2219
2220---------------------
2221PatchSet 3711
2222Date: 2003/11/14 09:21:27
2223Author: bug1
2224Branch: HEAD
2225Tag: (none)
2226Log:
2227Remove some tar_gz stuff that get dragged in
2228
2229Members:
2230 archival/libunarchive/get_header_tar_bz2.c:1.4->1.5
2231
2232---------------------
2233PatchSet 3712
2234Date: 2003/11/14 09:22:24
2235Author: bug1
2236Branch: HEAD
2237Tag: (none)
2238Log:
2239Fix build error with tar -j
2240
2241Members:
2242 archival/libunarchive/Makefile.in:1.16->1.17
2243
2244---------------------
2245PatchSet 3713
2246Date: 2003/11/14 10:04:31
2247Author: bug1
2248Branch: HEAD
2249Tag: (none)
2250Log:
2251NEW APPLET: pipe_progress, used by debian installer
2252
2253Members:
2254 debianutils/Config.in:1.5->1.6
2255 debianutils/Makefile.in:1.3->1.4
2256 debianutils/pipe_progress.c:INITIAL->1.1
2257 include/applets.h:1.106->1.107
2258
2259---------------------
2260PatchSet 3714
2261Date: 2003/11/14 12:53:42
2262Author: bug1
2263Branch: HEAD
2264Tag: (none)
2265Log:
2266Catch unsupported features
2267
2268Members:
2269 archival/tar.c:1.178->1.179
2270
2271---------------------
2272PatchSet 3715
2273Date: 2003/11/14 12:57:14
2274Author: bug1
2275Branch: HEAD
2276Tag: (none)
2277Log:
2278Keep trying to find a good header, if we exit it will cause .tar.gz
2279files to compute incorrect crc and length for gzip
2280
2281Members:
2282 archival/libunarchive/get_header_tar.c:1.24->1.25
2283
2284---------------------
2285PatchSet 3716
2286Date: 2003/11/14 21:01:26
2287Author: bug1
2288Branch: HEAD
2289Tag: (none)
2290Log:
2291Fix a "broken pipe" problem. vodz, last_patch_116-2
2292
2293Members:
2294 shell/ash.c:1.82->1.83
2295
2296---------------------
2297PatchSet 3717
2298Date: 2003/11/15 00:24:43
2299Author: bug1
2300Branch: HEAD
2301Tag: (none)
2302Log:
2303Fix memory leaks
2304
2305Members:
2306 archival/libunarchive/get_header_tar.c:1.25->1.26
2307
2308---------------------
2309PatchSet 3718
2310Date: 2003/11/15 23:18:59
2311Author: bug1
2312Branch: HEAD
2313Tag: (none)
2314Log:
2315Move from read_gz to the pipe()+fork() method.
2316open_transformer(), common code for pipe+fork.
2317Function pointer for read() no longer needed.
2318Allow inflate to be initialised with a specified buffer size to avoid
2319over-reading.
2320Reset static variables in inflate_get_next_window to fix a bug where
2321only the first file in a .zip would be be extracted.
2322
2323Members:
2324 archival/gunzip.c:1.76->1.77
2325 archival/rpm.c:1.3->1.4
2326 archival/rpm2cpio.c:1.9->1.10
2327 archival/unzip.c:1.5->1.6
2328 archival/libunarchive/Makefile.in:1.17->1.18
2329 archival/libunarchive/archive_xread.c:1.3->1.4
2330 archival/libunarchive/data_align.c:1.2->1.3
2331 archival/libunarchive/decompress_bunzip2.c:1.10->1.11
2332 archival/libunarchive/filter_accept_list_reassign.c:1.3->1.4
2333 archival/libunarchive/get_header_tar_bz2.c:1.5->1.6
2334 archival/libunarchive/get_header_tar_gz.c:1.7->1.8
2335 archival/libunarchive/init_handle.c:1.3->1.4
2336 archival/libunarchive/open_transformer.c:INITIAL->1.1
2337 archival/libunarchive/unzip.c:1.31->1.32
2338 include/unarchive.h:1.19->1.20
2339
2340---------------------
2341PatchSet 3719
2342Date: 2003/11/15 23:44:31
2343Author: bug1
2344Branch: HEAD
2345Tag: (none)
2346Log:
2347Fix a bug where cpio wouldnt work unless -u was specified
2348
2349Members:
2350 archival/libunarchive/data_extract_all.c:1.13->1.14
2351
2352---------------------
2353PatchSet 3720
2354Date: 2003/11/17 10:26:43
2355Author: bug1
2356Branch: HEAD
2357Tag: (none)
2358Log:
2359Use the PROG variable instead of 'busybox' in the release target
2360
2361Members:
2362 Makefile:1.288->1.289
2363
2364---------------------
2365PatchSet 3721
2366Date: 2003/11/17 10:43:08
2367Author: bug1
2368Branch: HEAD
2369Tag: (none)
2370Log:
2371Remove net-udeb flavour, we dotn use it
2372
2373Members:
2374 debian/config-net-udeb:1.4->1.5(DEAD)
2375 debian/config-net-udeb-i386:1.5->1.6(DEAD)
2376 debian/config-net-udeb-linux-i386:1.1->1.2(DEAD)
2377
2378---------------------
2379PatchSet 3722
2380Date: 2003/11/17 10:46:36
2381Author: bug1
2382Branch: HEAD
2383Tag: (none)
2384Log:
2385This was made obsolete by config-udeb-linux-i386
2386
2387Members:
2388 debian/config-udeb-i386:1.5->1.6(DEAD)
2389
2390---------------------
2391PatchSet 3723
2392Date: 2003/11/17 21:58:00
2393Author: bug1
2394Branch: HEAD
2395Tag: (none)
2396Log:
2397Dont free filename, its needed in the extracted files list.
2398
2399Members:
2400 archival/libunarchive/get_header_tar.c:1.26->1.27
2401
2402---------------------
2403PatchSet 3724
2404Date: 2003/11/18 18:56:25
2405Author: bug1
2406Branch: HEAD
2407Tag: (none)
2408Log:
2409Replaced by md5_sha1_sum.c
2410
2411Members:
2412 coreutils/md5sum.c:1.29->1.30(DEAD)
2413
2414---------------------
2415PatchSet 3725
2416Date: 2003/11/18 19:33:13
2417Author: bug1
2418Branch: HEAD
2419Tag: (none)
2420Log:
2421Replaced by md5_sha1_sum.c
2422
2423Members:
2424 coreutils/sha1sum.c:1.8->1.9(DEAD)
2425
2426---------------------
2427PatchSet 3726
2428Date: 2003/11/18 19:35:06
2429Author: bug1
2430Branch: HEAD
2431Tag: (none)
2432Log:
2433Only use getopt and associated flags if checking is enabled
2434
2435Members:
2436 coreutils/md5_sha1_sum.c:1.1->1.2
2437
2438---------------------
2439PatchSet 3727
2440Date: 2003/11/18 20:23:04
2441Author: bug1
2442Branch: HEAD
2443Tag: (none)
2444Log:
2445Make unlink old files default behaviour and add a new option -k to
2446prevent overwritting existing files
2447
2448Members:
2449 archival/tar.c:1.179->1.180
2450
2451---------------------
2452PatchSet 3728
2453Date: 2003/11/18 21:31:19
2454Author: bug1
2455Branch: HEAD
2456Tag: (none)
2457Log:
2458Dont close original file handle, we may need it later.
2459
2460Members:
2461 archival/libunarchive/open_transformer.c:1.1->1.2
2462
2463---------------------
2464PatchSet 3729
2465Date: 2003/11/18 21:37:50
2466Author: bug1
2467Branch: HEAD
2468Tag: (none)
2469Log:
2470tar -Z, uncompress support
2471
2472Members:
2473 archival/Config.in:1.11->1.12
2474 archival/tar.c:1.180->1.181
2475 archival/libunarchive/Makefile.in:1.18->1.19
2476 archival/libunarchive/uncompress.c:1.7->1.8
2477
2478---------------------
2479PatchSet 3730
2480Date: 2003/11/18 21:40:30
2481Author: bug1
2482Branch: HEAD
2483Tag: (none)
2484Log:
2485Update md5sum, sha1sum options, patch by Steven Scholz
2486
2487Members:
2488 include/usage.h:1.172->1.173
2489
2490---------------------
2491PatchSet 3731
2492Date: 2003/11/18 21:49:23
2493Author: bug1
2494Branch: HEAD
2495Tag: (none)
2496Log:
2497Update usage for tar -Z
2498
2499Members:
2500 include/usage.h:1.173->1.174
2501
2502---------------------
2503PatchSet 3732
2504Date: 2003/11/18 23:27:49
2505Author: bug1
2506Branch: HEAD
2507Tag: (none)
2508Log:
2509COMPRESS, not UNCOMPRESS
2510
2511Members:
2512 include/usage.h:1.174->1.175
2513
2514---------------------
2515PatchSet 3733
2516Date: 2003/11/18 23:56:41
2517Author: bug1
2518Branch: HEAD
2519Tag: (none)
2520Log:
2521woops, we needed that function
2522
2523Members:
2524 coreutils/md5_sha1_sum.c:1.2->1.3
2525
2526---------------------
2527PatchSet 3734
2528Date: 2003/11/20 05:26:38
2529Author: bug1
2530Branch: HEAD
2531Tag: (none)
2532Log:
2533Include stdint.h
2534
2535Members:
2536 include/libbb.h:1.119->1.120
2537
2538---------------------
2539PatchSet 3735
2540Date: 2003/11/20 05:58:26
2541Author: bug1
2542Branch: HEAD
2543Tag: (none)
2544Log:
2545Fix up the -s option, and make usage consitent with behaviour,
2546patch by Steven Scholz
2547
2548Members:
2549 coreutils/md5_sha1_sum.c:1.3->1.4
2550
2551---------------------
2552PatchSet 3736
2553Date: 2003/11/20 06:27:33
2554Author: bug1
2555Branch: HEAD
2556Tag: (none)
2557Log:
2558Superficial changes
2559
2560Members:
2561 libbb/hash_fd.c:1.1->1.2
2562
2563---------------------
2564PatchSet 3737
2565Date: 2003/11/20 08:00:38
2566Author: bug1
2567Branch: HEAD
2568Tag: (none)
2569Log:
2570Dont attempt to unlink directories
2571
2572Members:
2573 archival/libunarchive/data_extract_all.c:1.14->1.15
2574
2575---------------------
2576PatchSet 3738
2577Date: 2003/11/20 09:06:10
2578Author: bug1
2579Branch: HEAD
2580Tag: (none)
2581Log:
2582Check there are files to add the archive before removing a specified
2583tar file.
2584
2585Members:
2586 archival/tar.c:1.181->1.182
2587
2588---------------------
2589PatchSet 3739
2590Date: 2003/11/20 09:53:31
2591Author: bug1
2592Branch: HEAD
2593Tag: (none)
2594Log:
2595Check at least one context is specified
2596
2597Members:
2598 archival/tar.c:1.182->1.183
2599
2600---------------------
2601PatchSet 3740
2602Date: 2003/11/20 09:56:34
2603Author: bug1
2604Branch: HEAD
2605Tag: (none)
2606Log:
2607remove controversial tests
2608
2609Members:
2610 testsuite/sed/sed-append-next-line-gnu:1.1->1.2(DEAD)
2611 testsuite/sed/sed-requires-newline-after-edit-command:1.1->1.2(DEAD)
2612
2613---------------------
2614PatchSet 3741
2615Date: 2003/11/20 09:57:41
2616Author: bug1
2617Branch: HEAD
2618Tag: (none)
2619Log:
2620Update status of tests which should pass
2621
2622Members:
2623 testsuite/find/find-supports-minus-xdev:1.1->1.2
2624 testsuite/tar/tar-complains-about-missing-file:1.1->1.2
2625 testsuite/tar/tar-handles-cz-options:1.1->1.2
2626
2627---------------------
2628PatchSet 3742
2629Date: 2003/11/20 10:46:58
2630Author: bug1
2631Branch: HEAD
2632Tag: (none)
2633Log:
2634Fix tar-handles-nested-exclude testcase
2635
2636Members:
2637 archival/tar.c:1.183->1.184
2638 archival/libunarchive/get_header_tar.c:1.27->1.28
2639
2640---------------------
2641PatchSet 3743
2642Date: 2003/11/20 21:30:54
2643Author: bug1
2644Branch: HEAD
2645Tag: (none)
2646Log:
2647Dont over-read fd, use function pointer for hash function.
2648
2649Members:
2650 include/libbb.h:1.120->1.121
2651 libbb/hash_fd.c:1.2->1.3
2652
2653---------------------
2654PatchSet 3744
2655Date: 2003/11/20 22:36:54
2656Author: bug1
2657Branch: HEAD
2658Tag: (none)
2659Log:
2660Remove unused function
2661
2662Members:
2663 archival/libunarchive/Makefile.in:1.19->1.20
2664 archival/libunarchive/archive_xread_char.c:1.1->1.2(DEAD)
2665 include/unarchive.h:1.20->1.21
2666
2667---------------------
2668PatchSet 3745
2669Date: 2003/11/21 09:27:02
2670Author: bug1
2671Branch: HEAD
2672Tag: (none)
2673Log:
2674Make use of libbb functions bb_xopen, bb_full_read, used #define's
2675instead of static consts, avoid xmalloc.
2676
2677Members:
2678 console-tools/loadkmap.c:1.26->1.27
2679
2680---------------------
2681PatchSet 3746
2682Date: 2003/11/21 21:54:07
2683Author: bug1
2684Branch: HEAD
2685Tag: (none)
2686Log:
2687Fix warning
2688
2689Members:
2690 debianutils/pipe_progress.c:1.1->1.2
2691
2692---------------------
2693PatchSet 3747
2694Date: 2003/11/21 22:17:28
2695Author: bug1
2696Branch: HEAD
2697Tag: (none)
2698Log:
2699Use safe read
2700
2701Members:
2702 archival/libunarchive/uncompress.c:1.8->1.9
2703
2704---------------------
2705PatchSet 3748
2706Date: 2003/11/21 22:24:45
2707Author: bug1
2708Branch: HEAD
2709Tag: (none)
2710Log:
2711As we no longer use function pointers for read in common archiving code
2712archive_xread can be replaced with bb_full_read, and archive_copy_file
2713with bb_copyfd*
2714bb_copyfd is split into two functions bb_copyfd_size and bb_copyfd_eof,
2715they share a common backend.
2716
2717Members:
2718 archival/ar.c:1.44->1.45
2719 archival/tar.c:1.184->1.185
2720 archival/libunarchive/Makefile.in:1.20->1.21
2721 archival/libunarchive/archive_copy_file.c:1.4->1.5(DEAD)
2722 archival/libunarchive/archive_xread.c:1.4->1.5(DEAD)
2723 archival/libunarchive/archive_xread_all.c:1.2->1.3
2724 archival/libunarchive/archive_xread_all_eof.c:1.2->1.3
2725 archival/libunarchive/data_extract_all.c:1.15->1.16
2726 archival/libunarchive/data_extract_to_stdout.c:1.2->1.3
2727 archival/libunarchive/get_header_tar.c:1.28->1.29
2728 archival/libunarchive/seek_by_char.c:1.2->1.3
2729 coreutils/cat.c:1.28->1.29
2730 include/libbb.h:1.121->1.122
2731 include/unarchive.h:1.21->1.22
2732 libbb/copy_file.c:1.25->1.26
2733 libbb/copyfd.c:1.6->1.7
2734 libbb/print_file.c:1.7->1.8
2735 networking/ftpgetput.c:1.8->1.9
2736
2737---------------------
2738PatchSet 3749
2739Date: 2003/11/22 02:13:41
2740Author: bug1
2741Branch: HEAD
2742Tag: (none)
2743Log:
2744Fix warning
2745
2746Members:
2747 libbb/copyfd.c:1.7->1.8
2748
2749---------------------
2750PatchSet 3750
2751Date: 2003/11/24 23:50:07
2752Author: bug1
2753Branch: HEAD
2754Tag: (none)
2755Log:
2756When a size of 0 is passed to copyfd_size, dont do anything, it was
2757reading untill eof which breaks tar
2758
2759Members:
2760 libbb/copyfd.c:1.8->1.9
2761
2762---------------------
2763PatchSet 3751
2764Date: 2003/11/25 20:45:38
2765Author: bug1
2766Branch: HEAD
2767Tag: (none)
2768Log:
2769Fix for "Broken pipe" issue, vodz last_patch116_3
2770
2771Members:
2772 shell/ash.c:1.83->1.84
2773
2774---------------------
2775PatchSet 3752
2776Date: 2003/11/26 21:53:37
2777Author: bug1
2778Branch: HEAD
2779Tag: (none)
2780Log:
2781Important bugfixes from Ian Campbell.
2782init_archive_deb_data()
2783 We want to filter for data.tar.* in the AR file not the TAR
2784 file, else we get nothing.
2785
2786all_control_list()
2787 Make the 'extensions' array of control file names a global so it
2788 can be used in unpack_package as well. Name the global
2789 all_control_files. Don't hard code the length of
2790 all_control_files but instead used sizeof.
2791
2792unpack_package()
2793 Only unpack the control files we are interested in (from
2794 all_control_files). Extract the data.tar.gz into / rather than
2795 the current directory.
2796
2797dpkg_main()
2798 Configure packages in a second pass so all the packages being
2799 installed are unpacked before configuring.
2800
2801Some purely cosmetic changes:
2802
2803header
2804 update list of differences since two of them are no longer true.
2805 The .control file is no longer stored as a result of this patch
2806 -- it was redundant since the info is in status. New packages
2807 appear to be added to the end of the status file now rather than
2808 the start.
2809
2810remove_package()
2811 Make message printing optional, so we can avoid a redundant
2812 message when replacing/upgrading a package. When we do print
2813 stuff then include the version number.
2814
2815purge_package()
2816 Print "Purging xxx (yyy) ..." message like the other actions.
2817
2818configure_package()
2819 Add "..." to "Setting up" message to be consistent with other
2820 actions.
2821
2822Members:
2823 archival/dpkg.c:1.73->1.74
2824
2825---------------------
2826PatchSet 3753
2827Date: 2003/11/27 00:01:43
2828Author: bug1
2829Branch: HEAD
2830Tag: (none)
2831Log:
2832Fix tar hard links
2833
2834Members:
2835 archival/libunarchive/data_extract_all.c:1.16->1.17
2836 archival/libunarchive/get_header_tar.c:1.29->1.30
2837
2838---------------------
2839PatchSet 3754
2840Date: 2003/11/27 22:40:08
2841Author: bug1
2842Branch: HEAD
2843Tag: (none)
2844Log:
2845Fix a bug, ignore the source path when installing to a directory.
2846We may be installing symlinks, so use lstat/lchown.
2847Make use of bb_getopt_ulflags and cp_mv_stat2, save 100 bytes.
2848
2849Members:
2850 coreutils/install.c:1.3->1.4
2851
2852---------------------
2853PatchSet 3755
2854Date: 2003/11/28 22:38:14
2855Author: bug1
2856Branch: HEAD
2857Tag: (none)
2858Log:
2859Patch from Ian Campbell, fix or'ed dependencies and handle virtual
2860dependencies.
2861
2862Members:
2863 archival/dpkg.c:1.74->1.75
2864
2865---------------------
2866PatchSet 3756
2867Date: 2003/11/28 22:55:03
2868Author: bug1
2869Branch: HEAD
2870Tag: (none)
2871Log:
2872Correct Matteo's email address
2873
2874Members:
2875 miscutils/hdparm.c:1.7->1.8
2876
2877---------------------
2878PatchSet 3757
2879Date: 2003/11/30 23:46:06
2880Author: bug1
2881Branch: HEAD
2882Tag: (none)
2883Log:
2884Patch from Tito, size optimisation, cleanup noise when in debugging
2885mode, adds support for MODLOAD keyword in devfsd.conf, provides a
2886cleaned up version of example/devfsd.conf
2887
2888Members:
2889 examples/devfsd.conf:1.1->1.2
2890 miscutils/Config.in:1.10->1.11
2891 miscutils/devfsd.c:1.4->1.5
2892
2893---------------------
2894PatchSet 3758
2895Date: 2003/12/04 07:07:14
2896Author: andersen
2897Branch: HEAD
2898Tag: (none)
2899Log:
2900Do not use the _syscall5 macro -- use syscall(2) instead
2901
2902Members:
2903 util-linux/fdisk.c:1.12->1.13
2904
2905---------------------
2906PatchSet 3759
2907Date: 2003/12/04 13:06:44
2908Author: bug1
2909Branch: HEAD
2910Tag: (none)
2911Log:
2912Patch from Steven Scholz, make usage more consistent with actual
2913behaviour.
2914
2915Members:
2916 include/usage.h:1.175->1.176
2917
2918---------------------
2919PatchSet 3760
2920Date: 2003/12/04 15:02:57
2921Author: mjn3
2922Branch: HEAD
2923Tag: (none)
2924Log:
2925Add (untested) support for cris, based on the (old) busybox insmod
2926that axis distributes.
2927
2928Members:
2929 modutils/insmod.c:1.105->1.106
2930
2931---------------------
2932PatchSet 3761
2933Date: 2003/12/05 02:51:21
2934Author: bug1
2935Branch: HEAD
2936Tag: (none)
2937Log:
2938Fix a compile error when only using ar, patch by Paul van Gool
2939
2940Members:
2941 archival/ar.c:1.45->1.46
2942
2943---------------------
2944PatchSet 3762
2945Date: 2003/12/08 20:11:55
2946Author: bug1
2947Branch: HEAD
2948Tag: (none)
2949Log:
2950Bring usage upto date, patch by Steven Scholz
2951
2952Members:
2953 coreutils/Config.in:1.20->1.21
2954
2955---------------------
2956PatchSet 3763
2957Date: 2003/12/08 20:21:53
2958Author: bug1
2959Branch: HEAD
2960Tag: (none)
2961Log:
2962Stop sending data to the client after the first failure.
2963Patch by Joe.C
2964
2965Members:
2966 networking/httpd.c:1.19->1.20
2967
2968---------------------
2969PatchSet 3764
2970Date: 2003/12/08 20:31:25
2971Author: bug1
2972Branch: HEAD
2973Tag: (none)
2974Log:
2975Splitting statements with #define's can cause trouble for cross
2976compilers (and it looks a bit messy)
2977
2978Members:
2979 procps/top.c:1.9->1.10
2980
2981---------------------
2982PatchSet 3765
2983Date: 2003/12/09 17:31:48
2984Author: andersen
2985Branch: HEAD
2986Tag: (none)
2987Log:
2988Bump version number
2989
2990Members:
2991 Rules.mak:1.23->1.24
2992
2993---------------------
2994PatchSet 3766
2995Date: 2003/12/09 23:50:24
2996Author: andersen
2997Branch: HEAD
2998Tag: (none)
2999Log:
3000Fix indenting.
3001
3002Fix a bug noticed by Pete Flugstad. Make certain we close what we open, and
3003don't try to close invalid files when /etc/filesystems exists and is used.
3004
3005Members:
3006 util-linux/mount.c:1.113->1.114
3007
3008---------------------
3009PatchSet 3767
3010Date: 2003/12/10 12:08:19
3011Author: andersen
3012Branch: HEAD
3013Tag: (none)
3014Log:
3015update website
3016
3017Members:
3018 docs/busybox.net/cvs_anon.html:1.7->1.8
3019 docs/busybox.net/cvs_howto.html:INITIAL->1.1
3020 docs/busybox.net/docs.html:INITIAL->1.1
3021 docs/busybox.net/download.html:INITIAL->1.1
3022 docs/busybox.net/footer.html:INITIAL->1.1
3023 docs/busybox.net/header.html:INITIAL->1.1
3024 docs/busybox.net/index.html:1.132->1.133
3025 docs/busybox.net/lists.html:INITIAL->1.1
3026 docs/busybox.net/news.html:INITIAL->1.1
3027 docs/busybox.net/oldnews.html:1.16->1.17
3028 docs/busybox.net/products.html:INITIAL->1.1
3029 docs/busybox.net/robots.txt:1.1->1.2(DEAD)
3030 docs/busybox.net/screenshot.html:1.6->1.7
3031 docs/busybox.net/shame.html:INITIAL->1.1
3032 docs/busybox.net/images/vh40.gif:INITIAL->1.1
3033
3034---------------------
3035PatchSet 3768
3036Date: 2003/12/10 20:41:47
3037Author: andersen
3038Branch: HEAD
3039Tag: (none)
3040Log:
3041some minor updates
3042
3043Members:
3044 docs/busybox.net/header.html:1.1->1.2
3045 docs/busybox.net/lists.html:1.1->1.2
3046 docs/busybox.net/products.html:1.1->1.2
3047 docs/busybox.net/shame.html:1.1->1.2
3048
3049---------------------
3050PatchSet 3769
3051Date: 2003/12/10 20:50:14
3052Author: andersen
3053Branch: HEAD
3054Tag: (none)
3055Log:
3056add missing copyright text
3057
3058Members:
3059 docs/busybox.net/copyright.txt:INITIAL->1.1
3060
3061---------------------
3062PatchSet 3770
3063Date: 2003/12/11 01:18:07
3064Author: andersen
3065Branch: HEAD
3066Tag: (none)
3067Log:
3068remove some spaces that mess up autodocifier.pl
3069
3070Members:
3071 include/usage.h:1.176->1.177
3072
3073---------------------
3074PatchSet 3771
3075Date: 2003/12/11 01:29:46
3076Author: andersen
3077Branch: HEAD
3078Tag: (none)
3079Log:
3080go directly to current cvs
3081
3082Members:
3083 docs/busybox.net/header.html:1.2->1.3
3084
3085---------------------
3086PatchSet 3772
3087Date: 2003/12/11 01:42:11
3088Author: andersen
3089Branch: HEAD
3090Tag: (none)
3091Log:
3092Update modutils with 2.6 module support
3093
3094Members:
3095 debian/config-udeb-linux-i386:1.1->1.2
3096 modutils/Config.in:1.9->1.10
3097 modutils/insmod.c:1.106->1.107
3098 modutils/rmmod.c:1.24->1.25
Eric Andersenaa2afee2003-09-12 07:03:52 +00003099