Link [ NetBSD | NetBSD OpenGrok source search | PR fulltext-search | Summary of daily snapshot builds | history of daily build result | pkgsrc commit viewer ]


   
        usage: [branch:branch] [user:user] [path@revision] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN sys/arch/arm, if_wm.c@1.234 )




switch to index mode

recent branches: MAIN (2h)  netbsd-8 (5d)  netbsd-10 (5d)  netbsd-9 (11d)  thorpej-ifq (175d)  thorpej-altq-separation (178d) 

2024-05-10 11:46:50 UTC Now

2015-03-28 17:35:59 UTC MAIN commitmail json YAML

Fix a but that wm_sgmii_writereg() function doesn't pass the "val" argument
to the I2CCMD register. Reported by Bernard Merindol in PR#49789.

(msaitoh)

2015-03-28 17:25:34 UTC MAIN commitmail json YAML

Use `!= -1' instead of `== 0' out of paranoia.

(riastradh)

2015-03-28 17:23:43 UTC MAIN commitmail json YAML

2015-03-28 17:22:46 UTC MAIN commitmail json YAML

Make get_dev_size work on regular files too.

(riastradh)

2015-03-28 17:08:53 UTC MAIN commitmail json YAML

Make some comments match better in ulfs_readwrite.

(riastradh)

2015-03-28 17:06:15 UTC MAIN commitmail json YAML

2015-03-28 16:57:23 UTC MAIN commitmail json YAML

PIC -> INTC to match documentation
no functional change

(macallan)

2015-03-28 16:55:21 UTC MAIN commitmail json YAML

Remove the 'cred' argument from bio_doread().

(maxv)

2015-03-28 16:39:31 UTC MAIN commitmail json YAML

This doesn't affect p2k_ffs after all, no idea why yet.

(riastradh)

2015-03-28 16:17:25 UTC MAIN commitmail json YAML

Test that read fails with EFAULT even if O_SYNC|O_RSYNC are set.

(riastradh)

2015-03-28 16:13:56 UTC MAIN commitmail json YAML

2015-03-28 16:13:38 UTC MAIN commitmail json YAML

Swap kernel/curproc tests in copy*_vmspace so rump can catch EFAULT.

(riastradh)

2015-03-28 15:59:29 UTC MAIN commitmail json YAML

2015-03-28 15:56:45 UTC nick-nhusb commitmail json YAML

2015-03-28 14:50:20 UTC MAIN commitmail json YAML

2015-03-28 14:48:53 UTC MAIN commitmail json YAML

2015-03-28 14:41:28 UTC MAIN commitmail json YAML

Remove hdaudio subdir.

(msaitoh)

2015-03-28 14:16:52 UTC MAIN commitmail json YAML

2015-03-28 14:09:59 UTC MAIN commitmail json YAML

2015-03-28 12:54:32 UTC MAIN commitmail json YAML

Makefile to descend into ramdisk

(matt)

2015-03-28 12:54:06 UTC MAIN commitmail json YAML

2015-03-28 08:19:20 UTC MAIN commitmail json YAML

More defines - from Takahiro HAYASHI and a couple of corrections from me

(skrll)

2015-03-28 07:58:00 UTC MAIN commitmail json YAML

Improve DPRINTFs - partially from Takahiro HAYASHI

(skrll)

2015-03-28 07:51:20 UTC MAIN commitmail json YAML

Deal with GNU IFUNCs properly.

(matt)

2015-03-28 07:07:54 UTC MAIN commitmail json YAML

2015-03-28 07:03:23 UTC MAIN commitmail json YAML

2015-03-28 04:13:26 UTC MAIN commitmail json YAML

VOP_WRITE never has IO_JOURNALLOCKED.

(riastradh)

2015-03-28 03:53:36 UTC MAIN commitmail json YAML

2015-03-28 03:49:41 UTC MAIN commitmail json YAML

Missed another spot, in ext2fs_write.

(riastradh)

2015-03-28 03:46:51 UTC MAIN commitmail json YAML

Missed a spot in ext2fs_read

(riastradh)

2015-03-28 00:47:18 UTC MAIN commitmail json YAML

2015-03-27 23:35:40 UTC MAIN commitmail json YAML

2015-03-27 23:26:14 UTC MAIN commitmail json YAML

Fix one error and make life for ld.elf_so a little easier.

(matt)

2015-03-27 23:25:42 UTC MAIN commitmail json YAML

Integrate some feedback gleened from tech-userlevel@netbsd.org:
Avoid ls -P so that script can also run pre-netbsd-7.
Make sure /etc/rc.conf.d configurations are supported.

(ast)

2015-03-27 23:23:14 UTC MAIN commitmail json YAML

2015-03-27 23:22:20 UTC MAIN commitmail json YAML

Adapt to the jmpbuf changes.

(matt)

2015-03-27 23:14:53 UTC MAIN commitmail json YAML

2015-03-27 21:53:51 UTC MAIN commitmail json YAML

Whatever the original intent was, it works only for buffer cache../wapbl.9

(riastradh)

2015-03-27 21:50:39 UTC MAIN commitmail json YAML

Explain resource estimation bug in wapbl(9).

(riastradh)

2015-03-27 21:41:32 UTC MAIN commitmail json YAML

Make wording about who calls wapbl_*_buf consistent.

(riastradh)

2015-03-27 19:58:58 UTC MAIN commitmail json YAML

Explain wapbl's relation to the garbage-appendage bug.

(riastradh)

2015-03-27 19:48:37 UTC MAIN commitmail json YAML

Note that the wapbl transaction lock is nonrecursive.

(riastradh)

2015-03-27 19:47:14 UTC MAIN commitmail json YAML

2015-03-27 18:53:15 UTC MAIN commitmail json YAML

2015-03-27 18:51:08 UTC MAIN commitmail json YAML

2015-03-27 17:56:16 UTC MAIN commitmail json YAML

Fix typo: VFS_UNMOUNT, not VFS_MOUNT, should call wapbl_stop.

(riastradh)

2015-03-27 17:27:56 UTC MAIN commitmail json YAML

Disentangle buffer-cached I/O from page-cached I/O in UFS.

Page-cached I/O is used for regular files, and is initiated by VFS
users such as userland and NFS.

Buffer-cached I/O is used for directories and symlinks, and is issued
only internally by UFS.

New UFS routine ufs_bufio replaces vn_rdwr for internal use.
ufs_bufio is implemented by new UFS operations uo_bufrd/uo_bufwr,
which sit in ufs_readwrite.c alongside the VOP_READ/VOP_WRITE
implementations.

I preserved the code as much as possible and will leave further
simplification for future commits.  I kept the ulfs_readwrite.c
copypasta close to ufs_readwrite.c in case we ever want to merge them
back; likewise ext2fs_readwrite.c.

No externally visible semantic change.  All atf fs tests still pass.

(riastradh)

2015-03-27 12:46:51 UTC MAIN commitmail json YAML

Add usbd_get_bos_desc{,_full} from Takahiro HAYASHI

(skrll)

2015-03-27 12:45:00 UTC MAIN commitmail json YAML

wm(4): Add X540 support.

(msaitoh)

2015-03-27 11:42:28 UTC MAIN commitmail json YAML

2015-03-27 11:35:43 UTC MAIN commitmail json YAML

Note import of dhcpcd-6.8.1

(roy)

2015-03-27 11:35:02 UTC MAIN commitmail json YAML

2015-03-27 11:33:47 UTC MAIN commitmail json YAML

2015-03-27 11:29:09 UTC netbsd-7 commitmail json YAML

2015-03-27 11:27:40 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #646):
sys/arch/arm/arm32/genassym.cf: revision 1.70
sys/arch/arm/arm32/cpuswitch.S: revision 1.86-1.89

Only set vfp & tpid registers and do ras lookups if new
lwp is not LW_SYSTEM.

(martin)

2015-03-27 11:12:08 UTC MAIN commitmail json YAML

2015-03-27 07:47:11 UTC MAIN commitmail json YAML

Remove unnecessary ifdef IPSEC

(ozaki-r)

2015-03-27 07:28:56 UTC MAIN commitmail json YAML

Remove '\n' in panic message.

(skrll)

2015-03-27 07:18:11 UTC MAIN commitmail json YAML

m_pullup() is called in rcvproc callback functions,
so nfs_boot_sendrecv() should keep track of the head of mbuf chain.
fixes kern/48746

(hikaru)

2015-03-27 06:57:21 UTC MAIN commitmail json YAML

2015-03-27 06:44:28 UTC MAIN commitmail json YAML

2015-03-27 06:42:37 UTC MAIN commitmail json YAML

2015-03-27 06:34:31 UTC MAIN commitmail json YAML

Update our in-tree binutils for RISCV to the latest.

(matt)

2015-03-27 06:10:25 UTC MAIN commitmail json YAML

Sync sparc64 kernel's OF_seek with ofwboot's one, but sparc version
is not changed.

