NetBSD/src 0pAQf2Csys/arch/sparc64/dev vpci.c

   vpci_intr_map: emit an error  message in case the call to hv_intr_devino_to_sysino() fails
VersionDeltaFile
1.14+6-4sys/arch/sparc64/dev/vpci.c
+6-41 files

NetBSD/src S0duF8uusr.bin/make meta.c

   make: remove trailing whitespace
VersionDeltaFile
1.224+2-2usr.bin/make/meta.c
+2-21 files

NetBSD/src 9uSPy3husr.bin/make var.c

   make: fix lint error messages from strict bool mode
VersionDeltaFile
1.1182+5-5usr.bin/make/var.c
+5-51 files

NetBSD/src xfJxt0Cdoc 3RDPARTY CHANGES

   new tzcode
VersionDeltaFile
1.2232+2-2doc/3RDPARTY
1.3280+2-1doc/CHANGES
+4-32 files

NetBSD/src DKzhCeNlib/libc/time zic.c localtime.c

   Apply changes between 2026b and 2026c

   Release 2026c - 2026-07-08 10:23:58 -0700

     Briefly:
       Alberta moved to permanent -06 on 2026-06-18.
       Morocco moves to permanent +00 on 2026-09-20.
       More integer overflow bugs have been fixed in zic.

     Changes to future timestamps

       Alberta's 2026-03-08 spring forward was its last foreseeable clock
       change, as it moved to permanent -06 thereafter.  (Thanks to Roozbeh
       Pournader and others.)  Model this with its traditional abbreviation
       CST.  Although the change to permanent -06 legally took place on
       2026-06-18, temporarily model the change to occur on 2026-11-01 at
       02:00 instead, for the same reason we introduced a similarly
       temporary hack for British Columbia in 2026b.


    [45 lines not shown]
VersionDeltaFile
1.101+197-186lib/libc/time/zic.c
1.155+45-33lib/libc/time/localtime.c
1.51+70-7lib/libc/time/NEWS
1.68+12-57lib/libc/time/zdump.c
1.23+23-27lib/libc/time/tz-link.html
1.62+17-28lib/libc/time/Makefile
+364-3387 files not shown
+418-37913 files

NetBSD/src MfhLDp0bin/sh miscbltin.c sh.1

   sh - read - handle read errors in read builtin

   It used to be (incorrectly) that a read error was treated
   the same as EOF in the read builtin utility.   They should
   be errors, with a message, and exit status > 1.  Now they are.
VersionDeltaFile
1.58+35-14bin/sh/miscbltin.c
1.278+12-8bin/sh/sh.1
+47-222 files

NetBSD/src gYepCiisys/arch/arm/ti ti_otgreg.h

   ti_motg: remove unused define
VersionDeltaFile
1.2+1-2sys/arch/arm/ti/ti_otgreg.h
+1-21 files

NetBSD/src KfT7iPbsys/arch/sparc/dev cgfourteen.c cgfourteenvar.h

   support WSDISPLAYIO_GET_FBINFO and WSDISPLAYIO_SET_DEPTH
VersionDeltaFile
1.100+54-17sys/arch/sparc/dev/cgfourteen.c
1.20+4-1sys/arch/sparc/dev/cgfourteenvar.h
+58-182 files

NetBSD/src xgfquMIusr.sbin/sysinst disks.c

   Ooops, previous commit log should have been:
   Fix conditional avaiability of code to convert between partitioning
   schemes. It is needed if extended partitioning is available
   (where we have a menu entry to invoke it manually) or we
   compile in the "this disk is too big for disklabel" checks.
VersionDeltaFile
1.101+8-1usr.sbin/sysinst/disks.c
+8-11 files

NetBSD/src aNE4skrusr.sbin/sysinst disks.c

   disks.c
VersionDeltaFile
1.100+2-2usr.sbin/sysinst/disks.c
+2-21 files

NetBSD/src xQmZutzsys/arch/m68k/include fdt_platform.h

   Device a struct fdt_platform for m68k.
VersionDeltaFile
1.1+44-0sys/arch/m68k/include/fdt_platform.h
+44-01 files

