Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/doc Today's (first?) set from this end:



details:   https://anonhg.NetBSD.org/src/rev/d6f4cdc4cf85
branches:  netbsd-1-6
changeset: 529748:d6f4cdc4cf85
user:      he <he%NetBSD.org@localhost>
date:      Wed Dec 11 18:29:13 2002 +0000

description:
Today's (first?) set from this end:
 o Fix up some previous entries:
   - spelling error
   - use proper capitalization and quoting
   - use conventional notation for PR reference
 o mopcopy: show load address in hex
 o mopcopy: fill in load address in destination header
 o mopd: set d->loadaddr to 0 also for ELF
 o vax boot: set entry point to 0 also for ELF
 o vax srt0.S: only skip copy if already relocated; always zero BSS
 o mopd: allow more than one interface on command line
 o gcc vax: tidy up CC1_SPEC, remove -mno-pic, add -mno-asm-pic
 o gas vax: only convert undefined refs. to GOT32/PLT32 if PIC
 o arm: adjust stdargs/varargs for GCC 3.x
 o siop driver: fix bug which could clobber reused memory allocation
 o strftime(3) typo correction
 o if_rtk_cardbus: support Planex FNW-3603 cardbus ethernet
 o ac97 driver: fix LR reversal and record gain polarity
 o audio driver: fix LR reversal play.balance vs. record.balance
 o net code: add argument to rt_timer_remove_all(), for timeout on removal
 o hexdump: set up locale on startup

diffstat:

 doc/CHANGES-1.6.1 |  123 +++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 117 insertions(+), 6 deletions(-)

diffs (151 lines):

diff -r 273efbcebd3b -r d6f4cdc4cf85 doc/CHANGES-1.6.1
--- a/doc/CHANGES-1.6.1 Wed Dec 11 18:22:24 2002 +0000
+++ b/doc/CHANGES-1.6.1 Wed Dec 11 18:29:13 2002 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: CHANGES-1.6.1,v 1.1.2.67 2002/12/10 07:17:55 jmc Exp $
+#      $NetBSD: CHANGES-1.6.1,v 1.1.2.68 2002/12/11 18:29:13 he Exp $
 
 A complete list of changes from NetBSD 1.6 to NetBSD 1.6.1:
 
@@ -2313,7 +2313,7 @@
 
 usr.bin/pkill/pkill.c                          1.5
 
-       Add missing ``-u euid'' option to opstring.  Fixes PR#18827.
+       Add missing ``-u euid'' option to optstring.  Fixes PR#18827.
        [kleink, ticket #949]
 
 gnu/dist/toolchain/ld/emultempl/elf32.em       1.2-1.3
@@ -2323,17 +2323,128 @@
 
 usr.bin/vgrind/vgrind.sh                       1.3-1.4
 
-       psroff has been dead for quite some time.
+       Psroff has been dead for quite some time.
        [kleink, ticket #950]
 
 sys/netinet6/esp_input.c                       1.26-1.27
 
-       increase correct stat.  KAME pr 445
+       Increase correct stat.  KAME pr 445.
        [itojun, ticket #951]
 
 sys/uvm/uvm_fault.c                            1.78-1.79
 
-       change "uoff" to voff_t from vaddr_t as it's offset within uvm object.
-       fix PR/18855.   
+       Change ``uoff'' to voff_t from vaddr_t as it's offset within
+       uvm object.  Fixes PR#18855.
        [thorpej, ticket #952]
 
+usr.sbin/mopd/mopcopy/mopcopy.c                        1.2
+
+       Show the load address in hex.
+       [thorpej, ticket #960]
+
+usr.sbin/mopd/mopcopy/mopcopy.c                        1.3
+
+       Make sure to fill in the load address in the destination
+       MOP header.
+       [thorpej, ticket #961]
+
+usr.sbin/mopd/common/file.c                    1.10
+
+       For ELF, set d->loadaddr to 0, as we do for a.out.  Fixes
+       a problem which causes the program to load 0x5200 too high
+       in memory, causing a fatal trap before self-relocation.
+       [thorpej, ticket #962]
+
+sys/arch/vax/boot/boot/Makefile                        1.29
+
+       Set the entry point to 0 for the ELF case as well.
+       [thorpej, ticket #963]
+
+sys/arch/vax/boot/common/srt0.S                        1.3
+
+       Only skip the copy if we are already relocated; always
+       clear the BSS.
+       [thorpej, ticket #964]
+
+usr.sbin/mopd/mopd/mopd.8                      1.8
+usr.sbin/mopd/mopd/mopd.c                      1.10 via patch
+
+       Allow more than one interface to be specified on the command
+       line.
+       [thorpej, ticket #965]
+
+gnu/dist/toolchain/gcc/config/vax/netbsd.h     1.7
+gnu/dist/toolchain/gcc/config/vax/vax.h                1.15
+
+       Tidy up CC1_SPEC; remove the -mno-pic flag, which didn't
+       actually work properly.
+       Add a new -mno-asm-pic flag which tells the assembler to
+       assemble the code non-PIC even if it was compiled PIC.
+       [thorpej, ticket #966]
+
+gnu/dist/toolchain/gas/config/tc-vax.c         1.19
+
+       Bring in change from binutils-current:
+       Only try to convert undefined references to GOT32/PLT32 if
+       PIC code is requested.
+       [thorpej, ticket #967]
+
+sys/arch/arm/include/ansi.h                    1.3
+sys/arch/arm/include/stdarg.h                  1.4
+sys/arch/arm/include/varargs.h                 1.2
+
+       Adjust stdargs/varargs for GCC 3.x.
+       [thorpej, ticket #973]
+
+sys/arch/arm/include/stdarg.h                  1.5
+
+       Fix error in previous.
+       [thorpej, ticket #974]
+
+sys/dev/ic/siop.c                              1.65
+
+       In siop_reset(), reset sc_ntargets to 0; it will be
+       computed again in siop_add_reselsw().
+       In siop_reset(), reset the tag reseloff to 0, in addition
+       to the lun reseloff.  If siop_add_dev() fails this time,
+       we would use the old reseloff, clobbering memory new used
+       for something else.
+       [bouyer, ticket #975]
+
+lib/libc/time/strftime.3                       1.17
+
+       Fix typo UCT -> UTC.  Fixes PR#19007.
+       [kleink, ticket #978]
+
+sys/dev/cardbus/cardbusdevs                    1.23 via patch
+sys/dev/cardbus/cardbusdevs.h                  regenerate
+sys/dev/cardbus/cardbusdevs_data.h             regenerate
+sys/dev/cardbus/if_rtk_cardbus.c               1.12
+
+       Add support for ``Planex FNW-3603 cardbus ethernet''.
+       Fixes PR#18961.
+       [kanaoka, ticket #979]
+
+sys/dev/ic/ac97.c                              1.37 via patch
+
+       Fix LR reversal problem of mixer and record gain
+       polarity problem.  Based on PR#12878 and PR#18901.
+       [kent, ticket #980]
+
+sys/dev/audio.c                                        1.168
+
+       Fix LR reversal problem of play.balance vs. record.balance.
+       Based on PR#18901.
+       [kent, ticket #981]
+
+sys/net/route.c                                        1.54
+sys/net/route.h                                        1.31
+
+       Add an argument to rt_timer_remove_all(), to specify if we
+       need to call timeout routine on removal.
+       [itojun, ticket #982]
+
+usr.bin/hexdump/hexdump.c                      1.8
+
+       Do setlocale(LC_ALL, "") on startup.
+       [kleink, ticket #985]



Home | Main Index | Thread Index | Old Index