(nakayama)

2015-03-27 06:07:33 UTC MAIN commitmail json YAML

Fix kernel loading failures from partitions started from over first
4GB of disks on sparc64.

(nakayama)

2015-03-27 06:04:42 UTC MAIN commitmail json YAML

2015-03-27 05:57:28 UTC MAIN commitmail json YAML

2015-03-27 05:47:38 UTC MAIN commitmail json YAML

2015-03-27 05:33:08 UTC MAIN commitmail json YAML

2015-03-27 05:32:38 UTC MAIN commitmail json YAML

Update from Intel SDM:
- Add busclock values for Airmont.

(msaitoh)

2015-03-27 05:31:35 UTC MAIN commitmail json YAML

Update from Intel SDM:
- Add Atom Z8000, Future gen Xeon (Broadwell), Next gen Xeon Phi and so on.
- Add comments.

(msaitoh)

2015-03-27 05:31:23 UTC MAIN commitmail json YAML

2015-03-27 01:51:34 UTC MAIN commitmail json YAML

src/external/gpl3/gcc/dist/gcc/common/config/riscv/riscv-common.c@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/constraints.md@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/crti.asm deleted
src/external/gpl3/gcc/dist/gcc/config/riscv/crtn.asm deleted
src/external/gpl3/gcc/dist/gcc/config/riscv/default-32.h@1.1 / diff / nxr@1.1
src/external/gpl3/gcc/dist/gcc/config/riscv/div.S deleted
src/external/gpl3/gcc/dist/gcc/config/riscv/elf.h@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/linux.h@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/linux64.h@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/opcode-riscv.h@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/peephole.md@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/riscv-fp.c deleted
src/external/gpl3/gcc/dist/gcc/config/riscv/riscv-opc.h@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/riscv-protos.h@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/riscv.c@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/riscv.h@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/riscv.md@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/riscv.opt@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/sync.md@1.3 / diff / nxr@1.3
src/external/gpl3/gcc/dist/gcc/config/riscv/t-elf@1.2 / diff / nxr@1.2
src/external/gpl3/gcc/dist/gcc/config/riscv/t-linux64@1.2 / diff / nxr@1.2

Update gcc to use new ABI for RISCV

(matt)

2015-03-26 22:20:42 UTC MAIN commitmail json YAML

Move initialization of savederr to the block where it is used
to avoid spurious warning from gcc 5

(sjg)

2015-03-26 22:04:38 UTC MAIN commitmail json YAML

Use less macros for same output.

(wiz)

2015-03-26 22:01:42 UTC MAIN commitmail json YAML

Trailing whitespace.

(skrll)

2015-03-26 22:00:45 UTC MAIN commitmail json YAML

Fixes from PR/49622

- Use bit definitions from the header instead of magic numbers
- Remove the 'BYPASS' bit (4), otherwise all the careful setup
  of the ALE is futile - the BYPASS bit is described in the
  AM3358 datasheet as "When in bypass mode, all CPGMAC_SL
  received packets are forwarded only to the host port (port 0)"
  so effectively it's a promiscuous enable
- During cpsw_stop the MISC interrupts were being left enabled
- Remove unnecessary cpi assignment before loop.

(skrll)

2015-03-26 21:38:49 UTC MAIN commitmail json YAML

Add wapbl(9) man page.

(riastradh)

2015-03-26 20:13:28 UTC MAIN commitmail json YAML

Add missing new lines.

(nakayama)

2015-03-26 17:40:16 UTC MAIN commitmail json YAML

Trivial printf format changes and typo fix

(prlw1)

2015-03-26 16:26:35 UTC MAIN commitmail json YAML

amlogic_genfb_hdmi_write_4 is currently unused, mark it as such.

(joerg)

2015-03-26 16:19:26 UTC MAIN commitmail json YAML

Note the uhub the DPRINTF is about in many cases

(skrll)

2015-03-26 16:15:38 UTC netbsd-7 commitmail json YAML

2015-03-26 16:14:47 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #645):
sys/arch/zaurus/include/bootconfig.h: revision 1.2
merge common information (fix build)

(martin)

2015-03-26 16:09:52 UTC netbsd-7 commitmail json YAML

Pull up the following revisions, requested by christos in #644:

sys/dev/scsipi/scsipi_base.c 1.161 - 1.164

Use size for the size argument of memcmp, not the result of a compare.

PR/49054: Add a quirk for the ES-6600 RAID controller which does not do
INQUIRY3 properly. Unfortunately looking at the length does not solve
the problem since other devices send greater lengths too.

src is too big these days to tolerate superfluous apostrophes.  It's
"its", people!

PR/49054: Uwe Toenjes: Some RAID controllers return more bytes in the
scsi 3 inquiry command than expected by the size of the scsi 3 inquiry
packet. This can be detected by looking at the additional_length field
returned by the scsi 2 inquiry. If that's the case, avoid doing the
scsi 3 inquiry because we can't handle the extra bytes later.

(martin)

2015-03-26 15:53:58 UTC MAIN commitmail json YAML

Convert to USBHIST. Inspired by patch from Takahiro HAYASHI

(skrll)

2015-03-26 14:42:56 UTC MAIN commitmail json YAML

Not all iwm hardware supports the 5GHz band.  Make setting 11a rates
and scanning conditional on the 5GHz support bit in the nvm.

From OpenBSD rev. 1.39. Arranged by me.

(nonaka)

2015-03-26 13:44:46 UTC netbsd-7 commitmail json YAML

2015-03-26 13:39:35 UTC netbsd-7 commitmail json YAML

Pull up the following revisions (via patch), requested by msaitoh in #641:

sys/dev/pci/files.pci 1.374
sys/dev/pci/ixgbe/ixgbe.h 1.3
sys/dev/pci/ixgbe/ixgbe.c 1.20-1.23
sys/dev/pci/ixgbe/ixgbe_type.h 1.3-1.7
sys/dev/pci/ixgbe/ixgbe_82599.c 1.4-1.5
sys/dev/pci/ixgbe/ixgbe_api.c 1.3-1.4
sys/dev/pci/ixgbe/ixgbe_vf.h 1.2
sys/dev/pci/ixgbe/ixv.c 1.3-1.4
sys/dev/pci/ixgbe/ixv.h 1.3

- Sync ixg(4) up to FreeBSD r230572.
  - Fix in the interrupt handler to make sure the stack TX queue is processed.
    (FreeBSD r222588)
  - The maximum read size of incoming packets is done in 1024-byte increments.
    The current code was rounding down the maximum frame size instead of
    routing up, resulting in a read size of 1024 bytes, in the non-jumbo
    frame case, and splitting the packets across multiple mbufs.
    (FreeBSD r225045)
  - Consequently the above problem exposed another issue, which is when
    packets were splitted across multiple mbufs, and all of the mbufs in the
    chain have the M_PKTHDR flag set. (FreeBSD r225045)
  - Use the correct constant for conversion between interrupt rate
    and EITR values (the previous values were off by a factor of 2)
    (FreeBSD r230572)
  - Make dev.ix.N.queueM.interrupt_rate a RW sysctl variable. Changing
    individual values affects the queue immediately, and propagates to all
    interfaces at the next reinit. (FreeBSD r230572)
  - Add dev.ix.N.queueM.irqs rdonly sysctl, to export the actual interrupt
    counts. (FreeBSD r230572)
  - Some netmap related changes.
- Fix a bug that vlan setting may not apply to the parent interface correctly.
- Add 82599EN_SFP and 82599_SFP_SF_QP.
- Modify to make Intel Intel 10G Ethernet (ixg(4)) virtual function ixv(4)
  compilable. Not completed yet. It's required to use MSI-X.
- Change comments, tabs and spaces to make difference among *BSDs small.
- Enclose macro argument correctly. Same as *BSDs. No binary change.
- Add missing parenthesis in IXGBE_CORE_LOCK_ASSERT() macro. No binary change.

(martin)

2015-03-26 13:34:51 UTC MAIN commitmail json YAML

Don't build the __eabi_ aliases in the arm rump kernel.

These are provided by libc in userspace, so leave out of kernel

(justin)

2015-03-26 11:59:38 UTC MAIN commitmail json YAML

Fix prototypes to match definitions

(justin)

2015-03-26 11:31:57 UTC MAIN commitmail json YAML

2015-03-26 11:30:50 UTC netbsd-7 commitmail json YAML

2015-03-26 11:17:08 UTC MAIN commitmail json YAML

Return type of compat wait functions should be pid_t not int.

(justin)

2015-03-26 11:08:43 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by manu in ticket #640):
bin/dd/extern.h: revision 1.23
bin/dd/dd.1: revision 1.26
bin/dd/dd.1: revision 1.27
bin/dd/dd.h: revision 1.16
bin/dd/dd.c: revision 1.50
bin/dd/Makefile: revision 1.18
bin/dd/args.c: revision 1.39
Add iflag and oflag operands to dd(1)