NetBSD/src jwzvf7Lsys/arch/m68k/include linux_bootinfo.h, sys/arch/m68k/m68k linux_bootinfo.c

   Define a "BI_MACH_FDT" machine type.  The value for this record type
   is 0x46445400 ('FDT\0') and unlikely to collide with any other new
   machine types that Linux/m68k might decide to allocate.

   This machine type has 3 machine-type-specific bootinfo record types:

   - BI_FDT_PLATFORM -- a C string providing more detail about the specific
     machine / platform.
   - BI_FDT_BLOB -- a data record containing a Flattened Device Tree blob.
   - BI_FDT_ELF_SYMS -- a memory record pointing to the location of any
     loaded ELF symbols, assumed to be contiguous with the kernel +
     bootinfo data.  This record is needed early, possibly before virtual
     memory has been bootstrapped, so that the symbols can be preserved.
VersionDeltaFile
1.9+50-4sys/arch/m68k/m68k/linux_bootinfo.c
1.6+31-1sys/arch/m68k/include/linux_bootinfo.h
+81-52 files

NetBSD/src XijLJFtsys/dev/ic wdc.c

   Support 8-bit PIO if the front-end indicates that it's necessary:
   - In wdc_drvprobe(), if neither ATAC_CAP_DATA16 nor ATAC_CAP_DATA32
     is set in the controller capabilities, then attempt to enable 8-bit
     PIO on the drive.  If that command fails, ignore the drive.
   - In wdc_datain_pio(), if we're doing 8-bit PIO, check for ATA_DRIVE_NOSTREAM
     and simulate a NOSTREAM 16-bit PIO.  This is necessary because we
     treat the IDENTIFY command as "special" for historical (and almost
     certainly bad) reasons.
   - wdc_dataout_pio() gets the same NOSTREAM shenanigans for 8-bit PIO,
     although I would be surprised if it is ever requested.
VersionDeltaFile
1.315+76-5sys/dev/ic/wdc.c
+76-51 files

NetBSD/src 9tfSQgzsys/dev/ata ata.c atavar.h

   Add a function, ata_set_pio8(), that issues SET_FEATURES with
   WDSF_8BIT_PIO_EN to enable 8-bit PIO on a device.
VersionDeltaFile
1.173+40-2sys/dev/ata/ata.c
1.111+2-1sys/dev/ata/atavar.h
+42-32 files

NetBSD/src B7iepEosys/dev/ic pcf8584reg.h

   Indentation improvements.
VersionDeltaFile
1.5+10-6sys/dev/ic/pcf8584reg.h
+10-61 files

NetBSD/src sRgcrllusr.sbin/sysinst disks.c Makefile.inc

   Try to conditionaly remove more dead code and messages for extremely
   constrained environments like atari install disks.
VersionDeltaFile
1.99+9-2usr.sbin/sysinst/disks.c
1.56+8-1usr.sbin/sysinst/Makefile.inc
1.52+5-1usr.sbin/sysinst/msg.mi.es
1.60+5-1usr.sbin/sysinst/msg.mi.de
1.62+5-1usr.sbin/sysinst/msg.mi.en
1.55+5-1usr.sbin/sysinst/msg.mi.fr
+37-73 files not shown
+47-109 files

NetBSD/src DYPMjbEsbin/newbtconf newbtconf.8

   Improve grammar
VersionDeltaFile
1.22+2-2sbin/newbtconf/newbtconf.8
+2-21 files

NetBSD/src JjTqxPlsys/arch/aarch64/include cpu.h

   no need for opt_pmap.h now
VersionDeltaFile
1.55+1-2sys/arch/aarch64/include/cpu.h
+1-21 files

NetBSD/src IdmDcixusr.sbin/sysinst/arch/evbmips msg.md.fr msg.md.de

   PR 60412: provide defines for the message files to adapt kernel names
   to the various evbmips variants, so the texts can match what the
   conditionalized code does.
   With lots of help from gson@, thanks!
VersionDeltaFile
1.2+27-1usr.sbin/sysinst/arch/evbmips/msg.md.fr
1.2+27-1usr.sbin/sysinst/arch/evbmips/msg.md.de
1.2+27-1usr.sbin/sysinst/arch/evbmips/msg.md.pl
1.2+26-1usr.sbin/sysinst/arch/evbmips/msg.md.es
1.2+25-1usr.sbin/sysinst/arch/evbmips/msg.md.en
1.3+22-1usr.sbin/sysinst/arch/evbmips/Makefile
+154-61 files not shown
+161-87 files

