OpenBSD cvs log

created 2018-12-02T20:23:25Z
begin 2018-10-26T00:00:00Z
end 2018-10-27T00:00:00Z
path src/sys
commits 9

date 2018-10-26T01:55:34Z
author kevlo
files src/sys/dev/pci/pcidevs log diff annotate
message Fix entry for Realtek RTL8723BE, from Stuart Shillington.

date 2018-10-26T01:56:50Z
author kevlo
files src/sys/dev/pci/pcidevs.h log diff annotate
src/sys/dev/pci/pcidevs_data.h log diff annotate
message sync

date 2018-10-26T05:53:58Z
author mlarkin
files src/sys/dev/pci/pcidevs log diff annotate
message Add VirtualBox NVMe

From Andrew Daugherity

date 2018-10-26T05:55:01Z
author mlarkin
files src/sys/dev/pci/pcidevs.h log diff annotate
src/sys/dev/pci/pcidevs_data.h log diff annotate
message regen

date 2018-10-26T13:49:15Z
author naddy
files src/sys/arch/i386/conf/Makefile.i386 log diff annotate
message Correct linker emulation name for lld when building i386 kernels on amd64.
ok kettenis@

date 2018-10-26T14:55:27Z
author mpi
files src/sys/net/bridgectl.c log diff annotate
message Make it clear that `if_bridgeport' is dereferenced in the ioctl path
by making all handlers consistent.

ok bluhm@, visa@

date 2018-10-26T15:00:54Z
author naddy
files src/sys/arch/i386/conf/ld.script log diff annotate
message With lld the calculation of the entry point was wrong since
LOADADDR(.text) is only available after the description of the text
section. Instead simply use ENTRY(start) like we do on amd64. The
bootloader strips the high bits from the entry point address already,
so using the virtual address as the entry point address works.

with/ok kettenis@

date 2018-10-26T20:26:19Z
author kettenis
files src/sys/arch/amd64/conf/GENERIC log diff annotate
src/sys/arch/amd64/conf/files.amd64 log diff annotate
src/sys/arch/amd64/pci/acpipci.c log diff annotate
src/sys/dev/acpi/acpi.c log diff annotate
message Add acpipci(4) on amd64. For now this only calls the PCI-specific _OSC
method to let the ACPI implementation know what features we support.

date 2018-10-26T20:28:40Z
author kettenis
files src/sys/arch/armv7/armv7/armv7_machdep.c log diff annotate
message Use EFI memory map to determine what memory regions are availble just like
we already do on arm64. Prevents using the framebuffer on the cubox-i as
regular memory for example.