Like GNU dd(1) similar operands, iflag and oflag allow specifying the
O_* flags given to open(2) for the input and the output file. The values
are comma-sepratated, lower-case, O_ prefix-stripped constants documented
in open(2).

Since iflag and oflag override default values, specifying oflag means
O_CREATE is not set by default and must be specified explicitely.
Some values do not make sense (e.g.: iflag=directory) but are still used
and will raise a warning. For oflag, values rdonly, rdwr and wronly are
filtered out with a warning (dd(1) attempts open(2) with O_RDWR and
then O_WRONLY on failure).

Specifying oflag=trunc along with (seek, oseek or conv=notrunc) is
contradictory and will raise an error.

iflag and oflag are disabled if building with -DMALLPROG

New sentence, new line. Fix typos. Bump date for previous.

(martin)

2015-03-26 10:59:58 UTC netbsd-7 commitmail json YAML

2015-03-26 10:54:36 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #635):
etc/rc.d/Makefile: revision 1.92
distrib/sets/lists/man/mi: revision 1.1497
share/man/man5/Makefile: revision 1.71
etc/defaults/rc.conf: revision 1.132
etc/rc.d/modules: revision 1.1
usr.sbin/postinstall/postinstall: revision 1.190
distrib/sets/lists/etc/mi: revision 1.236
etc/mtree/special: revision 1.152
share/man/man5/modules.conf.5: revision 1.1
Process /etc/modules.conf (if present) at startup, before securelevel is
raised, to allow module loading on ports without a module aware bootloader.

(martin)

2015-03-26 10:37:06 UTC MAIN commitmail json YAML

Note import of dhcpcd-6.8.0

(roy)

2015-03-26 10:26:38 UTC MAIN commitmail json YAML

2015-03-26 10:05:26 UTC netbsd-7 commitmail json YAML

2015-03-26 10:01:03 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by snj in ticket #619):
external/mit/xorg/lib/freetype/Makefile: revision 1.15
distrib/sets/lists/xdebug/shl.mi: revision 1.21 (patch)
distrib/sets/lists/xbase/shl.mi: revision 1.60 (patch)
external/mit/xorg/lib/freetype/shlib_version: revision 1.8
external/mit/xorg/lib/freetype/freetype/Makefile: revision 1.19
Update for freetype 2.5.5.
Bring back rpath fixup that was lost in revision 1.11

(martin)

2015-03-26 09:45:57 UTC netbsd-7 commitmail json YAML

xsrc/external/mit/freetype/dist/CMakeLists.txt@1.1.1.1.2.1 / diff / nxr@1.1.1.1.2.1
xsrc/external/mit/freetype/dist/ChangeLog@1.1.1.7.2.1 / diff / nxr@1.1.1.7.2.1
xsrc/external/mit/freetype/dist/ChangeLog.21@1.1.1.2.10.1 / diff / nxr@1.1.1.2.10.1
xsrc/external/mit/freetype/dist/Jamfile@1.1.1.7.2.1 / diff / nxr@1.1.1.7.2.1
xsrc/external/mit/freetype/dist/README@1.1.1.7.2.1 / diff / nxr@1.1.1.7.2.1
xsrc/external/mit/freetype/dist/builds/cmake/iOS.cmake@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
xsrc/external/mit/freetype/dist/builds/detect.mk@1.1.1.2.2.1 / diff / nxr@1.1.1.2.2.1
xsrc/external/mit/freetype/dist/builds/freetype.mk@1.1.1.3.2.1 / diff / nxr@1.1.1.3.2.1
xsrc/external/mit/freetype/dist/builds/mac/freetype-Info.plist@1.1.1.1.2.2 / diff / nxr@1.1.1.1.2.2
xsrc/external/mit/freetype/dist/builds/mac/ftmac.c@1.1.1.4.2.1 / diff / nxr@1.1.1.4.2.1
xsrc/external/mit/freetype/dist/builds/toplevel.mk@1.1.1.5.2.1 / diff / nxr@1.1.1.5.2.1
xsrc/external/mit/freetype/dist/builds/unix/config.guess@1.1.1.6.2.1 / diff / nxr@1.1.1.6.2.1
xsrc/external/mit/freetype/dist/builds/unix/config.sub@1.1.1.6.2.1 / diff / nxr@1.1.1.6.2.1
xsrc/external/mit/freetype/dist/builds/unix/configure@1.1.1.7.2.1 / diff / nxr@1.1.1.7.2.1
xsrc/external/mit/freetype/dist/builds/unix/configure.ac@1.1.1.7.2.1 / diff / nxr@1.1.1.7.2.1
xsrc/external/mit/freetype/dist/builds/unix/configure.raw@1.1.1.7.2.1 / diff / nxr@1.1.1.7.2.1
xsrc/external/mit/freetype/dist/builds/unix/freetype-config.in@1.5.2.1 / diff / nxr@1.5.2.1
xsrc/external/mit/freetype/dist/builds/unix/freetype2.in@1.1.1.5.2.1 / diff / nxr@1.1.1.5.2.1
xsrc/external/mit/freetype/dist/builds/unix/freetype2.m4@1.1.1.2.10.1 / diff / nxr@1.1.1.2.10.1
xsrc/external/mit/freetype/dist/builds/unix/ftconfig.in@1.1.1.6.2.1 / diff / nxr@1.1.1.6.2.1
      :
(more 261 files)
Sync with current, requestd by snj in #619:

external/mit/freetype/dist/builds/mac/freetype-Info.plist up to 1.1.1.1
external/mit/freetype/dist/builds/cmake/iOS.cmake up to 1.1.1.1
external/mit/freetype/dist/builds/windows/vc2010/freetype.user.props up to 1.1.1.1
external/mit/freetype/dist/CMakeLists.txt      up to 1.1.1.2
external/mit/freetype/dist/ChangeLog            up to 1.1.1.8
external/mit/freetype/dist/ChangeLog.21        up to 1.1.1.3
external/mit/freetype/dist/Jamfile              up to 1.1.1.8
external/mit/freetype/dist/README              up to 1.1.1.8
external/mit/freetype/dist/builds/detect.mk    up to 1.1.1.3
external/mit/freetype/dist/builds/freetype.mk  up to 1.1.1.4
external/mit/freetype/dist/builds/toplevel.mk  up to 1.1.1.6
external/mit/freetype/dist/builds/mac/ftmac.c  up to 1.1.1.5
external/mit/freetype/dist/builds/unix/config.guess up to 1.1.1.7
external/mit/freetype/dist/builds/unix/config.sub up to 1.1.1.7
external/mit/freetype/dist/builds/unix/configure up to 1.1.1.8
external/mit/freetype/dist/builds/unix/configure.ac up to 1.1.1.8
external/mit/freetype/dist/builds/unix/configure.raw up to 1.1.1.8
external/mit/freetype/dist/builds/unix/freetype-config.in up to 1.6
external/mit/freetype/dist/builds/unix/freetype2.in up to 1.1.1.6
external/mit/freetype/dist/builds/unix/freetype2.m4 up to 1.1.1.3
external/mit/freetype/dist/builds/unix/ftconfig.in up to 1.1.1.7
external/mit/freetype/dist/builds/unix/unix-def.in up to 1.1.1.5
external/mit/freetype/dist/builds/vms/ftconfig.h up to 1.1.1.6
external/mit/freetype/dist/builds/wince/vc2005-ce/freetype.vcproj up to 1.1.1.7
external/mit/freetype/dist/builds/wince/vc2005-ce/index.html up to 1.1.1.7
external/mit/freetype/dist/builds/wince/vc2008-ce/freetype.vcproj up to 1.1.1.7
external/mit/freetype/dist/builds/wince/vc2008-ce/index.html up to 1.1.1.7
external/mit/freetype/dist/builds/windows/vc2005/freetype.vcproj up to 1.1.1.2
external/mit/freetype/dist/builds/windows/vc2005/index.html up to 1.1.1.2
external/mit/freetype/dist/builds/windows/vc2008/freetype.vcproj up to 1.1.1.2
external/mit/freetype/dist/builds/windows/vc2008/index.html up to 1.1.1.2
external/mit/freetype/dist/builds/windows/vc2010/freetype.sln up to 1.1.1.2
external/mit/freetype/dist/builds/windows/vc2010/freetype.vcxproj up to 1.1.1.2
external/mit/freetype/dist/builds/windows/vc2010/index.html up to 1.1.1.2
external/mit/freetype/dist/builds/windows/visualc/freetype.dsp up to 1.1.1.2
external/mit/freetype/dist/builds/windows/visualc/freetype.vcproj up to 1.1.1.2
external/mit/freetype/dist/builds/windows/visualc/index.html up to 1.1.1.2
external/mit/freetype/dist/builds/windows/visualce/freetype.dsp up to 1.1.1.2
external/mit/freetype/dist/builds/windows/visualce/freetype.vcproj up to 1.1.1.2
external/mit/freetype/dist/builds/windows/visualce/index.html up to 1.1.1.2
external/mit/freetype/dist/devel/ftoption.h    up to 1.1.1.7
external/mit/freetype/dist/docs/CHANGES        up to 1.1.1.8
external/mit/freetype/dist/docs/VERSION.DLL    up to 1.1.1.8
external/mit/freetype/dist/docs/freetype-config.1 up to 1.1.1.2
external/mit/freetype/dist/docs/release        up to 1.1.1.6
external/mit/freetype/dist/docs/reference/ft2-auto_hinter.html up to 1.1.1.3
external/mit/freetype/dist/docs/reference/ft2-base_interface.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-basic_types.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-bdf_fonts.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-bitmap_handling.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-bzip2.html up to 1.1.1.4
external/mit/freetype/dist/docs/reference/ft2-cache_subsystem.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-cff_driver.html up to 1.1.1.3
external/mit/freetype/dist/docs/reference/ft2-cid_fonts.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-computations.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-font_formats.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-gasp_table.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-glyph_management.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-glyph_stroker.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-glyph_variants.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-gx_validation.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-gzip.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-header_file_macros.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-header_inclusion.html up to 1.1.1.2
external/mit/freetype/dist/docs/reference/ft2-incremental.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-index.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-lcd_filtering.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-list_processing.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-lzw.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-mac_specific.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-module_management.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-multiple_masters.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-ot_validation.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-outline_processing.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-pfr_fonts.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-quick_advance.html up to 1.1.1.7
external/mit/freetype/dist/docs/reference/ft2-raster.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-sfnt_names.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-sizes_management.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-system_interface.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-toc.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-truetype_engine.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-truetype_tables.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-tt_driver.html up to 1.1.1.2
external/mit/freetype/dist/docs/reference/ft2-type1_tables.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-user_allocation.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-version.html up to 1.1.1.8
external/mit/freetype/dist/docs/reference/ft2-winfnt_fonts.html up to 1.1.1.8
external/mit/freetype/dist/include/freetype.h  up to 1.1.1.2
external/mit/freetype/dist/include/ftadvanc.h  up to 1.1.1.2
external/mit/freetype/dist/include/ftautoh.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftbbox.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftbdf.h      up to 1.1.1.2
external/mit/freetype/dist/include/ftbitmap.h  up to 1.1.1.2
external/mit/freetype/dist/include/ftbzip2.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftcache.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftcffdrv.h  up to 1.1.1.2
external/mit/freetype/dist/include/ftcid.h      up to 1.1.1.2
external/mit/freetype/dist/include/fterrdef.h  up to 1.1.1.2
external/mit/freetype/dist/include/ftgasp.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftglyph.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftgxval.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftgzip.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftimage.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftincrem.h  up to 1.1.1.2
external/mit/freetype/dist/include/ftlcdfil.h  up to 1.1.1.2
external/mit/freetype/dist/include/ftlist.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftlzw.h      up to 1.1.1.2
external/mit/freetype/dist/include/ftmm.h      up to 1.1.1.2
external/mit/freetype/dist/include/ftmodapi.h  up to 1.1.1.2
external/mit/freetype/dist/include/ftotval.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftoutln.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftpfr.h      up to 1.1.1.2
external/mit/freetype/dist/include/ftrender.h  up to 1.1.1.2
external/mit/freetype/dist/include/ftstroke.h  up to 1.1.1.2
external/mit/freetype/dist/include/ftsynth.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftsystem.h  up to 1.1.1.2
external/mit/freetype/dist/include/fttrigon.h  up to 1.1.1.2
external/mit/freetype/dist/include/ftttdrv.h    up to 1.1.1.2
external/mit/freetype/dist/include/fttypes.h    up to 1.1.1.2
external/mit/freetype/dist/include/ftwinfnt.h  up to 1.1.1.2
external/mit/freetype/dist/include/ftxf86.h    up to 1.1.1.2
external/mit/freetype/dist/include/t1tables.h  up to 1.1.1.2
external/mit/freetype/dist/include/ttnameid.h  up to 1.1.1.2
external/mit/freetype/dist/include/tttables.h  up to 1.1.1.2
external/mit/freetype/dist/include/ttunpat.h    up to 1.1.1.2
external/mit/freetype/dist/include/config/ftconfig.h up to 1.1.1.2
external/mit/freetype/dist/include/config/ftoption.h up to 1.1.1.2
external/mit/freetype/dist/include/internal/ftcalc.h up to 1.1.1.2
external/mit/freetype/dist/include/internal/ftgloadr.h up to 1.1.1.2
external/mit/freetype/dist/include/internal/ftobjs.h up to 1.1.1.2
external/mit/freetype/dist/include/internal/ftvalid.h up to 1.1.1.2
external/mit/freetype/dist/include/internal/pshints.h up to 1.1.1.2
external/mit/freetype/dist/include/internal/sfnt.h up to 1.1.1.2
external/mit/freetype/dist/src/autofit/afangles.c up to 1.1.1.4
external/mit/freetype/dist/src/autofit/afblue.c up to 1.1.1.2
external/mit/freetype/dist/src/autofit/afblue.dat up to 1.1.1.2
external/mit/freetype/dist/src/autofit/afblue.h up to 1.1.1.2
external/mit/freetype/dist/src/autofit/afblue.hin up to 1.1.1.2
external/mit/freetype/dist/src/autofit/afcjk.c  up to 1.1.1.7
external/mit/freetype/dist/src/autofit/afcjk.h  up to 1.1.1.6
external/mit/freetype/dist/src/autofit/afglobal.c up to 1.1.1.6
external/mit/freetype/dist/src/autofit/afglobal.h up to 1.1.1.6
external/mit/freetype/dist/src/autofit/afhints.c up to 1.1.1.7
external/mit/freetype/dist/src/autofit/afhints.h up to 1.1.1.6
external/mit/freetype/dist/src/autofit/aflatin.c up to 1.1.1.7
external/mit/freetype/dist/src/autofit/aflatin.h up to 1.1.1.6
external/mit/freetype/dist/src/autofit/aflatin2.c up to 1.1.1.7
external/mit/freetype/dist/src/autofit/afloader.c up to 1.1.1.6
external/mit/freetype/dist/src/autofit/afmodule.c up to 1.1.1.6
external/mit/freetype/dist/src/autofit/afranges.c up to 1.1.1.2
external/mit/freetype/dist/src/autofit/afscript.h up to 1.1.1.2
external/mit/freetype/dist/src/autofit/afstyles.h up to 1.1.1.2
external/mit/freetype/dist/src/autofit/hbshim.c up to 1.1.1.2
external/mit/freetype/dist/src/base/ftadvanc.c  up to 1.1.1.4
external/mit/freetype/dist/src/base/ftbbox.c    up to 1.1.1.5
external/mit/freetype/dist/src/base/ftbdf.c    up to 1.1.1.3
external/mit/freetype/dist/src/base/ftbitmap.c  up to 1.1.1.7
external/mit/freetype/dist/src/base/ftcalc.c    up to 1.1.1.6
external/mit/freetype/dist/src/base/ftfstype.c  up to 1.1.1.2
external/mit/freetype/dist/src/base/ftglyph.c  up to 1.1.1.6
external/mit/freetype/dist/src/base/ftgxval.c  up to 1.1.1.4
external/mit/freetype/dist/src/base/ftinit.c    up to 1.1.1.6
external/mit/freetype/dist/src/base/ftlcdfil.c  up to 1.1.1.5
external/mit/freetype/dist/src/base/ftmac.c    up to 1.1.1.5
external/mit/freetype/dist/src/base/ftmm.c      up to 1.1.1.4
external/mit/freetype/dist/src/base/ftobjs.c    up to 1.1.1.8
external/mit/freetype/dist/src/base/ftoutln.c  up to 1.1.1.6
external/mit/freetype/dist/src/base/ftpfr.c    up to 1.1.1.5
external/mit/freetype/dist/src/base/ftrfork.c  up to 1.1.1.8
external/mit/freetype/dist/src/base/ftstream.c  up to 1.1.1.6
external/mit/freetype/dist/src/base/ftstroke.c  up to 1.1.1.6
external/mit/freetype/dist/src/base/ftsynth.c  up to 1.1.1.6
external/mit/freetype/dist/src/base/fttrigon.c  up to 1.1.1.4
external/mit/freetype/dist/src/base/fttype1.c  up to 1.1.1.3
external/mit/freetype/dist/src/base/ftutil.c    up to 1.1.1.4
external/mit/freetype/dist/src/base/ftwinfnt.c  up to 1.1.1.3
external/mit/freetype/dist/src/bdf/bdfdrivr.c  up to 1.1.1.6
external/mit/freetype/dist/src/bdf/bdflib.c    up to 1.1.1.6
external/mit/freetype/dist/src/bzip2/ftbzip2.c  up to 1.1.1.3
external/mit/freetype/dist/src/cache/ftcbasic.c up to 1.1.1.7
external/mit/freetype/dist/src/cache/ftccmap.c  up to 1.1.1.8
external/mit/freetype/dist/src/cache/ftcmanag.c up to 1.1.1.6
external/mit/freetype/dist/src/cache/ftcsbits.c up to 1.1.1.5
external/mit/freetype/dist/src/cff/cf2font.c    up to 1.1.1.3
external/mit/freetype/dist/src/cff/cf2ft.c      up to 1.1.1.3
external/mit/freetype/dist/src/cff/cf2hints.c  up to 1.1.1.3
external/mit/freetype/dist/src/cff/cf2intrp.c  up to 1.1.1.3
external/mit/freetype/dist/src/cff/cffcmap.c    up to 1.1.1.4
external/mit/freetype/dist/src/cff/cffdrivr.c  up to 1.1.1.7
external/mit/freetype/dist/src/cff/cffgload.c  up to 1.1.1.7
external/mit/freetype/dist/src/cff/cffobjs.c    up to 1.1.1.7
external/mit/freetype/dist/src/cff/cffparse.c  up to 1.1.1.6
external/mit/freetype/dist/src/gxvalid/gxvbsln.c up to 1.1.1.3
external/mit/freetype/dist/src/gxvalid/gxvcommn.c up to 1.1.1.7
external/mit/freetype/dist/src/gxvalid/gxvcommn.h up to 1.1.1.7
external/mit/freetype/dist/src/gxvalid/gxvfeat.c up to 1.1.1.5
external/mit/freetype/dist/src/gxvalid/gxvjust.c up to 1.1.1.4
external/mit/freetype/dist/src/gxvalid/gxvkern.c up to 1.1.1.5
external/mit/freetype/dist/src/gxvalid/gxvlcar.c up to 1.1.1.3
external/mit/freetype/dist/src/gxvalid/gxvmort.c up to 1.1.1.6
external/mit/freetype/dist/src/gxvalid/gxvmort.h up to 1.1.1.3
external/mit/freetype/dist/src/gxvalid/gxvmort0.c up to 1.1.1.4
external/mit/freetype/dist/src/gxvalid/gxvmort1.c up to 1.1.1.4
external/mit/freetype/dist/src/gxvalid/gxvmort2.c up to 1.1.1.4
external/mit/freetype/dist/src/gxvalid/gxvmort4.c up to 1.1.1.3
external/mit/freetype/dist/src/gxvalid/gxvmort5.c up to 1.1.1.4
external/mit/freetype/dist/src/gxvalid/gxvmorx.c up to 1.1.1.6
external/mit/freetype/dist/src/gxvalid/gxvmorx.h up to 1.1.1.2
external/mit/freetype/dist/src/gxvalid/gxvmorx0.c up to 1.1.1.4
external/mit/freetype/dist/src/gxvalid/gxvmorx1.c up to 1.1.1.4
external/mit/freetype/dist/src/gxvalid/gxvmorx2.c up to 1.1.1.6
external/mit/freetype/dist/src/gxvalid/gxvmorx4.c up to 1.1.1.2
external/mit/freetype/dist/src/gxvalid/gxvmorx5.c up to 1.1.1.4
external/mit/freetype/dist/src/gxvalid/gxvopbd.c up to 1.1.1.3
external/mit/freetype/dist/src/gxvalid/gxvprop.c up to 1.1.1.5
external/mit/freetype/dist/src/gxvalid/gxvtrak.c up to 1.1.1.4
external/mit/freetype/dist/src/gzip/ftgzip.c    up to 1.8
external/mit/freetype/dist/src/gzip/inftrees.c  up to 1.1.1.3
external/mit/freetype/dist/src/lzw/ftlzw.c      up to 1.1.1.7
external/mit/freetype/dist/src/lzw/ftzopen.h    up to 1.1.1.3
external/mit/freetype/dist/src/otvalid/otvbase.c up to 1.1.1.2
external/mit/freetype/dist/src/otvalid/otvcommn.c up to 1.1.1.2
external/mit/freetype/dist/src/otvalid/otvcommn.h up to 1.1.1.4
external/mit/freetype/dist/src/otvalid/otvgdef.c up to 1.1.1.3
external/mit/freetype/dist/src/otvalid/otvgpos.c up to 1.1.1.4
external/mit/freetype/dist/src/otvalid/otvgsub.c up to 1.1.1.3
external/mit/freetype/dist/src/otvalid/otvjstf.c up to 1.1.1.2
external/mit/freetype/dist/src/otvalid/otvmath.c up to 1.1.1.4
external/mit/freetype/dist/src/pcf/pcfdrivr.c  up to 1.1.1.7
external/mit/freetype/dist/src/pcf/pcfread.c    up to 1.1.1.7
external/mit/freetype/dist/src/pfr/pfrcmap.c    up to 1.1.1.5
external/mit/freetype/dist/src/pfr/pfrdrivr.c  up to 1.1.1.6
external/mit/freetype/dist/src/pfr/pfrload.c    up to 1.1.1.6
external/mit/freetype/dist/src/pfr/pfrobjs.c    up to 1.1.1.6
external/mit/freetype/dist/src/pfr/pfrsbit.c    up to 1.1.1.4
external/mit/freetype/dist/src/psaux/psconv.c  up to 1.1.1.4
external/mit/freetype/dist/src/psaux/psobjs.c  up to 1.1.1.7
external/mit/freetype/dist/src/psaux/t1cmap.c  up to 1.1.1.4
external/mit/freetype/dist/src/psaux/t1decode.c up to 1.1.1.6
external/mit/freetype/dist/src/pshinter/pshglob.c up to 1.1.1.5
external/mit/freetype/dist/src/pshinter/pshglob.h up to 1.1.1.2
external/mit/freetype/dist/src/pshinter/pshrec.c up to 1.1.1.5
external/mit/freetype/dist/src/pshinter/pshrec.h up to 1.1.1.2
external/mit/freetype/dist/src/psnames/psmodule.c up to 1.1.1.5
external/mit/freetype/dist/src/raster/ftraster.c up to 1.1.1.8
external/mit/freetype/dist/src/sfnt/pngshim.c  up to 1.1.1.2
external/mit/freetype/dist/src/sfnt/sfdriver.c  up to 1.1.1.7
external/mit/freetype/dist/src/sfnt/sfobjs.c    up to 1.1.1.8
external/mit/freetype/dist/src/sfnt/ttcmap.c    up to 1.6
external/mit/freetype/dist/src/sfnt/ttkern.c    up to 1.1.1.6
external/mit/freetype/dist/src/sfnt/ttload.c    up to 1.1.1.8
external/mit/freetype/dist/src/sfnt/ttmtx.c    up to 1.1.1.7
external/mit/freetype/dist/src/sfnt/ttmtx.h    up to 1.1.1.2
external/mit/freetype/dist/src/sfnt/ttpost.c    up to 1.1.1.6
external/mit/freetype/dist/src/sfnt/ttsbit.c    up to 1.1.1.7
external/mit/freetype/dist/src/smooth/ftgrays.c up to 1.1.1.8
external/mit/freetype/dist/src/smooth/ftsmooth.c up to 1.7
external/mit/freetype/dist/src/tools/afblue.pl  up to 1.1.1.2
external/mit/freetype/dist/src/tools/test_trig.c up to 1.1.1.4
external/mit/freetype/dist/src/tools/docmaker/content.py up to 1.1.1.6
external/mit/freetype/dist/src/tools/docmaker/docmaker.py up to 1.1.1.3
external/mit/freetype/dist/src/tools/docmaker/formatter.py up to 1.1.1.2
external/mit/freetype/dist/src/tools/docmaker/sources.py up to 1.1.1.5
external/mit/freetype/dist/src/tools/docmaker/tohtml.py up to 1.1.1.5
external/mit/freetype/dist/src/tools/docmaker/utils.py up to 1.1.1.2
external/mit/freetype/dist/src/tools/ftrandom/ftrandom.c up to 1.1.1.4
external/mit/freetype/dist/src/truetype/ttdriver.c up to 1.1.1.7
external/mit/freetype/dist/src/truetype/ttgload.c up to 1.1.1.7
external/mit/freetype/dist/src/truetype/ttgxvar.c up to 1.1.1.8
external/mit/freetype/dist/src/truetype/ttinterp.c up to 1.1.1.8
external/mit/freetype/dist/src/truetype/ttinterp.h up to 1.1.1.5
external/mit/freetype/dist/src/truetype/ttobjs.c up to 1.1.1.8
external/mit/freetype/dist/src/truetype/ttobjs.h up to 1.1.1.7
external/mit/freetype/dist/src/truetype/ttpload.c up to 1.1.1.7
external/mit/freetype/dist/src/truetype/ttsubpix.c up to 1.1.1.3
external/mit/freetype/dist/src/type1/t1driver.c up to 1.1.1.5
external/mit/freetype/dist/src/type1/t1load.c  up to 1.1.1.8
external/mit/freetype/dist/src/type42/t42objs.c up to 1.1.1.6
external/mit/freetype/dist/src/type42/t42parse.c up to 1.1.1.6
external/mit/freetype/dist/src/winfonts/winfnt.c up to 1.1.1.6