NetBSD/src 91Sm9eksys/arch/ofppc/conf EFIKA

   Enable radeonfb and veritefb by default on EFIKA.

   The board can now boot to multi-user with wscons on graphics card.

   While here, disable audio, since codec detection is flaky and tends to
   cause problems.
VersionDeltaFile
1.2+15-10sys/arch/ofppc/conf/EFIKA
+15-101 files

NetBSD/src WWSQDqwsys/dev/pci radeonfb.c

   Several fixes that help with bringup of non-POSTed Radeon cards.

   - Stop preserving sync-disable bits in CRTC_EXT_CNTL
   - Unblank path also clears HSYNC_DIS/VSYNC_DIS (for CRTC0)
   - Reordered the TMDS transmitter enable after BIOS init
   - Skip the FP_SEL_CRTC2 "iBook/XVR-100" restore hack when a BIOS was found
   - Program TMDS_PLL_CNTL for internal-TMDS ports
   - Skip phantom ports when building the CRTC list (for single-port RV100)
   - Pixel clock ungating where appropriate

   Tested on RV100 and RV280 with RADEONFB_BIOS_INIT.

   Ok macallan@.
VersionDeltaFile
1.124+104-27sys/dev/pci/radeonfb.c
+104-271 files

NetBSD/src CMYvxrnsys/arch/hppa/dev summitfb.c

   support WSDISPLAYIO_SET_DEPTH
VersionDeltaFile
1.43+47-20sys/arch/hppa/dev/summitfb.c
+47-201 files

NetBSD/src aS2j2BPsys/arch/arm/include fdt_platform.h, sys/arch/evbarm/include fdt_platform.h

   Move the definion of "struct fdt_platform" to <machine/fdt_platform.h>.
VersionDeltaFile
1.1+52-0sys/arch/arm/include/fdt_platform.h
1.1+52-0sys/arch/riscv/include/fdt_platform.h
1.2+3-18sys/dev/fdt/fdt_platform.h
1.1+3-0sys/arch/evbarm/include/fdt_platform.h
+110-184 files

NetBSD/src abSbRKxsys/dev/fdt pcfiic_fdt.c files.fdt

   Add FDT front-end for pcf8584 I2C controller.
VersionDeltaFile
1.1+181-0sys/dev/fdt/pcfiic_fdt.c
1.82+5-1sys/dev/fdt/files.fdt
+186-12 files

NetBSD/src baX00Vgsbin/newbtconf newbtconf.8

   newbtconf.8: fix a typo
VersionDeltaFile
1.21+2-2sbin/newbtconf/newbtconf.8
+2-21 files

NetBSD/src I9FKALBexternal/mit/xorg/server/drivers/xf86-video-nv Makefile

   define HAVE_DEV_WSCONS_WSCONSIO_H.
VersionDeltaFile
1.16+3-1external/mit/xorg/server/drivers/xf86-video-nv/Makefile
+3-11 files

NetBSD/src VlGus1Hexternal/mit/xorg/bin/xauth Makefile

   remove now wrong PACKAGE_VERSION define.
VersionDeltaFile
1.12+2-2external/mit/xorg/bin/xauth/Makefile
+2-21 files

NetBSD/src X2J3XDKexternal/mit/xorg/bin/xauth Makefile

   include xorg-pkg-ver.mk for PACKAGE_STRING.
VersionDeltaFile
1.11+3-1external/mit/xorg/bin/xauth/Makefile
+3-11 files

NetBSD/src ZjLduv9external/mit/xorg/bin/xclock Makefile, external/mit/xorg/bin/xdpyinfo Makefile

   various updates for new versions.

   define NO_I18N for xclock, we don't have uselocale(3) that it demands.
   include xorg-pkg-ver.mk in a few places.
   xdpyinfo has present support.
VersionDeltaFile
1.6+5-1external/mit/xorg/bin/xclock/Makefile
1.6+4-1external/mit/xorg/bin/xgc/Makefile
1.9+3-1external/mit/xorg/bin/xdpyinfo/Makefile
1.6+3-1external/mit/xorg/bin/xfd/Makefile
+15-44 files

NetBSD/src pGoKdOqexternal/mit/xorg/bin/rgb Makefile

   define PACKAGE_STRING.
VersionDeltaFile
1.6+4-1external/mit/xorg/bin/rgb/Makefile
+4-11 files