Sunday, March 31, 2019

NEW: devel/llvm (Extra Clang Tools)

Enable clang extra tools in devel/llvm to provide some useful C/C++
tools. I started with the extra tools because we don't have an C++ Language
Server Protocol (LSP) server in the tree but I want to play with it.

However, build and works fine on amd64. Notable changes:

- Zap all ":Bool" tags in cmake configure args. It's 2019 and cmake is
smart enough.
- Set CLANG_ENABLE_STATIC_ANALYZER=True, CLANG_INCLUDE_TESTS=True to
build clang-tidy and enable test. (It is ignored if the folder extra
don't exists)
- Adjust WANTLIB

Comments? OK?

RS

Index: Makefile
===================================================================
RCS file: /cvs/ports/devel/llvm/Makefile,v
retrieving revision 1.216
diff -u -p -u -p -r1.216 Makefile
--- Makefile 9 Mar 2019 06:18:11 -0000 1.216
+++ Makefile 1 Apr 2019 06:25:18 -0000
@@ -8,9 +8,10 @@ ONLY_FOR_ARCHS = ${LLVM_ARCHS}

DPB_PROPERTIES = parallel

-MULTI_PACKAGES = -main -python -lldb
+MULTI_PACKAGES = -main -python -lldb -extras
COMMENT-main = modular, fast C/C++/ObjC compiler, static analyzer and tools
COMMENT-lldb = LLDB debugger
+COMMENT-extras = clang extra tools
COMMENT-python = Python bindings for Clang

LLVM_V = 7.0.1
@@ -20,13 +21,15 @@ PKGSPEC-main = llvm-=${LLVM_V}
PKGNAME-main = llvm-${LLVM_V}
PKGNAME-python = py-llvm-${LLVM_V}
PKGNAME-lldb = lldb-${LLVM_V}
+PKGNAME-extras = extras-${LLVM_V}
REVISION-main = 9
REVISION-lldb = 0
CATEGORIES = devel
DISTFILES = llvm-${LLVM_V}.src${EXTRACT_SUFX} \
cfe-${LLVM_V}.src${EXTRACT_SUFX} \
lld-${LLVM_V}.src${EXTRACT_SUFX} \
- lldb-${LLVM_V}.src${EXTRACT_SUFX}
+ lldb-${LLVM_V}.src${EXTRACT_SUFX} \
+ clang-tools-extra-${LLVM_V}.src${EXTRACT_SUFX}
MASTER_SITES = https://www.llvm.org/releases/${LLVM_V}/
EXTRACT_SUFX = .tar.xz

@@ -42,10 +45,10 @@ MAINTAINER= Jeremie Courreges-Anglas <jc
# BSD
PERMIT_PACKAGE_CDROM = Yes

-WANTLIB = ${COMPILER_LIBCXX} c curses edit form m panel pthread \
+WANTLIB = ${COMPILER_LIBCXX} c edit form m panel pthread \
${MODPY_WANTLIB} z

-PSEUDO_FLAVORS = no_lldb
+PSEUDO_FLAVORS = no_lldb _no_tools
FLAVOR ?=
NOT_FOR_ARCHS-lldb = ${GCC4_ARCHS}

@@ -72,18 +75,24 @@ WANTLIB-python = clang
RUN_DEPENDS-python = ${MODPY_RUN_DEPENDS}
LIB_DEPENDS-python = ${BUILD_PKGPATH},-main

-WANTLIB-lldb = clang
+WANTLIB-lldb = ${COMPILER_LIBCXX} clang c curses edit form m panel
+WANTLIB-lldb += ${MODPY_WANTLIB}
LIB_DEPENDS-lldb = ${BUILD_PKGPATH},-main
RUN_DEPENDS-lldb = ${MODPY_RUN_DEPENDS} \
devel/py-six

-SEPARATE_BUILD = Yes
-CONFIGURE_ARGS = -DLLVM_ENABLE_FFI:Bool=False \
- -DLLVM_ENABLE_TERMINFO:Bool=False \
- -DLLVM_ENABLE_RTTI:Bool=True \
- -DCMAKE_DISABLE_FIND_PACKAGE_LibXml2:Bool=True \
- -DLLVM_LINK_LLVM_DYLIB:Bool=True \
- -DLLVM_BUILD_LLVM_DYLIB:Bool=True \
+WANTLIB-extras = ${COMPILER_LIBCXX} c m clang
+LIB_DEPENDS-extras = ${BUILD_PKGPATH},-main
+RUN_DEPENDS-extras = ${MODPY_RUN_DEPENDS}
+
+CONFIGURE_ARGS = -DLLVM_ENABLE_FFI=False \
+ -DLLVM_ENABLE_TERMINFO=False \
+ -DLLVM_ENABLE_RTTI=True \
+ -DCLANG_ENABLE_STATIC_ANALYZER=True \
+ -DCLANG_INCLUDE_TESTS=True \
+ -DCMAKE_DISABLE_FIND_PACKAGE_LibXml2=True \
+ -DLLVM_LINK_LLVM_DYLIB=True \
+ -DLLVM_BUILD_LLVM_DYLIB=True \
-DGO_EXECUTABLE=GO_EXECUTABLE-NOTFOUND \
-DBacktrace_LIBRARY=''

@@ -111,7 +120,7 @@ PKG_ARGS += -Dpowerpc=1
PKG_ARGS += -Dpowerpc=0
.endif

-TEST_TARGET = check
+TEST_TARGET = check-clang{,-tools}

# XXX sync
GCC_VER = 4.9.4
@@ -127,12 +136,16 @@ post-extract:
mv ${WRKDIR}/cfe-${LLVM_V}.src ${WRKSRC}/tools/clang
mv ${WRKDIR}/lld-${LLVM_V}.src ${WRKSRC}/tools/lld
mv ${WRKDIR}/lldb-${LLVM_V}.src ${WRKSRC}/tools/lldb
+ mv ${WRKDIR}/clang-tools-extra-${LLVM_V}.src ${WRKSRC}/tools/clang/tools/extra

pre-configure:
@${SUBST_CMD} ${WRKSRC}/tools/clang/lib/Driver/ToolChains/OpenBSD.cpp
-@ln -s ${MODPY_BIN} ${WRKDIR}/bin/python
.if !${BUILD_PACKAGES:M-lldb}
rm -r ${WRKSRC}/tools/lldb
+.endif
+.if !${BUILD_PACKAGES:M-extras}
+ rm -r ${WRKSRC}/tools/clang/tools/extra
.endif

post-build:
Index: distinfo
===================================================================
RCS file: /cvs/ports/devel/llvm/distinfo,v
retrieving revision 1.30
diff -u -p -u -p -r1.30 distinfo
--- distinfo 28 Jan 2019 06:27:28 -0000 1.30
+++ distinfo 1 Apr 2019 06:25:18 -0000
@@ -1,8 +1,10 @@
SHA256 (cfe-7.0.1.src.tar.xz) = pFti3eXX1f3N+odrCvkvFk1DSwbp6JtdCxy8Zd/j9Bg=
+SHA256 (clang-tools-extra-7.0.1.src.tar.xz) = TJPH0rsHkjqLJy2j73kUQ4CArraTcl9PxcGc0OJhO+0=
SHA256 (lld-7.0.1.src.tar.xz) = iGmqst0tjgDWmUM1LTFm0VnX6uJhX2amhPSgmZ/HQDE=
SHA256 (lldb-7.0.1.src.tar.xz) = drRr51tBKj0i8NJieTBq5+J0/k15iKIYTFKcOKanaYI=
SHA256 (llvm-7.0.1.src.tar.xz) = o438TbRxAux53MKqYek3IsX28G8KlhBzvYS3j7lJQZs=
SIZE (cfe-7.0.1.src.tar.xz) = 12488668
+SIZE (clang-tools-extra-7.0.1.src.tar.xz) = 901368
SIZE (lld-7.0.1.src.tar.xz) = 912812
SIZE (lldb-7.0.1.src.tar.xz) = 19384628
SIZE (llvm-7.0.1.src.tar.xz) = 28311056
Index: pkg/DESCR-extras
===================================================================
RCS file: pkg/DESCR-extras
diff -N pkg/DESCR-extras
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ pkg/DESCR-extras 1 Apr 2019 06:25:18 -0000
@@ -0,0 +1,14 @@
+The clang-tools-extra contains helpful developer tools using Clangs tooling
+APIs.
+
+- clang-tidy, is a clang-based C++ linter tool.
+- clang-include-fixer, adds missing namespace qualifiers to all instances of an
+ unidentified symbol if the symbol is missing some prefix namespace
+ qualifiers.
+- modularize,is a standalone tool that checks whether a set of headers provides
+ the consistent definitions required to use modules.
+- pp-trace is a standalone tool that traces preprocessor activity.
+- clang-rename is a C++ refactoring tool.
+- clangd is a language server that implements the Language Server Protocol.
+- clang-doc is a tool for generating C and C++ documenation from source code
+ and comments.
Index: pkg/PLIST-extras
===================================================================
RCS file: pkg/PLIST-extras
diff -N pkg/PLIST-extras
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ pkg/PLIST-extras 1 Apr 2019 06:25:18 -0000
@@ -0,0 +1,46 @@
+@comment $OpenBSD: PLIST-extras,v$
+@bin bin/clang-apply-replacements
+@bin bin/clang-change-namespace
+@bin bin/clang-reorder-fields
+@bin bin/clang-tidy
+@bin bin/clang-query
+@bin bin/clangd
+@bin bin/clang-include-fixer
+@bin bin/find-all-symbols
+@bin bin/modularize
+lib/libclangApplyReplacements.a
+lib/libclangChangeNamespace.a
+lib/libclangDaemon.a
+lib/libclangDoc.a
+lib/libclangIncludeFixer.a
+lib/libclangIncludeFixerPlugin.a
+lib/libclangMove.a
+lib/libclangQuery.a
+lib/libclangReorderFields.a
+lib/libclangTidy.a
+lib/libclangTidyAbseilModule.a
+lib/libclangTidyAndroidModule.a
+lib/libclangTidyBoostModule.a
+lib/libclangTidyBugproneModule.a
+lib/libclangTidyCERTModule.a
+lib/libclangTidyCppCoreGuidelinesModule.a
+lib/libclangTidyFuchsiaModule.a
+lib/libclangTidyGoogleModule.a
+lib/libclangTidyHICPPModule.a
+lib/libclangTidyLLVMModule.a
+lib/libclangTidyMPIModule.a
+lib/libclangTidyMiscModule.a
+lib/libclangTidyModernizeModule.a
+lib/libclangTidyObjCModule.a
+lib/libclangTidyPerformanceModule.a
+lib/libclangTidyPlugin.a
+lib/libclangTidyPortabilityModule.a
+lib/libclangTidyReadabilityModule.a
+lib/libclangTidyUtils.a
+lib/libclangTidyZirconModule.a
+lib/libfindAllSymbols.a
+share/clang/clang-include-fixer.el
+share/clang/clang-include-fixer.py
+share/clang/clang-tidy-diff.py
+share/clang/run-clang-tidy.py
+share/clang/run-find-all-symbols.py

Trouble forwarding between mpw's in bridge (6.4)

I am having trouble passing traffic between pseudowires in a bridge in
OpenBSD 6.4. This is the network:

   Physical A  
  +---------------------------------------------+
  |              |
+---------+--------+                    +---------
+---------+
|        em1       |                          |   
    ether1      |
|            |            |           brid
ge99|
| bsd02            |       VPLS A          |           fd
::4202|
|             (em0)+--------------------------+(ether4)   .99.2   |
|                  |mpw2                      |                 
  |
|    vether42      |            |
rtr01             |
|    fd::4201      |            +--------------
-----+
|    .99.1         |             
    
|                  |               
    
|                  |                   
    
|                  |       VPLS B          +-------------
------+
|             (em2)+--------------------------+(ether4)        
  |
|       em3        |mpw3                      |           bridge
99|
+---------+--------+            |           fd::4
203|
          |             |
rtr02     .99.3   |
          |                            
      |                   |
          |Physical C                      
|                   |
          |        +-------------
------+
+---------+--------+       
|       fxp0       |
|      ff::4204    |
|      .99.1       |
| bsd04            |
|                  |
+------------------+      
            
bsd02: OpenBSD 6.4
bsd04: OpenBSD 6.4
rtr01: Mikrotik
rtr02: Mikrotik
ipv4:  192.168.99.0/24
ipv6
:  ff::4200/64
There are no routing protocols running in this address space
Physical A and VPLS A are never enabled/connected at the same time

When Physical A is in use (and VPLS A is disabled), all devices can
ping each other.  However, when VPLS A is in use (and Pysical A is
disconnected), all devices can ping each other EXCEPT that rtr01 and
rtr02 can not ping each other.

Scenario: ping rtr01 from rtr02
Packet captures on:
mpw2: only arp and/or neighbor solicitations
mpw3: only arp and/or neighbor solicitations
em0:  MPLS packets with encapsulated pings
em2:  No MPLS packets at all
The same situation occurs when pinging from rtr02 to rtr01

What I can conclude from this is that either I have made a mistake
somewhere (very likely) or there is a problem with traffic passing
between pseudowires in a bridge. The mpw interfaces are trying to send
traffic out of the bridge in the above scenario, but that traffic
never gets (re)encapsulated into VPLS. This seems to rule out the
Mikrotik routers since the traffic never leaves the physical interface
on bsd02. If the traffic arrives into the bridge from a physical
interface, then it is able to leave through an mpw with proper
encapsulation.  If the traffic enters the bridge from an mpw, then it
is able to leave through a physical interface.  It is only the mpw to
mpw scenario that isn't working.

I do not believe that RSTP is a factor here since there are no loops
(which is why Physical A and VPLS A are never in use at the same
time). I have disabled RSTP on the bridges on the Mikrotiks and I and
removed it from vether42 in the bridge on bsd02.  I do not know how to
disable RSTP on the bridge itself on bsd02, but I doubt that it is the
source of the problem.

Additional information from bsd02:
> ifconfig bridge42
bridge42: flags=41<UP,RUNNING>
        index 8 llprio 3
        groups: bridge
        priority 32768 hellotime 2 fwddelay 15 maxage 20 holdcnt 6
proto rstp
        designated: id 00:00:00:00:00:00 priority 0
        mpw2 flags=3<LEARNING,DISCOVER>
                port 10 ifpriority 0 ifcost 0
        mpw3 flags=3<LEARNING,DISCOVER>
                port 11 ifpriority 0 ifcost 0
        vether42 flags=3<LEARNING,DISCOVER>
                port 12 ifpriority 0 ifcost 0
        em3 flags=3<LEARNING,DISCOVER>
                port 4 ifpriority 0 ifcost 0
        Addresses (max cache: 100, timeout: 240):
                xx:xx:xx:xx:xx:xx mpw3 1 flags=0<>
                xx:xx:xx:xx:xx:xx mpw2 1 flags=0<>

> ifconfig vether42
vether42:
flags=208943<UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST,AUTOCONF6>
mtu 1500
        lladdr fe:e1:ba:d0:64:1c
        index 12 priority 0 llprio 3
        groups: vether egress
        media: Ethernet autoselect
        status: active
        inet6 fe80::5b99:e79f:xxxx:xxxx%vether42 prefixlen 64 scopeid
0xc
        inet6 fd00::4201 prefixlen 64
        inet6 fd00::c447:3e8c:xxxx:xxxx prefixlen 64 autoconf
autoconfprivacy pltime 82114 vltime 600536
        inet6 fd00::329:1a37:535:f12f prefixlen 64 autoconf pltime
604675 vltime 2591875
        inet 192.168.99.1 netmask 0xffffff00 broadcast 192.168.99.255

> sudo cat /etc/ldpd.conf
router-id 192.168.40.1
address-family ipv4 {
      interface em0 {
                 link-hello-interval 5
                 link-hello-holdtime 15
         }
      interface em2 {
                 link-hello-interval 5
                 link-hello-holdtime 15
         }
}

l2vpn vlan42 type vpls {
      bridge bridge42
      interface vether42
  
      pseudowire mpw2 {
                 neighbor-id 192.168.40.2
                 pw-id 42
         }
      pseudowire mpw3 {
                 neighbor-id 192.168.40.3
                 pw-id 42
         }

> ifconfig mpw2         
mpw2: flags=51<UP,POINTOPOINT,RUNNING> mtu 1500
        index 10 priority 0 llprio 3
        encapsulation-type ethernet
        mpls label: local 16 remote 26
        neighbor: 192.168.40.2
        groups: mpw

> ifconfig mpw3
mpw3: flags=51<UP,POINTOPOINT,RUNNING> mtu 1500
        index 11 priority 0 llprio 3
        encapsulation-type ethernet
        mpls label: local 17 remote 39
        neighbor: 192.168.40.3
        groups: mpw

Fix inputmethod/anthy "add-word-dictionary" to work

Hi,

anthy uses "string-to-int" which seems have been obsolete in emacs.
This problem prevented me from adding new era name.

ok?

Index: inputmethods/anthy/Makefile
===================================================================
RCS file: /cvs/ports/inputmethods/anthy/Makefile,v
retrieving revision 1.23
diff -u -p -r1.23 Makefile
--- inputmethods/anthy/Makefile 28 Mar 2019 02:03:27 -0000 1.23
+++ inputmethods/anthy/Makefile 1 Apr 2019 05:08:51 -0000
@@ -8,7 +8,7 @@ DISTNAME = anthy-$V
PKGNAME-main = anthy-$V
PKGNAME-emacs = emacs-anthy-$V
REVISION-main = 2
-REVISION-emacs = 3
+REVISION-emacs = 4

SHARED_LIBS += anthydic 1.0 # .1.0
SHARED_LIBS += anthy 1.0 # .1.0
Index: inputmethods/anthy/patches/patch-src-util_anthy-dic_el
===================================================================
RCS file: inputmethods/anthy/patches/patch-src-util_anthy-dic_el
diff -N inputmethods/anthy/patches/patch-src-util_anthy-dic_el
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ inputmethods/anthy/patches/patch-src-util_anthy-dic_el 1 Apr 2019 05:08:51 -0000
@@ -0,0 +1,29 @@
+$OpenBSD$
+
+Index: src-util/anthy-dic.el
+--- src-util/anthy-dic.el.orig
++++ src-util/anthy-dic.el
+@@ -1,4 +1,4 @@
+-;; anthy-dic.el -- Anthy
++; anthy-dic.el -- Anthy
+
+ ;; Copyright (C) 2001 - 2005
+ ;; Author: Yusuke Tabata<yusuke@w5.dion.ne.jp>
+@@ -70,7 +70,7 @@
+ (defun anthy-dic-get-special-noun-category (word)
+ (let
+ ((res '())
+- (cat (string-to-int
++ (cat (string-to-number
+ (read-from-minibuffer "1:人名 2:地名: "))))
+ (cond ((= cat 1)
+ (setq res '(("品詞" "人名"))))
+@@ -113,7 +113,7 @@
+ (and (string= word "")
+ (setq word (read-from-minibuffer "単語(語幹のみ): ")))
+ (setq yomi (read-from-minibuffer (concat "読み (" word "): ")))
+- (setq cat (string-to-int
++ (setq cat (string-to-number
+ (read-from-minibuffer
+ "カテゴリー 1:一般名詞 2:その他の名詞 3:形容詞 4:副詞: ")))
+ (cond ((= cat 1)

Re: NEW: emulators/gw-libretro

Hi,

On Fri, Dec 7, 2018 at 12:42 AM Anthony J. Bentley <anthony@anjbe.name> wrote:
> On Mon, Nov 19, 2018 at 9:27 PM Anthony J. Bentley <anthony@anjbe.name> wrote:
> > gw-libretro is a libretro core that runs Nintendo Game & Watch simulators.
> >
> > You can test this port with the retroarch package. You can get the
> > simulator files this port emulators from the libretro buildbot site:
> >
> > https://buildbot.libretro.com/assets/cores/Handheld%20Electronic%20Game/
>
> Anyone willing to ok this port?

Now that retroarch works again, anyone want to give this a look?

--
Anthony J. Bentley

PF force egress route to a user

Hello there,

Riccardo Giuntoli writing from Spain, nice to hear from you.
In my pf.conf i want to force all outgoing connection from a specific user
in egress from a machine take a route different from the default. Something
like this (it doesn't work):

match out on egress inet proto {tcp udp} from self nat-to ($vpn_if) user
_tor

Is it possible? Can i isolate a specific user with rdomain and rtable?

Nice regards,

--
Name: Riccardo Giuntoli
Email: taglio@gmail.com
Location: Canyelles, BCN, España
PGP Key: 0x67123739
PGP Fingerprint: CE75 16B5 D855 842FAB54 FB5C DDC6 4640 6712 3739
Key server: hkp://wwwkeys.eu.pgp.net

powerpc bulk build report

bulk build on macppc-1.ports.openbsd.org
started on Mon Mar 4 12:58:21 MST 2019
finished at Sun Mar 31 20:39:36 MDT 2019
lasted 27D23h41m
done with kern.version=OpenBSD 6.5-beta (GENERIC.MP) #451: Sun Mar 3 22:55:40 MST 2019

built packages:9496
Mar 4:429
Mar 5:505
Mar 6:268
Mar 7:258
Mar 8:419
Mar 9:288
Mar 10:195
Mar 11:331
Mar 12:76
Mar 13:244
Mar 14:152
Mar 15:261
Mar 16:247
Mar 17:275
Mar 18:166
Mar 19:258
Mar 20:379
Mar 21:232
Mar 22:255
Mar 23:77
Mar 24:82
Mar 25:216
Mar 26:175
Mar 27:342
Mar 28:328
Mar 29:178
Mar 30:319
Mar 31:2540



critical path missing pkgs: http://build-failures.rhaalovely.net//powerpc/2019-03-04/summary.log

build failures: 93
http://build-failures.rhaalovely.net//powerpc/2019-03-04/audio/audacious-plugins.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/audio/ncmpc.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/audio/qsynth.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/benchmarks/wrk.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/cad/qucs.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/comms/hackrf.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/devel/appstream-glib.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/devel/avr/libc.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/devel/frama-c.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/devel/geany.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/devel/include-what-you-use.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/devel/kdevelop.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/devel/libvmime.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/devel/ocaml-dose.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/devel/omake.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/devel/py-llvmlite,python3.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/devel/qt-creator.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/devel/vte3.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/devel/xtensa-elf/gcc.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/editors/qscintilla,qt5.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/editors/scintilla.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/emulators/BasiliskII.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/emulators/citra.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/emulators/higan.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/emulators/nestopia,-libretro.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/emulators/ppsspp.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/emulators/retroarch.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/emulators/vice.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/games/freeorion.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/games/godot.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/games/grhino.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/games/gzdoom.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/games/openclonk.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/games/pentobi.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/games/supertux.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/geo/qlandkartegt.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/geo/spatialite/gis.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/graphics/aqsis.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/graphics/gegl04.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/graphics/makehuman.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/graphics/openscenegraph.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/graphics/pstoedit.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/inputmethods/scim-fcitx.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/inputmethods/scim-hangul.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/inputmethods/scim-pinyin.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/inputmethods/scim-tables.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/lang/gpc.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/lang/gprolog.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/lang/janet.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/lang/parrot.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/math/coq.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/math/kst.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/math/mlpack,-main.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/math/veusz.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/multimedia/mlt.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/net/bro.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/net/dleyna/renderer.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/net/dleyna/server.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/net/fastnetmon.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/net/filezilla.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/net/haproxy.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/net/megatools.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/net/mosquitto.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/net/mutella.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/net/toxcore.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/net/valknut.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/security/aircrack-ng.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/security/clamav.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/security/encfs.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/security/suricata.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/sysutils/apcupsd,-cgi.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/sysutils/bfs.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/sysutils/facter.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/telephony/iaxclient.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/telephony/pjsua,-main.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/textproc/libwpd.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/textproc/xerces-c.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/www/webkitgtk4.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/gnome/gjs.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/gnome/nautilus.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/gnome/shell-extensions.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/gnome/tracker-miners.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/gnome/usage.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/jgmenu.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/kde4/marble.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/libdbusmenu.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/qt5/qt3d.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/qt5/qtgraphicaleffects.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/qt5/qtquickcontrols,,-main.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/qt5/qtquickcontrols2,,-main.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/spice-gtk.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/waimea.log
http://build-failures.rhaalovely.net//powerpc/2019-03-04/x11/yaru.log

recurrent failures
failures/cad/qucs.log
failures/comms/hackrf.log
failures/devel/appstream-glib.log
failures/devel/avr/libc.log
failures/devel/include-what-you-use.log
failures/devel/libvmime.log
failures/devel/py-llvmlite,python3.log
failures/devel/vte3.log
failures/devel/xtensa-elf/gcc.log
failures/editors/qscintilla,qt5.log
failures/editors/scintilla.log
failures/emulators/BasiliskII.log
failures/emulators/ppsspp.log
failures/emulators/retroarch.log
failures/emulators/vice.log
failures/games/freeorion.log
failures/games/godot.log
failures/games/grhino.log
failures/games/openclonk.log
failures/games/pentobi.log
failures/games/supertux.log
failures/geo/qlandkartegt.log
failures/geo/spatialite/gis.log
failures/graphics/aqsis.log
failures/graphics/makehuman.log
failures/graphics/openscenegraph.log
failures/graphics/pstoedit.log
failures/inputmethods/scim-tables.log
failures/lang/gpc.log
failures/lang/gprolog.log
failures/lang/parrot.log
failures/math/kst.log
failures/math/mlpack,-main.log
failures/math/veusz.log
failures/net/bro.log
failures/net/fastnetmon.log
failures/net/filezilla.log
failures/net/haproxy.log
failures/net/megatools.log
failures/net/mutella.log
failures/net/toxcore.log
failures/net/valknut.log
failures/security/clamav.log
failures/security/encfs.log
failures/sysutils/apcupsd,-cgi.log
failures/sysutils/facter.log
failures/telephony/pjsua,-main.log
failures/textproc/libwpd.log
failures/textproc/xerces-c.log
failures/x11/gnome/gjs.log
failures/x11/gnome/nautilus.log
failures/x11/gnome/shell-extensions.log
failures/x11/gnome/usage.log
failures/x11/jgmenu.log
failures/x11/kde4/marble.log
failures/x11/libdbusmenu.log
failures/x11/qt5/qt3d.log
failures/x11/qt5/qtgraphicaleffects.log
failures/x11/spice-gtk.log
failures/x11/waimea.log
failures/x11/yaru.log
new failures
+++ ls-failures Sun Mar 31 20:40:23 2019
+failures/devel/frama-c.log
+failures/devel/geany.log
+failures/devel/kdevelop.log
+failures/devel/ocaml-dose.log
+failures/devel/omake.log
+failures/devel/qt-creator.log
+failures/games/gzdoom.log
+failures/graphics/gegl04.log
+failures/lang/janet.log
+failures/math/coq.log
+failures/multimedia/mlt.log
+failures/net/dleyna/renderer.log
+failures/net/dleyna/server.log
+failures/net/mosquitto.log
+failures/security/aircrack-ng.log
+failures/security/suricata.log
+failures/sysutils/bfs.log
+failures/telephony/iaxclient.log
+failures/x11/gnome/tracker-miners.log
+failures/x11/qt5/qtquickcontrols,,-main.log
+failures/x11/qt5/qtquickcontrols2,,-main.log
resolved failures
--- ../old/powerpc/last//ls-failures Fri Mar 1 01:01:08 2019
-failures/devel/avr/gdb.log
-failures/editors/abiword.log
-failures/editors/neovim.log
-failures/games/crack-attack.log
-failures/games/spacehulk.log
-failures/graphics/darktable.log
-failures/graphics/k3dsurf.log
-failures/lang/iverilog.log
-failures/mail/mu.log
-failures/math/z3.log
-failures/multimedia/mlt,,-main.log
-failures/net/bitcoin,no_x11.log
-failures/net/knot.log
-failures/net/ktorrent.log
-failures/x11/qt5/qtquickcontrols.log
-failures/x11/qt5/qtquickcontrols2.log

Re: ssh-keygen(1) fingerprint hashes

On 2019-03-31, randy.hartman@gmail.com <randy.hartman@gmail.com> wrote:

> ssh-keygen's available hashes are md5, sha1, sha256, sha384, and
> sha512 (See digest-{openssl,libc}.c). ssh-keygen(1)'s man page
> shows valid fingerprint hashes as only md5 and sha256. All these
> hashes[1] were available when the man page declared only the subset
> as valid. I'm able to use the others with the -E option but is
> there a reason to not consider them valid?

It's an implementation artifact and the other hash algorithms don't
add any value.

MD5 hashes were historically used, but MD5 is broken. SHA256 is
the modern replacement for this purpose.

--
Christian "naddy" Weisgerber naddy@mips.inka.de

[NEW] fonts/asap

Bold, sans serif font with rounded corners. A professionalized version of Comic Sans, maybe?

from pkg/DESCR:

Asap is a contemporary sans-serif family with subtle rounded corners.
Designed by Pablo Cosgaya, Asap ("as soon as possible") has six
styles: Regular, Italic, Medium, Medium Italic, Bold and Bold Italic.
This family, specially developed for screen and desktop use, offers
a standarised character width on all styles, which means lines of
text remain the same length. This useful feature allows users to
change type styles on-the-go without reflowing a text body.

Asap is based on Ancha (designed by Pablo Cosgaya and Hector Gatti),
and has been developed with the collaboration of Andres Torresi.

[NEW] fonts/archivo

bold, headline-type font.

pkg/DESCR

Archivo was designed to be used simultaneously in print and digital
platforms. The technical and aesthetic characteristics of the font
are both crafted for high performance typography. Designed by Hector
Gatti, Archivo supports over 200 world languages. Archivo is a
grotesque sans serif typeface family from Omnibus-Type. It was
originally designed for highlights and headlines.

This family is reminiscent of late nineteenth century American
typefaces. It includes single Black weight and Narrow styles, and
was derived from Chivo.

Re: Touchpad - how to enable two-finger scrolling

Understood. That would make sense as when I run a wsconsctl I see mouse.type=ps2. Would that be indicative of the hardware being unsupported? I've provided my dmesg below:


OpenBSD 6.4 (GENERIC.MP) #364: Thu Oct 11 13:30:23 MDT 2018
deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 8472076288 (8079MB)
avail mem = 8206049280 (7825MB)
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.7 @ 0xebf40 (92 entries)
bios0: vendor Dell Inc. version "A15" date 11/30/2018
bios0: Dell Inc. Latitude 6430U
acpi0 at bios0: rev 2
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP APIC FPDT MCFG HPET SSDT SSDT SSDT DMAR ASF! SLIC BGRT
acpi0: wakeup devices P0P1(S4) USB1(S3) USB2(S3) USB3(S3) USB5(S3) USB6(S3) USB7(S3) PXSX(S4) RP01(S4) PXSX(S4) RP02(S4) PXSX(S4) RP05(S4) PXSX(S4) RP06(S4) PXSX(S4) [...]
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.85 MHz, 06-3a-09
cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu0: 256KB 64b/line 8-way L2 cache
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges
cpu0: apic clock running at 99MHz
cpu0: mwait min=64, max=64, C-substates=0.2.1.1.2, IBE
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.53 MHz, 06-3a-09
cpu1: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu1: 256KB 64b/line 8-way L2 cache
cpu1: smt 0, core 1, package 0
cpu2 at mainbus0: apid 1 (application processor)
cpu2: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.53 MHz, 06-3a-09
cpu2: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu2: 256KB 64b/line 8-way L2 cache
cpu2: smt 1, core 0, package 0
cpu3 at mainbus0: apid 3 (application processor)
cpu3: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.53 MHz, 06-3a-09
cpu3: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu3: 256KB 64b/line 8-way L2 cache
cpu3: smt 1, core 1, package 0
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
acpimcfg0 at acpi0
acpimcfg0: addr 0xf8000000, bus 0-63
acpihpet0 at acpi0: 14318179 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus -1 (P0P1)
acpiprt2 at acpi0: bus 1 (RP01)
acpiprt3 at acpi0: bus 2 (RP02)
acpiprt4 at acpi0: bus -1 (RP05)
acpiprt5 at acpi0: bus 3 (RP06)
acpiprt6 at acpi0: bus -1 (RP07)
acpiprt7 at acpi0: bus -1 (RP08)
acpiprt8 at acpi0: bus -1 (PEG0)
acpiprt9 at acpi0: bus -1 (PEG1)
acpiprt10 at acpi0: bus -1 (PEG2)
acpiprt11 at acpi0: bus -1 (PEG3)
acpiprt12 at acpi0: bus -1 (RP03)
acpiprt13 at acpi0: bus -1 (RP04)
acpiec0 at acpi0
acpicpu0 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpicpu1 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpicpu2 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpicpu3 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpitz0 at acpi0: critical temperature is 107 degC
acpicmos0 at acpi0
"*pnp0c14" at acpi0 not configured
acpibtn0 at acpi0: LID0
acpibtn1 at acpi0: PBTN
acpibtn2 at acpi0: SBTN
acpiac0 at acpi0: AC unit offline
acpibat0 at acpi0: BAT0 model "DELL TRM4D5B" serial 189 type LiP oem "Sanyo"
"DELLABCE" at acpi0 not configured
acpivideo0 at acpi0: VID_
acpivout0 at acpivideo0: LCD_
cpu0: Enhanced SpeedStep 1993 MHz: speeds: 2601, 2600, 2500, 2300, 2200, 2100, 1900, 1800, 1600, 1500, 1400, 1200, 1100, 1000, 800, 754 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Core 3G Host" rev 0x09
inteldrm0 at pci0 dev 2 function 0 "Intel HD Graphics 4000" rev 0x09
drm0 at inteldrm0
inteldrm0: msi
inteldrm0: 1600x900, 32bpp
wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation)
wsdisplay0: screen 1-5 added (std, vt100 emulation)
xhci0 at pci0 dev 20 function 0 "Intel 7 Series xHCI" rev 0x04: msi, xHCI 1.0
usb0 at xhci0: USB revision 3.0
uhub0 at usb0 configuration 1 interface 0 "Intel xHCI root hub" rev 3.00/1.00 addr 1
"Intel 7 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured
puc0 at pci0 dev 22 function 3 "Intel 7 Series KT" rev 0x04: ports: 16 com
com4 at puc0 port 0 apic 2 int 19: ns16550a, 16 byte fifo
com4: probed fifo depth: 0 bytes
em0 at pci0 dev 25 function 0 "Intel 82579LM" rev 0x04: msi, address ec:f4:bb:6d:f6:89
ehci0 at pci0 dev 26 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 16
usb1 at ehci0: USB revision 2.0
uhub1 at usb1 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
azalia0 at pci0 dev 27 function 0 "Intel 7 Series HD Audio" rev 0x04: msi
azalia0: codecs: IDT/0x76df, Intel/0x2806, using IDT/0x76df
audio0 at azalia0
ppb0 at pci0 dev 28 function 0 "Intel 7 Series PCIE" rev 0xc4: msi
pci1 at ppb0 bus 1
ppb1 at pci0 dev 28 function 1 "Intel 7 Series PCIE" rev 0xc4: msi
pci2 at ppb1 bus 2
iwn0 at pci2 dev 0 function 0 "Intel Centrino Ultimate-N 6300" rev 0x35: msi, MIMO 3T3R, MoW, address 3c:a9:f4:a7:4e:ec
ppb2 at pci0 dev 28 function 5 "Intel 7 Series PCIE" rev 0xc4: msi
pci3 at ppb2 bus 3
sdhc0 at pci3 dev 0 function 0 vendor "O2 Micro", unknown product 0x8221 rev 0x05: apic 2 int 17
sdhc0: SDHC 2.0, 50 MHz base clock
sdmmc0 at sdhc0: 4-bit, sd high-speed, mmc high-speed, dma
ehci1 at pci0 dev 29 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 21
usb2 at ehci1: USB revision 2.0
uhub2 at usb2 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
pcib0 at pci0 dev 31 function 0 "Intel QM77 LPC" rev 0x04
ahci0 at pci0 dev 31 function 2 "Intel 7 Series AHCI" rev 0x04: msi, AHCI 1.3
ahci0: port 0: 6.0Gb/s
scsibus1 at ahci0: 32 targets
sd0 at scsibus1 targ 0 lun 0: <ATA, SAMSUNG SSD PM85, EXT4> SCSI3 0/direct fixed naa.5002538844584d30
sd0: 244198MB, 512 bytes/sector, 500118192 sectors, thin
ichiic0 at pci0 dev 31 function 3 "Intel 7 Series SMBus" rev 0x04: apic 2 int 18
iic0 at ichiic0
spdmem0 at iic0 addr 0x52: 8GB DDR3 SDRAM PC3-12800 SO-DIMM
isa0 at pcib0
isadma0 at isa0
pckbc0 at isa0 port 0x60/5 irq 1 irq 12
pckbd0 at pckbc0 (kbd slot)
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pms0 at pckbc0 (aux slot)
wsmouse0 at pms0 mux 0
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT
efifb at mainbus0 not configured
error: [drm:pid0:cpt_set_fifo_underrun_reporting] *ERROR* uncleared pch fifo underrun on pch transcoder A
error: [drm:pid0:intel_pch_fifo_underrun_irq_handler] *ERROR* PCH transcoder A FIFO underrun
sdmmc0: can't enable card
uhub3 at uhub1 port 1 configuration 1 interface 0 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
ugen0 at uhub3 port 4 "Broadcom Corp BCM20702A0" rev 2.00/1.12 addr 3
uvideo0 at uhub3 port 5 configuration 1 interface 0 "CN0XX3RT724873BBS3HJA00 Integrated Webcam" rev 2.00/29.06 addr 4
video0 at uvideo0
ugen1 at uhub3 port 6 "AuthenTec Fingerprint Sensor" rev 2.00/17.03 addr 5
uhub4 at uhub2 port 1 configuration 1 interface 0 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
uhub5 at uhub4 port 8 configuration 1 interface 0 "O2 Micro OZ776 Hub" rev 1.10/1.10 addr 3
ugen2 at uhub5 port 2 "O2 O2Micro CCID SC Reader" rev 1.10/1.10 addr 4
vscsi0 at root
scsibus2 at vscsi0: 256 targets
softraid0 at root
scsibus3 at softraid0: 256 targets
root on sd0a (6c36d3e3bbcd98aa.a) swap on sd0b dump on sd0b
syncing disks... done
rebooting...
OpenBSD 6.4 (GENERIC.MP) #364: Thu Oct 11 13:30:23 MDT 2018
deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 8472076288 (8079MB)
avail mem = 8206049280 (7825MB)
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.7 @ 0xebf40 (92 entries)
bios0: vendor Dell Inc. version "A15" date 11/30/2018
bios0: Dell Inc. Latitude 6430U
acpi0 at bios0: rev 2
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP APIC FPDT MCFG HPET SSDT SSDT SSDT DMAR ASF! SLIC BGRT
acpi0: wakeup devices P0P1(S4) USB1(S3) USB2(S3) USB3(S3) USB5(S3) USB6(S3) USB7(S3) PXSX(S4) RP01(S4) PXSX(S4) RP02(S4) PXSX(S4) RP05(S4) PXSX(S4) RP06(S4) PXSX(S4) [...]
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.88 MHz, 06-3a-09
cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu0: 256KB 64b/line 8-way L2 cache
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges
cpu0: apic clock running at 99MHz
cpu0: mwait min=64, max=64, C-substates=0.2.1.1.2, IBE
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.53 MHz, 06-3a-09
cpu1: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu1: 256KB 64b/line 8-way L2 cache
cpu1: smt 0, core 1, package 0
cpu2 at mainbus0: apid 1 (application processor)
cpu2: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.53 MHz, 06-3a-09
cpu2: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu2: 256KB 64b/line 8-way L2 cache
cpu2: smt 1, core 0, package 0
cpu3 at mainbus0: apid 3 (application processor)
cpu3: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.53 MHz, 06-3a-09
cpu3: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu3: 256KB 64b/line 8-way L2 cache
cpu3: smt 1, core 1, package 0
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
acpimcfg0 at acpi0
acpimcfg0: addr 0xf8000000, bus 0-63
acpihpet0 at acpi0: 14318179 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus -1 (P0P1)
acpiprt2 at acpi0: bus 1 (RP01)
acpiprt3 at acpi0: bus 2 (RP02)
acpiprt4 at acpi0: bus -1 (RP05)
acpiprt5 at acpi0: bus 3 (RP06)
acpiprt6 at acpi0: bus -1 (RP07)
acpiprt7 at acpi0: bus -1 (RP08)
acpiprt8 at acpi0: bus -1 (PEG0)
acpiprt9 at acpi0: bus -1 (PEG1)
acpiprt10 at acpi0: bus -1 (PEG2)
acpiprt11 at acpi0: bus -1 (PEG3)
acpiprt12 at acpi0: bus -1 (RP03)
acpiprt13 at acpi0: bus -1 (RP04)
acpiec0 at acpi0
acpicpu0 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpicpu1 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpicpu2 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpicpu3 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpitz0 at acpi0: critical temperature is 107 degC
acpicmos0 at acpi0
"*pnp0c14" at acpi0 not configured
acpibtn0 at acpi0: LID0
acpibtn1 at acpi0: PBTN
acpibtn2 at acpi0: SBTN
acpiac0 at acpi0: AC unit offline
acpibat0 at acpi0: BAT0 model "DELL TRM4D5B" serial 189 type LiP oem "Sanyo"
"DELLABCE" at acpi0 not configured
acpivideo0 at acpi0: VID_
acpivout0 at acpivideo0: LCD_
cpu0: Enhanced SpeedStep 1993 MHz: speeds: 2601, 2600, 2500, 2300, 2200, 2100, 1900, 1800, 1600, 1500, 1400, 1200, 1100, 1000, 800, 754 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Core 3G Host" rev 0x09
inteldrm0 at pci0 dev 2 function 0 "Intel HD Graphics 4000" rev 0x09
drm0 at inteldrm0
inteldrm0: msi
inteldrm0: 1600x900, 32bpp
wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation)
wsdisplay0: screen 1-5 added (std, vt100 emulation)
xhci0 at pci0 dev 20 function 0 "Intel 7 Series xHCI" rev 0x04: msi, xHCI 1.0
usb0 at xhci0: USB revision 3.0
uhub0 at usb0 configuration 1 interface 0 "Intel xHCI root hub" rev 3.00/1.00 addr 1
"Intel 7 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured
puc0 at pci0 dev 22 function 3 "Intel 7 Series KT" rev 0x04: ports: 16 com
com4 at puc0 port 0 apic 2 int 19: ns16550a, 16 byte fifo
com4: probed fifo depth: 0 bytes
em0 at pci0 dev 25 function 0 "Intel 82579LM" rev 0x04: msi, address ec:f4:bb:6d:f6:89
ehci0 at pci0 dev 26 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 16
usb1 at ehci0: USB revision 2.0
uhub1 at usb1 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
azalia0 at pci0 dev 27 function 0 "Intel 7 Series HD Audio" rev 0x04: msi
azalia0: codecs: IDT/0x76df, Intel/0x2806, using IDT/0x76df
audio0 at azalia0
ppb0 at pci0 dev 28 function 0 "Intel 7 Series PCIE" rev 0xc4: msi
pci1 at ppb0 bus 1
ppb1 at pci0 dev 28 function 1 "Intel 7 Series PCIE" rev 0xc4: msi
pci2 at ppb1 bus 2
iwn0 at pci2 dev 0 function 0 "Intel Centrino Ultimate-N 6300" rev 0x35: msi, MIMO 3T3R, MoW, address 3c:a9:f4:a7:4e:ec
ppb2 at pci0 dev 28 function 5 "Intel 7 Series PCIE" rev 0xc4: msi
pci3 at ppb2 bus 3
sdhc0 at pci3 dev 0 function 0 vendor "O2 Micro", unknown product 0x8221 rev 0x05: apic 2 int 17
sdhc0: SDHC 2.0, 50 MHz base clock
sdmmc0 at sdhc0: 4-bit, sd high-speed, mmc high-speed, dma
ehci1 at pci0 dev 29 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 21
usb2 at ehci1: USB revision 2.0
uhub2 at usb2 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
pcib0 at pci0 dev 31 function 0 "Intel QM77 LPC" rev 0x04
ahci0 at pci0 dev 31 function 2 "Intel 7 Series AHCI" rev 0x04: msi, AHCI 1.3
ahci0: port 0: 6.0Gb/s
scsibus1 at ahci0: 32 targets
sd0 at scsibus1 targ 0 lun 0: <ATA, SAMSUNG SSD PM85, EXT4> SCSI3 0/direct fixed naa.5002538844584d30
sd0: 244198MB, 512 bytes/sector, 500118192 sectors, thin
ichiic0 at pci0 dev 31 function 3 "Intel 7 Series SMBus" rev 0x04: apic 2 int 18
iic0 at ichiic0
spdmem0 at iic0 addr 0x52: 8GB DDR3 SDRAM PC3-12800 SO-DIMM
isa0 at pcib0
isadma0 at isa0
pckbc0 at isa0 port 0x60/5 irq 1 irq 12
pckbd0 at pckbc0 (kbd slot)
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pms0 at pckbc0 (aux slot)
wsmouse0 at pms0 mux 0
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT
efifb at mainbus0 not configured
error: [drm:pid0:cpt_set_fifo_underrun_reporting] *ERROR* uncleared pch fifo underrun on pch transcoder A
error: [drm:pid0:intel_pch_fifo_underrun_irq_handler] *ERROR* PCH transcoder A FIFO underrun
sdmmc0: can't enable card
uhub3 at uhub1 port 1 configuration 1 interface 0 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
ugen0 at uhub3 port 4 "Broadcom Corp BCM20702A0" rev 2.00/1.12 addr 3
uvideo0 at uhub3 port 5 configuration 1 interface 0 "CN0XX3RT724873BBS3HJA00 Integrated Webcam" rev 2.00/29.06 addr 4
video0 at uvideo0
ugen1 at uhub3 port 6 "AuthenTec Fingerprint Sensor" rev 2.00/17.03 addr 5
uhub4 at uhub2 port 1 configuration 1 interface 0 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
uhub5 at uhub4 port 8 configuration 1 interface 0 "O2 Micro OZ776 Hub" rev 1.10/1.10 addr 3
ugen2 at uhub5 port 2 "O2 O2Micro CCID SC Reader" rev 1.10/1.10 addr 4
vscsi0 at root
scsibus2 at vscsi0: 256 targets
softraid0 at root
scsibus3 at softraid0: 256 targets
root on sd0a (6c36d3e3bbcd98aa.a) swap on sd0b dump on sd0b
uhub0 detached
ugen0 detached
video0 detached
uvideo0 detached
ugen1 detached
uhub3 detached
uhub1 detached
ugen2 detached
uhub5 detached
uhub4 detached
uhub2 detached
uhub0 at usb0 configuration 1 interface 0 "Intel xHCI root hub" rev 3.00/1.00 addr 1
uhub1 at usb1 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
uhub2 at usb2 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
sdmmc0: can't enable card
uhub3 at uhub1 port 1 configuration 1 interface 0 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
ugen0 at uhub3 port 4 "Broadcom Corp BCM20702A0" rev 2.00/1.12 addr 3
uvideo0 at uhub3 port 5 configuration 1 interface 0 "CN0XX3RT724873BBS3HJA00 Integrated Webcam" rev 2.00/29.06 addr 4
video0 at uvideo0
ugen1 at uhub3 port 6 "AuthenTec Fingerprint Sensor" rev 2.00/17.03 addr 5
uhub4 at uhub2 port 1 configuration 1 interface 0 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
uhub5 at uhub4 port 8 configuration 1 interface 0 "O2 Micro OZ776 Hub" rev 1.10/1.10 addr 3
ugen2 at uhub5 port 2 "O2 O2Micro CCID SC Reader" rev 1.10/1.10 addr 4
uhub0 detached
ugen0 detached
video0 detached
uvideo0 detached
ugen1 detached
uhub3 detached
uhub1 detached
ugen2 detached
uhub5 detached
uhub4 detached
uhub2 detached
uhub0 at usb0 configuration 1 interface 0 "Intel xHCI root hub" rev 3.00/1.00 addr 1
uhub1 at usb1 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
uhub2 at usb2 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
sdmmc0: can't enable card
uhub3 at uhub1 port 1 configuration 1 interface 0 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
ugen0 at uhub3 port 4 "Broadcom Corp BCM20702A0" rev 2.00/1.12 addr 3
uvideo0 at uhub3 port 5 configuration 1 interface 0 "CN0XX3RT724873BBS3HJA00 Integrated Webcam" rev 2.00/29.06 addr 4
video0 at uvideo0
ugen1 at uhub3 port 6 "AuthenTec Fingerprint Sensor" rev 2.00/17.03 addr 5
uhub4 at uhub2 port 1 configuration 1 interface 0 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
uhub5 at uhub4 port 8 configuration 1 interface 0 "O2 Micro OZ776 Hub" rev 1.10/1.10 addr 3
ugen2 at uhub5 port 2 "O2 O2Micro CCID SC Reader" rev 1.10/1.10 addr 4
syncing disks... done
rebooting...
OpenBSD 6.4 (GENERIC.MP) #364: Thu Oct 11 13:30:23 MDT 2018
deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 8472076288 (8079MB)
avail mem = 8206041088 (7825MB)
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.7 @ 0xebf40 (92 entries)
bios0: vendor Dell Inc. version "A15" date 11/30/2018
bios0: Dell Inc. Latitude 6430U
acpi0 at bios0: rev 2
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP APIC FPDT MCFG HPET SSDT SSDT SSDT DMAR ASF! SLIC BGRT
acpi0: wakeup devices P0P1(S4) USB1(S3) USB2(S3) USB3(S3) USB5(S3) USB6(S3) USB7(S3) PXSX(S4) RP01(S4) PXSX(S4) RP02(S4) PXSX(S4) RP05(S4) PXSX(S4) RP06(S4) PXSX(S4) [...]
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.90 MHz, 06-3a-09
cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu0: 256KB 64b/line 8-way L2 cache
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges
cpu0: apic clock running at 99MHz
cpu0: mwait min=64, max=64, C-substates=0.2.1.1.2, IBE
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.53 MHz, 06-3a-09
cpu1: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu1: 256KB 64b/line 8-way L2 cache
cpu1: smt 0, core 1, package 0
cpu2 at mainbus0: apid 1 (application processor)
cpu2: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.53 MHz, 06-3a-09
cpu2: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu2: 256KB 64b/line 8-way L2 cache
cpu2: smt 1, core 0, package 0
cpu3 at mainbus0: apid 3 (application processor)
cpu3: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.53 MHz, 06-3a-09
cpu3: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu3: 256KB 64b/line 8-way L2 cache
cpu3: smt 1, core 1, package 0
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
acpimcfg0 at acpi0
acpimcfg0: addr 0xf8000000, bus 0-63
acpihpet0 at acpi0: 14318179 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus -1 (P0P1)
acpiprt2 at acpi0: bus 1 (RP01)
acpiprt3 at acpi0: bus 2 (RP02)
acpiprt4 at acpi0: bus -1 (RP05)
acpiprt5 at acpi0: bus 3 (RP06)
acpiprt6 at acpi0: bus -1 (RP07)
acpiprt7 at acpi0: bus -1 (RP08)
acpiprt8 at acpi0: bus -1 (PEG0)
acpiprt9 at acpi0: bus -1 (PEG1)
acpiprt10 at acpi0: bus -1 (PEG2)
acpiprt11 at acpi0: bus -1 (PEG3)
acpiprt12 at acpi0: bus -1 (RP03)
acpiprt13 at acpi0: bus -1 (RP04)
acpiec0 at acpi0
acpicpu0 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpicpu1 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpicpu2 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpicpu3 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpitz0 at acpi0: critical temperature is 107 degC
acpicmos0 at acpi0
"*pnp0c14" at acpi0 not configured
acpibtn0 at acpi0: LID0
acpibtn1 at acpi0: PBTN
acpibtn2 at acpi0: SBTN
acpiac0 at acpi0: AC unit offline
acpibat0 at acpi0: BAT0 model "DELL TRM4D5B" serial 189 type LiP oem "Sanyo"
"DELLABCE" at acpi0 not configured
acpivideo0 at acpi0: VID_
acpivout0 at acpivideo0: LCD_
cpu0: Enhanced SpeedStep 1993 MHz: speeds: 2601, 2600, 2500, 2300, 2200, 2100, 1900, 1800, 1600, 1500, 1400, 1200, 1100, 1000, 800, 754 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Core 3G Host" rev 0x09
inteldrm0 at pci0 dev 2 function 0 "Intel HD Graphics 4000" rev 0x09
drm0 at inteldrm0
inteldrm0: msi
inteldrm0: 1600x900, 32bpp
wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation)
wsdisplay0: screen 1-5 added (std, vt100 emulation)
xhci0 at pci0 dev 20 function 0 "Intel 7 Series xHCI" rev 0x04: msi, xHCI 1.0
usb0 at xhci0: USB revision 3.0
uhub0 at usb0 configuration 1 interface 0 "Intel xHCI root hub" rev 3.00/1.00 addr 1
"Intel 7 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured
puc0 at pci0 dev 22 function 3 "Intel 7 Series KT" rev 0x04: ports: 16 com
com4 at puc0 port 0 apic 2 int 19: ns16550a, 16 byte fifo
com4: probed fifo depth: 0 bytes
em0 at pci0 dev 25 function 0 "Intel 82579LM" rev 0x04: msi, address ec:f4:bb:6d:f6:89
ehci0 at pci0 dev 26 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 16
usb1 at ehci0: USB revision 2.0
uhub1 at usb1 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
azalia0 at pci0 dev 27 function 0 "Intel 7 Series HD Audio" rev 0x04: msi
azalia0: codecs: IDT/0x76df, Intel/0x2806, using IDT/0x76df
audio0 at azalia0
ppb0 at pci0 dev 28 function 0 "Intel 7 Series PCIE" rev 0xc4: msi
pci1 at ppb0 bus 1
ppb1 at pci0 dev 28 function 1 "Intel 7 Series PCIE" rev 0xc4: msi
pci2 at ppb1 bus 2
iwn0 at pci2 dev 0 function 0 "Intel Centrino Ultimate-N 6300" rev 0x35: msi, MIMO 3T3R, MoW, address 3c:a9:f4:a7:4e:ec
ppb2 at pci0 dev 28 function 5 "Intel 7 Series PCIE" rev 0xc4: msi
pci3 at ppb2 bus 3
sdhc0 at pci3 dev 0 function 0 vendor "O2 Micro", unknown product 0x8221 rev 0x05: apic 2 int 17
sdhc0: SDHC 2.0, 50 MHz base clock
sdmmc0 at sdhc0: 4-bit, sd high-speed, mmc high-speed, dma
ehci1 at pci0 dev 29 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 21
usb2 at ehci1: USB revision 2.0
uhub2 at usb2 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
pcib0 at pci0 dev 31 function 0 "Intel QM77 LPC" rev 0x04
ahci0 at pci0 dev 31 function 2 "Intel 7 Series AHCI" rev 0x04: msi, AHCI 1.3
ahci0: port 0: 6.0Gb/s
scsibus1 at ahci0: 32 targets
sd0 at scsibus1 targ 0 lun 0: <ATA, SAMSUNG SSD PM85, EXT4> SCSI3 0/direct fixed naa.5002538844584d30
sd0: 244198MB, 512 bytes/sector, 500118192 sectors, thin
ichiic0 at pci0 dev 31 function 3 "Intel 7 Series SMBus" rev 0x04: apic 2 int 18
iic0 at ichiic0
spdmem0 at iic0 addr 0x52: 8GB DDR3 SDRAM PC3-12800 SO-DIMM
isa0 at pcib0
isadma0 at isa0
pckbc0 at isa0 port 0x60/5 irq 1 irq 12
pckbd0 at pckbc0 (kbd slot)
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pms0 at pckbc0 (aux slot)
wsmouse0 at pms0 mux 0
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT
efifb at mainbus0 not configured
error: [drm:pid0:cpt_set_fifo_underrun_reporting] *ERROR* uncleared pch fifo underrun on pch transcoder A
error: [drm:pid0:intel_pch_fifo_underrun_irq_handler] *ERROR* PCH transcoder A FIFO underrun
sdmmc0: can't enable card
uhub3 at uhub1 port 1 configuration 1 interface 0 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
ugen0 at uhub3 port 4 "Broadcom Corp BCM20702A0" rev 2.00/1.12 addr 3
uvideo0 at uhub3 port 5 configuration 1 interface 0 "CN0XX3RT724873BBS3HJA00 Integrated Webcam" rev 2.00/29.06 addr 4
video0 at uvideo0
ugen1 at uhub3 port 6 "AuthenTec Fingerprint Sensor" rev 2.00/17.03 addr 5
uhub4 at uhub2 port 1 configuration 1 interface 0 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
uhub5 at uhub4 port 8 configuration 1 interface 0 "O2 Micro OZ776 Hub" rev 1.10/1.10 addr 3
ugen2 at uhub5 port 2 "O2 O2Micro CCID SC Reader" rev 1.10/1.10 addr 4
vscsi0 at root
scsibus2 at vscsi0: 256 targets
softraid0 at root
scsibus3 at softraid0: 256 targets
root on sd0a (6c36d3e3bbcd98aa.a) swap on sd0b dump on sd0b
syncing disks... done
rebooting...
OpenBSD 6.4 (GENERIC.MP) #364: Thu Oct 11 13:30:23 MDT 2018
deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 8472076288 (8079MB)
avail mem = 8206041088 (7825MB)
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.7 @ 0xebf40 (92 entries)
bios0: vendor Dell Inc. version "A15" date 11/30/2018
bios0: Dell Inc. Latitude 6430U
acpi0 at bios0: rev 2
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP APIC FPDT MCFG HPET SSDT SSDT SSDT DMAR ASF! SLIC BGRT
acpi0: wakeup devices P0P1(S4) USB1(S3) USB2(S3) USB3(S3) USB5(S3) USB6(S3) USB7(S3) PXSX(S4) RP01(S4) PXSX(S4) RP02(S4) PXSX(S4) RP05(S4) PXSX(S4) RP06(S4) PXSX(S4) [...]
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.86 MHz, 06-3a-09
cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu0: 256KB 64b/line 8-way L2 cache
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges
cpu0: apic clock running at 99MHz
cpu0: mwait min=64, max=64, C-substates=0.2.1.1.2, IBE
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.53 MHz, 06-3a-09
cpu1: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu1: 256KB 64b/line 8-way L2 cache
cpu1: smt 0, core 1, package 0
cpu2 at mainbus0: apid 1 (application processor)
cpu2: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.53 MHz, 06-3a-09
cpu2: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu2: 256KB 64b/line 8-way L2 cache
cpu2: smt 1, core 0, package 0
cpu3 at mainbus0: apid 3 (application processor)
cpu3: Intel(R) Core(TM) i7-3687U CPU @ 2.10GHz, 1993.53 MHz, 06-3a-09
cpu3: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,RDTSCP,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,MELTDOWN
cpu3: 256KB 64b/line 8-way L2 cache
cpu3: smt 1, core 1, package 0
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
acpimcfg0 at acpi0
acpimcfg0: addr 0xf8000000, bus 0-63
acpihpet0 at acpi0: 14318179 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus -1 (P0P1)
acpiprt2 at acpi0: bus 1 (RP01)
acpiprt3 at acpi0: bus 2 (RP02)
acpiprt4 at acpi0: bus -1 (RP05)
acpiprt5 at acpi0: bus 3 (RP06)
acpiprt6 at acpi0: bus -1 (RP07)
acpiprt7 at acpi0: bus -1 (RP08)
acpiprt8 at acpi0: bus -1 (PEG0)
acpiprt9 at acpi0: bus -1 (PEG1)
acpiprt10 at acpi0: bus -1 (PEG2)
acpiprt11 at acpi0: bus -1 (PEG3)
acpiprt12 at acpi0: bus -1 (RP03)
acpiprt13 at acpi0: bus -1 (RP04)
acpiec0 at acpi0
acpicpu0 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpicpu1 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpicpu2 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpicpu3 at acpi0: C3(200@87 mwait.1@0x30), C2(500@59 mwait.1@0x10), C1(1000@1 mwait.1), PSS
acpitz0 at acpi0: critical temperature is 107 degC
acpicmos0 at acpi0
"*pnp0c14" at acpi0 not configured
acpibtn0 at acpi0: LID0
acpibtn1 at acpi0: PBTN
acpibtn2 at acpi0: SBTN
acpiac0 at acpi0: AC unit offline
acpibat0 at acpi0: BAT0 model "DELL TRM4D5B" serial 189 type LiP oem "Sanyo"
"DELLABCE" at acpi0 not configured
acpivideo0 at acpi0: VID_
acpivout0 at acpivideo0: LCD_
cpu0: Enhanced SpeedStep 1993 MHz: speeds: 2601, 2600, 2500, 2300, 2200, 2100, 1900, 1800, 1600, 1500, 1400, 1200, 1100, 1000, 800, 754 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Core 3G Host" rev 0x09
inteldrm0 at pci0 dev 2 function 0 "Intel HD Graphics 4000" rev 0x09
drm0 at inteldrm0
inteldrm0: msi
inteldrm0: 1600x900, 32bpp
wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation)
wsdisplay0: screen 1-5 added (std, vt100 emulation)
xhci0 at pci0 dev 20 function 0 "Intel 7 Series xHCI" rev 0x04: msi, xHCI 1.0
usb0 at xhci0: USB revision 3.0
uhub0 at usb0 configuration 1 interface 0 "Intel xHCI root hub" rev 3.00/1.00 addr 1
"Intel 7 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured
puc0 at pci0 dev 22 function 3 "Intel 7 Series KT" rev 0x04: ports: 16 com
com4 at puc0 port 0 apic 2 int 19: ns16550a, 16 byte fifo
com4: probed fifo depth: 0 bytes
em0 at pci0 dev 25 function 0 "Intel 82579LM" rev 0x04: msi, address ec:f4:bb:6d:f6:89
ehci0 at pci0 dev 26 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 16
usb1 at ehci0: USB revision 2.0
uhub1 at usb1 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
azalia0 at pci0 dev 27 function 0 "Intel 7 Series HD Audio" rev 0x04: msi
azalia0: codecs: IDT/0x76df, Intel/0x2806, using IDT/0x76df
audio0 at azalia0
ppb0 at pci0 dev 28 function 0 "Intel 7 Series PCIE" rev 0xc4: msi
pci1 at ppb0 bus 1
ppb1 at pci0 dev 28 function 1 "Intel 7 Series PCIE" rev 0xc4: msi
pci2 at ppb1 bus 2
iwn0 at pci2 dev 0 function 0 "Intel Centrino Ultimate-N 6300" rev 0x35: msi, MIMO 3T3R, MoW, address 3c:a9:f4:a7:4e:ec
ppb2 at pci0 dev 28 function 5 "Intel 7 Series PCIE" rev 0xc4: msi
pci3 at ppb2 bus 3
sdhc0 at pci3 dev 0 function 0 vendor "O2 Micro", unknown product 0x8221 rev 0x05: apic 2 int 17
sdhc0: SDHC 2.0, 50 MHz base clock
sdmmc0 at sdhc0: 4-bit, sd high-speed, mmc high-speed, dma
ehci1 at pci0 dev 29 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 21
usb2 at ehci1: USB revision 2.0
uhub2 at usb2 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
pcib0 at pci0 dev 31 function 0 "Intel QM77 LPC" rev 0x04
ahci0 at pci0 dev 31 function 2 "Intel 7 Series AHCI" rev 0x04: msi, AHCI 1.3
ahci0: port 0: 6.0Gb/s
scsibus1 at ahci0: 32 targets
sd0 at scsibus1 targ 0 lun 0: <ATA, SAMSUNG SSD PM85, EXT4> SCSI3 0/direct fixed naa.5002538844584d30
sd0: 244198MB, 512 bytes/sector, 500118192 sectors, thin
ichiic0 at pci0 dev 31 function 3 "Intel 7 Series SMBus" rev 0x04: apic 2 int 18
iic0 at ichiic0
spdmem0 at iic0 addr 0x52: 8GB DDR3 SDRAM PC3-12800 SO-DIMM
isa0 at pcib0
isadma0 at isa0
pckbc0 at isa0 port 0x60/5 irq 1 irq 12
pckbd0 at pckbc0 (kbd slot)
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pms0 at pckbc0 (aux slot)
wsmouse0 at pms0 mux 0
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT
efifb at mainbus0 not configured
error: [drm:pid0:cpt_set_fifo_underrun_reporting] *ERROR* uncleared pch fifo underrun on pch transcoder A
error: [drm:pid0:intel_pch_fifo_underrun_irq_handler] *ERROR* PCH transcoder A FIFO underrun
sdmmc0: can't enable card
uhub3 at uhub1 port 1 configuration 1 interface 0 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
ugen0 at uhub3 port 4 "Broadcom Corp BCM20702A0" rev 2.00/1.12 addr 3
uvideo0 at uhub3 port 5 configuration 1 interface 0 "CN0XX3RT724873BBS3HJA00 Integrated Webcam" rev 2.00/29.06 addr 4
video0 at uvideo0
ugen1 at uhub3 port 6 "AuthenTec Fingerprint Sensor" rev 2.00/17.03 addr 5
uhub4 at uhub2 port 1 configuration 1 interface 0 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
uhub5 at uhub4 port 8 configuration 1 interface 0 "O2 Micro OZ776 Hub" rev 1.10/1.10 addr 3
ugen2 at uhub5 port 2 "O2 O2Micro CCID SC Reader" rev 1.10/1.10 addr 4
vscsi0 at root
scsibus2 at vscsi0: 256 targets
softraid0 at root
scsibus3 at softraid0: 256 targets
root on sd0a (6c36d3e3bbcd98aa.a) swap on sd0b dump on sd0b



‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Sunday, March 31, 2019 5:05 PM, Ulf Brosziewski <ulf.brosziewski@t-online.de> wrote:

> If two-finger scrolling doesn't work out of the box, it usually means
> that the hardware is not supported, and no xorg.conf or wsmouse
> configuration will help (only pointer movement works because the
> touchpad emulates a PS2 mouse). Could you post the output of the dmesg
> command here?
>
> On 3/31/19 5:56 AM, Brogan wrote:
>
> > Hello,
> > I recently installed OpenBSD 6.4 on a Dell Latitude 6430u and am trying to get touchpad two-finger scrolling working in X11. As far as I can tell the touchpad is being loaded via wsmouse but I'm not sure how or where to properly configure the WSMOUSECFG_TWOFINGERSCROLL found in /usr/include/dev/wscons/wsconsio.h.
> > It does not appear that I have a base xorg.conf file. At least not in the usual places /etc/ or /etc/X11/. I'm guessing I need to establish that but I'm not sure how to get started.
> > If there's any config file or machine log output I can provide to assist with helping me let me know.
> > Thank you.

Re: Touchpad - how to enable two-finger scrolling

Thank you. I attempted creating that file in a similar fashion but it did not change the behavior of the touchpad. However I do appreciate the config file snippet. I have a X260 laying around myself so this would be useful.




‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Sunday, March 31, 2019 8:40 AM, Joel Carnat <joel@carnat.net> wrote:

> Hi,
>
> On Sun 31/03 03:56, Brogan wrote:
>
> > Hello,
> > I recently installed OpenBSD 6.4 on a Dell Latitude 6430u and am trying to get touchpad two-finger scrolling working in X11. As far as I can tell the touchpad is being loaded via wsmouse but I'm not sure how or where to properly configure the WSMOUSECFG_TWOFINGERSCROLL found in /usr/include/dev/wscons/wsconsio.h.
> > It does not appear that I have a base xorg.conf file. At least not in the usual places /etc/ or /etc/X11/. I'm guessing I need to establish that but I'm not sure how to get started.
> > If there's any config file or machine log output I can provide to assist with helping me let me know.
> > Thank you.
>
> On my ThinkPad X260, I had to add an extra configuration file:
>
> cat /etc/X11/xorg.conf.d/synaptics.conf
>
> ========================================
>
> ThinkPad X260 ships with Synaptics clickpad
>
> ============================================
>
> Section "InputClass"
> Identifier "touchpad"
> Driver "synaptics"
> MatchIsTouchpad "on"
>
> Option "Device" "/dev/wsmouse0"
> #Option "Device" "wsmouse"
> Option "Protocol" "auto-dev"
> Option "ClickPad" "true"
> Option "VertTwoFingerScroll" "true"
> Option "HorizTwoFingerScroll" "true"
> Option "TapButton1" "1" # Left button
> Option "TapButton2" "3" # Right button
> Option "PalmDetect" "true"
> EndSection
>
> #EOF
>
> Hope it helps.

Re: pip install (python3) requires some development libraries

> You are bypassing [OpenBSD] packages by using pip

True, but it's not "me" so much as the open source moinmoin wiki project.
I think, perhaps, on purpose, because it's a pure-Python release that uses
`virtualenv` (and `tox`, for devs) to maximize portability (it runs on all Unix
and Windows).


> so package manager is irrelevant
> here. I think it is a bad choice to do this though because if libldap or
> or some other libraries on the system are updated, your local installation
> of py-ldap may break.
>
> Anyway, if you need to do this, OpenBSD compilers intentionally do not
> include /usr/local/lib / /usr/local/include in the default lib/header
> search path - you need to pass them via LDFLAGS/CPPFLAGS or another
> method. This is normal for building anything using libraries from
> packages.

Grok.


> The easiest way: update to OpenBSD -current where there is a newer
> version of py-ldap / py3-ldap in packages (we had to patch dependent
> ports to cope with API changes in py-ldap).

I tried installing `py-ldap` (and a bunch of other dependent packages) at
first, but saw that the moinmoin installer was `pip` installing all the packages
again inside the virtualenv, but see below...


> General recommendation even if you are installing python things from
> outside packages, is to use packages for any compiled extensions. Here's
> a nice example of the approach, using virtualenv to install netbox.
> https://blog.jasper.la/setting-up-netbox-on-openbsd.html

Ah ha, thanks for the link! The "--system-site-packages" parameter should
sidestep the need to `pip install` that which is better installed via OpenBSD
packages. Now I just need to get the moinmoin wiki devs to consider using
it, which may be tricky, due to the cross-platform nature of the project.


> If you need things which aren't already in packages (or are too old)
> then write a port or update (and test existing dependent ports) and send
> it to ports@.

Will do.


Thanks,
Kent

Re: Broken ... Anki "current" branch?

bcc: mogin@tuta.io

Regarding your old post from last year

"Broken Libreoffice and Anki "current" branch?"

BTW: LibreOffice works fine for me in 6.4, but Anki doesn't.

On Sun, 8 Jul 2018, mogin@tuta.io wrote:
> ... Anki (core dumped) in "current branch"?

I see it is still core dumping in my home computer under OpenBSD 6.4,
release version.

Wanted to try this flashcard system after mention of it in hacker news.

Had to remote X into an old system I have running elsewhere to try it.
So in OpenBSD 5.6 it was still kind of working.

However it complained when I wanted to put some output into Latex, saying
for the one flash card I tried to create:
-----------------------------------------------------------
Decks Add Browse

What is the formula for Electric field

Error executing latex.
Generated file: /tmp/anki_temp/tmp.tex
Have you installed latex and dvipng?

-------------------------------------------------------------

So the back side of the card, the last few lines above, was supposed to
be some math (enclosed in a Latex field), wouldn't display properly.

Wonder why it didn't load the appropriate packages automatically when I
did pkg_add.

But beside that, I wonder which LATEX packages would be appropriate to
load for "installing latex and dvipng".

If I knew that, I would explore deeper to see if I thought the current
port was worth looking deeper into.

So perhaps you or someone else would take a moment to encourage me.

Austin Hook

Re: pip install (python3) requires some development libraries

On 2019/03/31 20:28, Kent Watsen wrote:
> [CC-ing Remi, "python2.7" package maintainer]
> [Stuart, already CC-ed, is maintainer of the "openldap-client" package]
>
> The subject line of this email says "python3", but the same issue occurs
> with python2.7 (this on OpenBSD 6.4).
>
> I filed an report for the broken `pip install python-ldap` issue (technically a
> `python setup.py build` issue) on GitHub here:
>
> https://github.com/python-ldap/python-ldap/issues/273
>
> They claim it's an OpenBSD's issue:
>
> It's either a problem with OpenBSD, compiler settings, OpenBSD's
> package manager, or Python on OpenBSD. The build system should
> pick up default locations for headers and libraries.

You are bypassing packages by using pip so package manager is irrelevant
here. I think it is a bad choice to do this though because if libldap or
or some other libraries on the system are updated, your local installation
of py-ldap may break.

Anyway, if you need to do this, OpenBSD compilers intentionally do not
include /usr/local/lib / /usr/local/include in the default lib/header
search path - you need to pass them via LDFLAGS/CPPFLAGS or another
method. This is normal for building anything using libraries from
packages.

> /usr/local/include/lber.h comes from the "openldap-client" package but, as
> the report below shows, the `cc` flags are passing "/usr/local/include/python*",
> where '*' in "2.7" in my case and "3.6m" below.
>
> So who's right? Is this a "python-ldap" package issue or an OpenBSD issue?
>
> FWIW, I am able to install python-ldap using Stuart's instructions below, but
> doing so is inconvenient when the dependency comes when trying to `pip
> install` an even higher-level Python package.

The easiest way: update to OpenBSD -current where there is a newer
version of py-ldap / py3-ldap in packages (we had to patch dependent
ports to cope with API changes in py-ldap).

General recommendation even if you are installing python things from
outside packages, is to use packages for any compiled extensions. Here's
a nice example of the approach, using virtualenv to install netbox.
https://blog.jasper.la/setting-up-netbox-on-openbsd.html

If you need things which aren't already in packages (or are too old)
then write a port or update (and test existing dependent ports) and send
it to ports@.

Re: Touchpad - how to enable two-finger scrolling

If two-finger scrolling doesn't work out of the box, it usually means
that the hardware is not supported, and no xorg.conf or wsmouse
configuration will help (only pointer movement works because the
touchpad emulates a PS2 mouse). Could you post the output of the dmesg
command here?

On 3/31/19 5:56 AM, Brogan wrote:
> Hello,
>
> I recently installed OpenBSD 6.4 on a Dell Latitude 6430u and am trying to get touchpad two-finger scrolling working in X11. As far as I can tell the touchpad is being loaded via wsmouse but I'm not sure how or where to properly configure the WSMOUSECFG_TWOFINGERSCROLL found in /usr/include/dev/wscons/wsconsio.h.
>
> It does not appear that I have a base xorg.conf file. At least not in the usual places /etc/ or /etc/X11/. I'm guessing I need to establish that but I'm not sure how to get started.
>
> If there's any config file or machine log output I can provide to assist with helping me let me know.
>
> Thank you.
>