Update to freetype 2.5.5

(martin)

2015-03-26 08:55:17 UTC netbsd-7 commitmail json YAML

2015-03-26 08:53:48 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #643):
sys/arch/arm/vfp/vfp_init.c: revision 1.47
Fix some inverted return values.  Don't return SIGILL if there is an active
FPU exception.

(snj)

2015-03-26 08:50:42 UTC MAIN commitmail json YAML

set ttbr0/1 using correct register(r2).

(hsuenaga)

2015-03-26 08:45:05 UTC MAIN commitmail json YAML

don't use armreg_tlbiasidis_write() and armreg_icialluis_write()
on single processor platforms.

(hsuenaga)

2015-03-26 08:08:27 UTC MAIN commitmail json YAML

Various usb 3 related changes from Takahiro HAYASHI

(skrll)

2015-03-26 04:38:17 UTC MAIN commitmail json YAML

Remove redundant rtcache_invariants

It's done in rtcache_getdst.

(ozaki-r)

2015-03-26 04:05:58 UTC MAIN commitmail json YAML

Tidy up the regular path of ip_forward

No functional change is intended.

(ozaki-r)

2015-03-25 17:25:13 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by apb in ticket #638):
doc/3RDPARTY: patch
external/public-domain/tz/dist/Makefile: up to revision 1.1.1.7
external/public-domain/tz/dist/NEWS: up to revision 1.1.1.7
external/public-domain/tz/dist/Theory: up to revision 1.1.1.3
external/public-domain/tz/dist/antarctica: up to revision 1.1.1.3
external/public-domain/tz/dist/asia: up to revision 1.1.1.7
external/public-domain/tz/dist/australasia: up to revision 1.1.1.5
external/public-domain/tz/dist/backward: up to revision 1.1.1.3
external/public-domain/tz/dist/backzone: up to revision 1.1.1.6
external/public-domain/tz/dist/checklinks.awk: up to revision 1.1.1.1
external/public-domain/tz/dist/checktab.awk: up to revision 1.1.1.6
external/public-domain/tz/dist/europe: up to revision 1.1.1.7
external/public-domain/tz/dist/leap-seconds.list: up to revision 1.1.1.3
external/public-domain/tz/dist/leapseconds: up to revision 1.1.1.4
external/public-domain/tz/dist/leapseconds.awk: up to revision 1.1.1.4
external/public-domain/tz/dist/northamerica: up to revision 1.1.1.7
external/public-domain/tz/dist/southamerica: up to revision 1.1.1.5
external/public-domain/tz/dist/zone.tab: up to revision 1.1.1.4
external/public-domain/tz/dist/zone1970.tab: up to revision 1.1.1.5
Update tzdata from 2014j to 2015b.  Some of the changes are:
* Mongolia will start observing DST in 2015.
* Changes to Palestine DST dates in 2014 and 2015.
* The Mexican state of Quintana Roo, represented by
America/Cancun, changed time zone in Feb 2015.
* Chile's new standard time from 2015 will be its old DST.
* New leap second 2015-06-30 23:59:60 UTC as per IERS Bulletin C 49.
* Corrections to historic times in Iceland and Easter Island.
* Some more zones have been turned into links, when they
differed from existing zones only for times before 1970.

(snj)

2015-03-25 17:18:11 UTC netbsd-7 commitmail json YAML

2015-03-25 17:15:54 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by wiz in ticket #642):
include/stdio.h: revision 1.96
include/unistd.h: revision 1.145
Put fseeko, ftello, pread, and pwrite in the POSIX 2001 namespace.
Ok christos, apb, martin

(snj)

2015-03-25 17:13:26 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #639):
sys/arch/arm/amlogic/amlogic_intr.h: revision 1.6
sys/arch/arm/amlogic/amlogic_io.c: revision 1.8
sys/arch/arm/amlogic/amlogic_reg.h: revision 1.10
sys/arch/arm/amlogic/amlogic_rtc.c: revision 1.1
sys/arch/arm/amlogic/amlogic_rtcreg.h: revision 1.1
sys/arch/arm/amlogic/files.amlogic: revision 1.9
sys/arch/evbarm/conf/ODROID-C1: revision 1.13
Add Amlogic RTC driver, from Anon Ymous

(snj)

2015-03-25 17:09:59 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by apb in ticket #638):
doc/3RDPARTY: patch
external/public-domain/tz/dist/Makefile: up to revision 1.1.1.7
external/public-domain/tz/dist/NEWS: up to revision 1.1.1.7
external/public-domain/tz/dist/Theory: up to revision 1.1.1.3
external/public-domain/tz/dist/antarctica: up to revision 1.1.1.3
external/public-domain/tz/dist/asia: up to revision 1.1.1.7
external/public-domain/tz/dist/australasia: up to revision 1.1.1.5
external/public-domain/tz/dist/backward: up to revision 1.1.1.3
external/public-domain/tz/dist/backzone: up to revision 1.1.1.6
external/public-domain/tz/dist/checklinks.awk: up to revision 1.1.1.1
external/public-domain/tz/dist/checktab.awk: up to revision 1.1.1.6
external/public-domain/tz/dist/europe: up to revision 1.1.1.7
external/public-domain/tz/dist/leap-seconds.list: up to revision 1.1.1.3
external/public-domain/tz/dist/leapseconds: up to revision 1.1.1.4
external/public-domain/tz/dist/leapseconds.awk: up to revision 1.1.1.4
external/public-domain/tz/dist/northamerica: up to revision 1.1.1.7
external/public-domain/tz/dist/southamerica: up to revision 1.1.1.5
external/public-domain/tz/dist/zone.tab: up to revision 1.1.1.4
external/public-domain/tz/dist/zone1970.tab: up to revision 1.1.1.5
Update tzdata from 2014j to 2015b.  Some of the changes are:
* Mongolia will start observing DST in 2015.
* Changes to Palestine DST dates in 2014 and 2015.
* The Mexican state of Quintana Roo, represented by
America/Cancun, changed time zone in Feb 2015.
* Chile's new standard time from 2015 will be its old DST.
* New leap second 2015-06-30 23:59:60 UTC as per IERS Bulletin C 49.
* Corrections to historic times in Iceland and Easter Island.
* Some more zones have been turned into links, when they
differed from existing zones only for times before 1970.

(snj)

2015-03-25 17:01:32 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #637):
sys/arch/arm/amlogic/amlogic_genfb.c: revisions 1.2, 1.3
sys/arch/evbarm/amlogic/amlogic_machdep.c: revision 1.18
sys/arch/arm/amlogic/amlogic_vpureg.h: revision 1.2
Use the hardware scaler to do overscan compensation. You can set the
scaling value as a percentage in two ways -- either as a kernel cmdline
parameter (fb.scale=<pct>) or at runtime with sysctl (hw.genfb0.scale=<pct>).
Setting scale=100 disables the scaler, any other value enables it. For
the cheap TV on my desk, scale=95 gives me a fully visible framebuffer.
--
Support interlaced modes.

(snj)

2015-03-25 16:54:37 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by maxv in ticket #617):
sys/kern/kern_malloc.c: revision 1.144, 1.145
sys/kern/kern_pmf.c: revision 1.37
sys/rump/librump/rumpkern/rump.c: revision 1.316
sys/uvm/uvm_extern.h: revision 1.193
sys/uvm/uvm_km.c: revision 1.139
Don't include <uvm/uvm_extern.h>
--
Kill kmeminit().
--
Remove this MALLOC_DEFINE (M_PMF unused).

(snj)

2015-03-25 16:45:01 UTC netbsd-7 commitmail json YAML

2015-03-25 16:44:34 UTC netbsd-7 commitmail json YAML

Apply patch (requested by ast in ticket #128):
Mention primes(6) change.

(snj)

2015-03-25 16:23:02 UTC MAIN commitmail json YAML

2015-03-25 13:25:05 UTC netbsd-7 commitmail json YAML

2015-03-25 12:53:55 UTC MAIN commitmail json YAML

Fix a bug that vlan setting may not apply to the parent interface correctly.

(msaitoh)

2015-03-25 11:25:10 UTC MAIN commitmail json YAML

- determine bus clock, pass it to devices
- more clock enabling / gpio setup

(macallan)

2015-03-25 11:23:26 UTC MAIN commitmail json YAML

2015-03-24 23:24:55 UTC MAIN commitmail json YAML

Make this run in NetBSD 6 by using st_mtimespec instead of st_mtim.

st_mtimespec is our traditional nonstandard name for what POSIX
called st_mtim in 2008, but these aren't going to run in non-NetBSD
anyway so using the nonstandard name shouldn't be an issue.

(riastradh)

2015-03-24 23:22:47 UTC MAIN commitmail json YAML

zfs tests don't actually need privileges.

(riastradh)

2015-03-24 21:29:52 UTC MAIN commitmail json YAML

2015-03-24 21:26:50 UTC MAIN commitmail json YAML

save and restore IGNORE_EXTCHARS like we do in the getc case. From:
https://bugzilla.redhat.com/attachment.cgi?id=1001894

(christos)

2015-03-24 21:09:11 UTC MAIN commitmail json YAML

There is no need to save/restore l_private in softint_switch now that
cpu_switchto is fixed

(skrll)

2015-03-24 20:24:18 UTC MAIN commitmail json YAML

allow lists as filter addresses.

(christos)

2015-03-24 20:02:18 UTC MAIN commitmail json YAML

2015-03-24 20:01:18 UTC MAIN commitmail json YAML

2015-03-24 19:46:58 UTC MAIN commitmail json YAML

Fix the description of "< x" and "x <> y" for port numbers.

Patch for "< x" from Timo Buhrmester, and for "x <> y" from me.

(apb)

2015-03-24 15:53:39 UTC MAIN commitmail json YAML

Move isb's to before reading count.  Change interrupt to level.

(matt)

2015-03-24 09:16:12 UTC netbsd-6 commitmail json YAML

2015-03-24 09:14:17 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #1271):
share/man/man2/siginfo.2: revision 1.7
Fix some typos and make style more consistent.

(snj)

2015-03-24 09:11:20 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #1270):
share/man/man9/pserialize.9: revision 1.4-1.8
Expand pserialize(9) example to include publish, read, and destroy.
--
Bump date.
--
Fix typo: pserialize_read_exit(s), not s = pserialize_read_exit().
--
Elaborate comment before pserialize_perform.
--
Use membar_consumer until we have membar_datadep_consumer.

(snj)

2015-03-24 09:02:20 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #1269):
usr.bin/vndcompress/Makefile: revision 1.14
usr.bin/vndcompress/vndcompress.c: revision 1.25
Fix vndcompress restart failure fallback when input is a pipe.
Defer seeking the *input* image, or winding it forward, until we are
certain we all ready in the cloop2 output, because when the input
image is a pipe, we don't get a chance to seek back to the beginning
and start from the top instead of restarting.
If restart does fail, don't try to seek the input image back to the
beginning unless we had already tried to seek or wind it forward.
Add some automatic tests for this and related cases.
XXX pullup to netbsd-7, netbsd-6

(snj)

2015-03-24 08:58:41 UTC MAIN commitmail json YAML

Sprinkle some arm_isb() to force execution of the mcrr instructions to get
more accurate values.  (Given that the generic timer is usually running at
a 64th or less of the cpu clock, this only settle to a tick or so.)

(matt)

2015-03-24 08:58:30 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by nakayama in ticket #1267):
sys/dev/cons.c: revision 1.74 via patch
Fix strange kernel output sequence "\n\r" observed in serial
consoles.  Output '\r' before '\n' in conversion.

(snj)

2015-03-24 08:54:51 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by tnn in ticket #1266):
usr.sbin/cpuctl/arch/i386-asm.S: revision 1.4
usr.sbin/cpuctl/arch/x86_64-asm.S: revision 1.5
xgetbv expects XCR0 to be speficied in %ecx, don't leave %ecx undefined

(snj)

2015-03-24 08:51:14 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by nakayama in ticket #1265):
sys/arch/sparc64/sparc64/locore.s: revision 1.380
PANICSTACK is a pointer itself, not a pointer to pointer.

(snj)

2015-03-24 08:38:29 UTC MAIN commitmail json YAML

2015-03-24 07:44:52 UTC MAIN commitmail json YAML

Put fseeko, ftello, pread, and pwrite in the POSIX 2001 namespace.
Ok christos, apb, martin

(wiz)

2015-03-24 07:16:16 UTC MAIN commitmail json YAML

Rework register usage in cpu_switchto so curcpu() is preserved across
ras_lookup.  Only set vfp & tpid registers and do ras lookups if new lwp
is not LW_SYSTEM.  (tested on RPI and atf tests on BPI by skrll).

(matt)

2015-03-23 23:33:22 UTC MAIN commitmail json YAML

port-arm/49737: armgtmr0 timer broken

Use physical timer instead of virtual timer for timecounter. For platforms
that implement virtualization extensions, the CNTVOFF register defines a
virtual offset between the physical count and virtual count. Unfortunately,
the CNTVOFF register is only accessible in secure mode and the value is
per-CPU, so we may end up in a scenario where virtual count reads from
CPU A -> B -> A are not monotonic. No offset applied to physical timer,
so physical count reads are guaranteed to be monotonic.

(jmcneill)

2015-03-23 23:28:55 UTC MAIN commitmail json YAML

Remove -f option as rc_fast is not set in invocation mode.
Do the load_rc_config *after* option parsing.
Catch conflicting -e + -l option specs.

(ast)

2015-03-23 18:33:17 UTC MAIN commitmail json YAML

Add RTF_BROADCAST to mark routes used for the broadcast address when
they are created on the fly. This makes it clear what the route is for
and allows an optimisation in ip_output() by avoiding a call to
in_broadcast() because most of the time we do talk to a host.
It also avoids a needless allocation for the storage of llinfo_arp and
thus vanishes from arp(8) - it showed as incomplete anyway so this
is a nice side effect.

Guard against this and routes marked with RTF_BLACKHOLE in
ip_fastforward().
While here, guard against routes marked with RTF_BLACKHOLE in
ip6_fastforward().
RTF_BROADCAST is IPv4 only, so don't bother checking that here.

(roy)

2015-03-23 17:42:02 UTC MAIN commitmail json YAML

Fix some inverted return values.  Don't return SIGILL if there is an active
FPU exception.

(matt)

2015-03-23 17:28:14 UTC MAIN commitmail json YAML

2015-03-23 15:42:29 UTC MAIN commitmail json YAML

fix typo

"set curlwp to context" -> "set curlwp to implicit context"
from Martin Lucina <martin@lucina.net>

(pooka)

2015-03-23 13:40:34 UTC MAIN commitmail json YAML

Update some xrefs to point to softint(9), not the old/alt spelling.

(riastradh)

2015-03-23 10:22:52 UTC MAIN commitmail json YAML

merge OpenSSL 1.0.1m
do the necessary changes in src/crypto/external/bsd/openssl
update doc

(spz)

2015-03-23 08:19:12 UTC MAIN commitmail json YAML

Reorganize UFP_* flags with markup and more detail.

(riastradh)

2015-03-23 08:11:10 UTC MAIN commitmail json YAML

Bump date for previous. Use more markup in AUTHORS section.

(wiz)

2015-03-23 08:00:33 UTC MAIN commitmail json YAML

Describe UFP_DIRTYONLY and UFP_BACKWARD flags to uvn_findpages.

PR kern/49335

(riastradh)

2015-03-23 07:59:12 UTC MAIN commitmail json YAML

Call these `identities', not `life states'.

(riastradh)

2015-03-23 07:54:44 UTC MAIN commitmail json YAML

2015-03-23 07:52:36 UTC MAIN commitmail json YAML

Add linux_systrace_args.c for arm

(ozaki-r)

2015-03-23 07:51:45 UTC MAIN commitmail json YAML

2015-03-23 07:50:03 UTC MAIN commitmail json YAML

Fix inconsistent argument names

(ozaki-r)

2015-03-23 07:41:16 UTC MAIN commitmail json YAML

Explain why there is no consttime_memcmp().

Inspired by a patch from Kamil Rytarowski.

(apb)

2015-03-23 07:40:31 UTC MAIN commitmail json YAML

2015-03-23 07:30:15 UTC MAIN commitmail json YAML

2015-03-22 23:46:08 UTC MAIN commitmail json YAML

Fix register usage in softint_switch.  load / restore l_private across
softint_dispatch

(matt)

2015-03-22 23:17:57 UTC MAIN commitmail json YAML

Make sure to save the user thread point in softint_switch in case it was
set just before we got an interrupt.  Otherwise if the softint blocks, the
old value would be restored and change lost.

(matt)

2015-03-22 22:47:43 UTC MAIN commitmail json YAML

if not playing (-q mode), don't call ioctl() or try to use the results.
now -q mode works.

(mrg)

2015-03-22 22:39:05 UTC MAIN commitmail json YAML

Sort options in usage.

(wiz)

2015-03-22 22:38:19 UTC MAIN commitmail json YAML

Sort options. Use An -nosplit in AUTHORS section.

(wiz)

2015-03-22 22:35:09 UTC MAIN commitmail json YAML

Use An in AUTHORS section.

(wiz)

2015-03-22 21:45:12 UTC MAIN commitmail json YAML

Mark as volatile, just to be sure.

(joerg)

2015-03-22 20:32:08 UTC MAIN commitmail json YAML

Use ta0 instead of t4 (so at least it compiles for all ABIs)

(martin)

2015-03-22 20:29:04 UTC MAIN commitmail json YAML

Back -O3 optimization out for now - it did not fix the performance
differences to pkgsrc we see, but causes runtime fallout on e.g. sparc64
(just running "openssl" crashes with a SEGFAULT).

(martin)

2015-03-22 19:37:54 UTC MAIN commitmail json YAML

sun4v: Fixed bug in cpu_cache_info_sun4v() causing non-cache nodes to be processed - this should fix crashes on T2-based systems (e.g. T5120) when retrieving L2$ info during bootstrap. Tested by rodent@

(palle)

2015-03-22 19:33:21 UTC MAIN commitmail json YAML

sun4v: added new function mdesc_name_by_idx() for retrieving the name of a node

(palle)

2015-03-22 17:28:22 UTC MAIN commitmail json YAML

2015-03-22 16:23:26 UTC MAIN commitmail json YAML

2015-03-22 14:02:15 UTC MAIN commitmail json YAML

Don't forget to put /ofwboot into the image otherwise boot fails.

Should be pulled up to netbsd-6* and netbsd-7 branches.

(tsutsui)

2015-03-22 13:53:33 UTC MAIN commitmail json YAML

Use the hardware scaler to do overscan compensation. You can set the
scaling value as a percentage in two ways -- either as a kernel cmdline
parameter (fb.scale=<pct>) or at runtime with sysctl (hw.genfb0.scale=<pct>).

Setting scale=100 disables the scaler, any other value enables it. For
the cheap TV on my desk, scale=95 gives me a fully visible framebuffer.

(jmcneill)

2015-03-22 12:48:18 UTC MAIN commitmail json YAML

Mention import of service(8) command from FreeBSD.

(ast)

2015-03-22 10:24:48 UTC MAIN commitmail json YAML

Make the usage appear more standard.

(ast)

2015-03-22 09:57:42 UTC MAIN commitmail json YAML

Import a substantially modified service(8) command from FreeBSD to
manage rc.d scripts.  This command is well known on most other Unixes
and should help soften the learning curve for Unix admins coming
to NetBSD.

(ast)

2015-03-22 09:45:50 UTC MAIN commitmail json YAML

Appease various mandoc -Tlint warnings and update copyright while we're here

(ast)

2015-03-22 08:09:44 UTC nick-nhusb commitmail json YAML

Indentation and whitespace.

(skrll)

2015-03-22 08:07:34 UTC nick-nhusb commitmail json YAML

2015-03-21 19:10:44 UTC MAIN commitmail json YAML

2015-03-21 17:56:02 UTC netbsd-7 commitmail json YAML

2015-03-21 17:51:21 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by martin in ticket #621):
sys/arch/arm/vfp/vfp_init.c: revisions 1.43-1.46
If we own the FPU, don't take anymore undefined faults.  Instead generate
SIGILLs since we obviously don't understand the instruction.
--
Don't try to catch undefined VFP instructions if we own the the FPU.
Let them raise SIGILL.
--
Not only check to see if we own the VFP but that the VFP is enabled.
--
Remove extra )

(snj)

2015-03-21 17:49:03 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by rmind in ticket #630):
sys/net/npf/npf_ctl.c: revision 1.41
sys/net/npf/npf_ruleset.c: revision 1.42
usr.sbin/npf/npfctl/npf_build.c: revision 1.39
usr.sbin/npf/npfctl/npf_show.c: revision 1.18
NPF: replace the TAILQ of the dynamic rules with a linked list and fix the
inheriting of the active dynamic rules during the reload; also, fix a bug
in the insert path by putting a memory barrier in the right place.
--
npfctl:
- Fix the filter criteria when to/from is omitted but port used.
- Print more user-friendly error if an NPF table has a duplicate entry.

(snj)

2015-03-21 17:43:27 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by joerg in ticket #633):
sys/arch/arm/include/mcontext.h: revision 1.17
Ensure _lwp_setcontext gets consistent language binding.

(snj)

2015-03-21 17:41:38 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by joerg in ticket #632):
lib/libc/arch/arm/gen/flt_rounds.c: revision 1.5
lib/libc/arch/mips/gen/flt_rounds.c: revision 1.9
lib/libc/arch/powerpc/gen/flt_rounds.c: revision 1.12
lib/libc/arch/powerpc64/gen/flt_rounds.c: revision 1.2
lib/libc/arch/sh3/gen/flt_rounds.c: revision 1.6
Call libc's fpgetround.

(snj)

2015-03-21 17:34:21 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by nonaka in ticket #629):
sys/dev/pckbport/synaptics.c: revision 1.33
Fix clickpad button detection (From Rhialto)

(snj)

2015-03-21 17:32:13 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by nakayama in ticket #628):
sys/arch/sparc64/sparc64/autoconf.c: revision 1.202
sys/arch/sparc64/sparc64/machdep.c: revision 1.281
Reuse results of "bootpath" and "bootargs" from openfirmware
instead of calling openfirmware in each sysctl CPU_BOOT*.
This change reduces openfirmware calls from userland since sysctl
CPU_BOOTED_KERNEL is used in system commands such as pstat and
netstat.

(snj)

2015-03-21 17:30:43 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by mrg in ticket #626):
sys/dev/usb/TODO.usbmp: revision 1.9
sys/dev/usb/uatp.c: revision 1.11
sys/dev/usb/ucycom.c: revision 1.42
sys/dev/usb/uhid.c: revision 1.93, 1.94
sys/dev/usb/uhidev.c: revision 1.63
sys/dev/usb/uhidev.h: revision 1.17
sys/dev/usb/ukbd.c: revision 1.130
sys/dev/usb/uyurex.c: revision 1.10
properly protect uhid's sc_q member with sc_lock.  should fix PR#49728.
while here, remove D_MPSAFE from uhid* and all uhid users, as it really
needs all the callers to be safe and they're not.
--
don't take the device lock when stopping the uhidev.  that calls
to abort and close pipes, both of which may take an adaptive lock.
fixes a LOCKDEBUG abort see on one particular machine.

(snj)

2015-03-21 17:24:20 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by skrll in ticket #627):
sys/arch/arm/cortex/gic.c: revision 1.16
Trailing whitespace

(snj)

2015-03-21 17:11:35 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #634):
distrib/sets/lists/modules/md.amd64: revision 1.51
distrib/sets/lists/modules/md.evbppc.powerpc: revision 1.5
distrib/sets/lists/modules/md.i386: revision 1.55
distrib/sets/lists/modules/mi: revision 1.71
sys/dev/i2c/au8522.c: revision 1.7
sys/dev/i2c/cx24227.c: revision 1.7
sys/dev/i2c/dbcool.c: revision 1.42
sys/dev/i2c/hytp14.c: revision 1.3
sys/dev/i2c/i2c_exec.c: revision 1.10
sys/dev/i2c/lg3303.c: revision 1.9
sys/dev/i2c/mt2131.c: revision 1.5
sys/dev/i2c/nxt2k.c: revision 1.4
sys/dev/i2c/sdtemp.c: revision 1.24
sys/dev/i2c/spdmem_i2c.c: revision 1.10
sys/dev/i2c/tvpll.c: revision 1.6
sys/dev/i2c/xc3028.c: revision 1.7
sys/dev/i2c/xc5k.c: revision 1.6
sys/dev/i2c/zl10353.c: revision 1.4
sys/modules/Makefile: revision 1.143
sys/modules/i2cexec/Makefile: revision 1.1
i2c devices don't actually have a dependency on "iic" (the bus driver)
but on "i2cexec". Create an i2cexec module (i2c_exec.c) to mirror the
dependencies in files.i2c and switch device drivers to depend on "i2cexec"
module instead.
A kernel with a USB stack and no I2C controller / bus attachment would spit
out a bunch of "WARNING: module error: can't find builtin dependency `iic'"
messages at boot. This change solves that problem.

(snj)

2015-03-21 16:58:31 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #624):
sys/dev/mii/rgephy.c: revision 1.38
sys/dev/mii/rgephyreg.h: revision 1.7
add RTL8211F support

(snj)

2015-03-21 16:42:55 UTC nick-nhusb commitmail json YAML

G/C unused variable/code

(skrll)

2015-03-21 16:42:17 UTC MAIN commitmail json YAML

Actually create the "done" files, and test them for existence.

(apb)

2015-03-21 15:56:54 UTC MAIN commitmail json YAML

2015-03-21 15:54:11 UTC MAIN commitmail json YAML

zoneinfo: Import tzdata2015b. [apb 20150321]
Also s/tzdata/tzcode in another line.

(apb)