Monday, September 16, 2024

Re: pkgconfig errors

I am currently using another pkgconfig package (pkgconf), but if anyone
could tell me the problem it would be much appreciated.

Thanks
Jesse Lawton

No speakers or microphone dino-0.4.4

Hello all,

OpenBSD current. USB webcam.

uvideo0 at uhub1 port 2 configuration 1 interface 0 "Microsoft Microsoft\M-. LifeCam HD-3000" rev 2.00/1.08 addr 2
video0 at uvideo0
uaudio0 at uhub1 port 2 configuration 1 interface 3 "Microsoft Microsoft\M-. LifeCam HD-3000" rev 2.00/1.08 addr 2
uaudio0: class v1, high-speed, sync, channels: 0 play, 1 rec, 2 ctls
audio1 at uaudio0a

snd/0 is a internal speaker and it works fine for most everything else.
snd/1 is the uadio0 from the webcam

aucat -f snd/1 -o file.wav work great. ffplay plays video fine.

The Dino package can make calls to another user. I can see the video
from the call and the other user can see my video. However, no
microphone or speakers are detected in app.
snd/0 is set for AUDIODEVICE
snd/1 is set for AUDIORECDEVICE

error from dino:

plugin.vala:415: No preferred device for incoming audio. Media will not be processed.
plugin.vala:415: No preferred device for outgoing audio. Media will not be processed.

regards
Dylan

Re: vxlan(4) Between Three Sites

On Tue, Sep 17, 2024 at 02:31:09PM +1000, David Gwynne wrote:
>
> On Mon, Sep 16, 2024 at 12:25:35PM -0700, Bryan Vyhmeister wrote:
> > I am attempting to build a proof of concept of how to use vxlan(4)
> > on OpenBSD in a fully meshed OSPF network with [wireless] links
> > between sites under my full control so mtu is not an issue (mtu 1550
> > for vxlan0 and mtu 1600 or higher for hardware interfaces). The goal
> > is to bridge a group of VLANs between sites A, B, and C.
<snip>
>
> vxlan(4) in learning mode relies on a single multicast capable
> underlay network between all sites/points. if you are using separate
> interfaces on A to talk to B and C, then this requirement isn't
> satisfied.
>
> i dont know enough about multicast routing to know if or how i should
> support vxlan in learning mode with routes to multiple interfaces.

Thanks for your response. That makes sense then if that is how things
are underneath. I'm not that familiar with how multicast routing works
either but that does appear to be how commercial vendors'
implementations work from what I have read.

> > I also tried using a WireGuard overlay on top of this network. With
> > wg0 as the parent but that does not seem to work either in vxlan(4)
> > learning mode unless I am missing something.
>
> wireguard as an underlay for vxlan in learning mode doesn't work
> because wg isn't multicast capable. the cryptokey routing thing doesnt
> support sending a packet destined to a single address (eg, 239.0.0.1)
> to multiple peers (ie, B and C).

I was testing BGP over tunnels and noticed that ospf6d will not function
over wg(4) either.

> > The other possible solution that I believe I tested and works is to
> > have a vxlan0 between sites A and B and then a vxlan1 between sites
> > A and C and then use veb(4) to bridge vxlan0, vxlan1, and whatever
> > the hardware interface is together. This seems to defeat the purpose
> > of using vxlan(4) to begin with and is not ideal for traffic between
> > sites B and C unless I missed something.
>
> this last one is pretty good,
>
> veb and vxlan in learning mode actually use the same "etherbridge"
> code internally, the main difference between them is what endpoints
> they learn and associate with Ethernet addresses. veb associates
> Ethernet addresses with the interfaces added as ports to the bridge,
> while vxlan associates Ethernet addresses with the IP addresses of
> peers.
>
> with veb bridging tunnels together, the tunnel interfaces basically
> act as proxies for the ip tunnel enpoints in the bridge.
>
> i would just add ethernet tunnels between B and C so they can talk
> directly too. you will probably have to add them to the same protected
> bridge domain to avoid loops, which is discussed a bit in the mpw
> manpage examples a bit.

I will test that and see if it works to my satisfaction. I had not come
across this "protected bridge domain" or at least I ignored it when
reading through mpw(4). Would it be better to use etherip(4) or egre(4)
(I want VLAN support) rather than vxlan(4) between the endpoints based
on what you're saying? Would I add only the vxlan(4) or egre(4)
interfaces as protected and not the bridged ethernet hardware interface
to the switch or should all be configured as protected. In the mpw(4)
example, only the mpw(4) interfaces are added as protected and not the
ethernet interface itself. Thank you for taking the time to get back to
me.

Bryan

Re: vxlan(4) Between Three Sites

On Mon, Sep 16, 2024 at 12:25:35PM -0700, Bryan Vyhmeister wrote:
> I am attempting to build a proof of concept of how to use vxlan(4) on OpenBSD
> in a fully meshed OSPF network with [wireless] links between sites under my
> full control so mtu is not an issue (mtu 1550 for vxlan0 and mtu 1600 or higher for hardware interfaces). The goal is to bridge a group of VLANs between sites A, B, and C.
>
> In my example I have sites A, B, and C. The details aren't very important on
> how the OSPF mesh is setup but it works perfectly and the router-id for OSPF
> is a loopback on each router. What I am having trouble with is the parent
> interface of the vxlan(4) interface. The idea is to have vxlan0 in learning mode which shows up at site A, B, and C and can be bridged to a VLAN-capable switch there.
>
> Let's say site A router's em1 interface is connected to site B router's ix1. Site A router's em2 interface is connected to site C router's bnxt1.
>
> The vxlan0 interface on site A's router is configured with:
> ifconfig vxlan0 parent em1 tunnel 10.10.0.1 239.0.0.1
>
> The vxlan0 interface on site B's router is configured with:
> ifconfig vxlan0 parent ix1 tunnel 10.10.0.2 239.0.0.1
>
> With this configuration, the vxlan0 interface passes traffic perfectly between site A and B but not site C. If I change the parent interface of vxlan0 to the interface pointing to site C, the vxlan(4) link from site A to C works fine but not A to B.
>
> I figured setting the parent of vxlan0 to a loopback interface would work since that would be more typical of other environments but that does not work at all and no link is formed between loopback IP addresses even though they are fully reachable via OSPF.
>
> I then tried creating a pair of pair(4) interface in another rdomain(4) to see if that would work my making the vxlan(4) interface's parent the pair(4) in a different rdomain but it did not work.
>
> I do have net.inet.ip.forwarding=1, net.inet.ip.mforwarding=1, and multicast=YES as well as mrouted turned on for all routers in this setup.

vxlan(4) in learning mode relies on a single multicast capable
underlay network between all sites/points. if you are using separate
interfaces on A to talk to B and C, then this requirement isn't
satisfied.

i dont know enough about multicast routing to know if or how i
should support vxlan in learning mode with routes to multiple
interfaces.

> The other possibility that I have not configured is to have a fully meshed set of routers and then have another router that is separate from each of the three doing the vxlan(4) interface but I have not tried that setup since I believe all of this should be able to be accomplished in one router and I would rather not have to double the number of routers.
>
> I also tried using a WireGuard overlay on top of this network. With wg0 as the parent but that does not seem to work either in vxlan(4) learning mode unless I am missing something.

wireguard as an underlay for vxlan in learning mode doesn't work
because wg isn't multicast capable. the cryptokey routing thing
doesnt support sending a packet destined to a single address (eg,
239.0.0.1) to multiple peers (ie, B and C).

> The other possible solution that I believe I tested and works is to have a vxlan0 between sites A and B and then a vxlan1 between sites A and C and then use veb(4) to bridge vxlan0, vxlan1, and whatever the hardware interface is together. This seems to defeat the purpose of using vxlan(4) to begin with and is not ideal for traffic between sites B and C unless I missed something.
>
> Any ideas?

this last one is pretty good,

veb and vxlan in learning mode actually use the same "etherbridge" code
internally, the main difference between them is what endpoints they
learn and associate with Ethernet addresses. veb associates Ethernet
addresses with the interfaces added as ports to the bridge, while vxlan
associates Ethernet addresses with the IP addresses of peers.

with veb bridging tunnels together, the tunnel interfaces basically act
as proxies for the ip tunnel enpoints in the bridge.

i would just add ethernet tunnels between B and C so they can talk
directly too. you will probably have to add them to the same protected
bridge domain to avoid loops, which is discussed a bit in the mpw
manpage examples a bit.

dlg

Re: elf syspatch on 7.5 stable. Unclear if properly installing. I reverted it.

On Mon, Sep 16, 2024 at 11:09:05PM -0400, Allan Streib wrote:
> I have installed the latest syspatches on 4 different 7.5stable amd64
> machines and had no issues with relinking.
>
> On Mon, Sep 16, 2024, at 22:59, Chris Bennett wrote:
>
> > *** Parse error in /usr/share/relink/kernel/GENERIC.MP: Could not find
> > /usr/ports/infrastructure/templates/mk.conf.template (/etc/mk.conf:9)
>
> /usr/ports should not be involved in relinking a kernel AFAIK. I don't
> have an /etc/mk.conf on any of my machines, maybe move it somewhere else
> and try again?
>

Yes. That did the trick. But why?
I will look at the reorder_kernel carefully. Oh, I got it, for porting,
I have:


PORTS_PRIVSEP=Yes
SUDO=sudo -E
.include "/usr/ports/infrastructure/templates/mk.conf.template"

I won't be doing any porting on stable or syspatches on current. That
must intefer with the build after booting but not at the reorder during
booting.

As far as the dmesg's, I'll look back in the archives.
Wow do I feel better now. Panic averted.

--
Regards,
Chris Bennett

Re: elf syspatch on 7.5 stable. Unclear if properly installing. I reverted it.

I have installed the latest syspatches on 4 different 7.5stable amd64
machines and had no issues with relinking.

On Mon, Sep 16, 2024, at 22:59, Chris Bennett wrote:

> *** Parse error in /usr/share/relink/kernel/GENERIC.MP: Could not find
> /usr/ports/infrastructure/templates/mk.conf.template (/etc/mk.conf:9)

/usr/ports should not be involved in relinking a kernel AFAIK. I don't
have an /etc/mk.conf on any of my machines, maybe move it somewhere else
and try again?

elf syspatch on 7.5 stable. Unclear if properly installing. I reverted it.

After running syspatch, I received the following message below. Things
seemed odd. I looked at logs and I am not sure what to do or not do.
Manually is not the same as rebooting.
/var/log/messages shows a reboot and the first two are from installing
the syspatch and trying reorder_kernel. Second try was after looking at
the reorder_kernel file script.

Any advice appreciated. I don't know what to make of this.


Installing patch 010_elf
Relinking to create unique kernel... failed!
!!! "/usr/libexec/reorder_kernel" must be run manually to install the
new kernel
# ls /usr/libexec/reorder_kernel
-r-xr-xr-x 1 root bin 2304 Mar 20 16:16 /usr/libexec/reorder_kernel

# /usr/libexec/reorder_kernel


# cat messages
(snip)
Aug 14 15:50:29 texas-cowboy reorder_kernel: kernel relinking done
(snip)
Sep 16 20:30:41 texas-cowboy reorder_kernel: failed -- see /usr/share/relink/kernel/GENERIC.MP/relink.log
Sep 16 20:32:12 texas-cowboy reorder_kernel: failed -- see /usr/share/relink/kernel/GENERIC.MP/relink.log
Sep 16 20:53:38 texas-cowboy reorder_kernel: failed -- see /usr/share/relink/kernel/GENERIC.MP/relink.log
Sep 16 20:59:00 texas-cowboy reorder_kernel: failed -- see /usr/share/relink/kernel/GENERIC.MP/relink.log

# cat /usr/share/relink/kernel/GENERIC.MP/relink.log
(SHA256) /bsd: OK
*** Parse error in /usr/share/relink/kernel/GENERIC.MP: Could not find /usr/ports/infrastructure/templates/mk.conf.template (/etc/mk.conf:9)

# syspatch -r
Reverting patch 010_elf
Relinking to create unique kernel... failed!
!!! "/usr/libexec/reorder_kernel" must be run manually to install the new kernel

# /usr/libexec/reorder_kernel

# cat /usr/share/relink/kernel/GENERIC.MP/relink.log
(SHA256) /bsd: OK
*** Parse error in /usr/share/relink/kernel/GENERIC.MP: Could not find /usr/ports/infrastructure/templates/mk.conf.template (/etc/mk.conf:9)

Hmm. I just pulled in /var/run/dmesg.boot and got this.
I had a major problem and I did a fresh install backwards to 7.5stable
and then this shows dmesg's from before that. I know that this seeing older
dmesg's from after reboots happens, but ought I be seeing from before a
fresh install? The latest dmesg is at the bottom.

OpenBSD 7.5-current (GENERIC.MP) #228: Sun Aug 4 11:53:42 MDT 2024
deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 34288898048 (32700MB)
avail mem = 33226084352 (31686MB)
random: good seed from bootblocks
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 3.0 @ 0x8f776000 (36 entries)
bios0: vendor American Megatrends Inc. version "2.2a" date 05/24/2019
bios0: Supermicro X11SSD-F
acpi0 at bios0: ACPI 5.0
acpi0: sleep states S0 S4 S5
acpi0: tables DSDT FACP APIC FPDT FIDT SPMI MCFG HPET LPIT SSDT SSDT SSDT DBGP DBG2 SSDT PRAD SSDT UEFI SSDT DMAR EINJ ERST BERT HEST
acpi0: wakeup devices PEG0(S4) PEGP(S4) PEG1(S4) PEGP(S4) PEG2(S4) PEGP(S4) RP09(S4) PXSX(S4) RP10(S4) PXSX(S4) RP11(S4) PXSX(S4) RP12(S4) PXSX(S4) RP13(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) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.01 MHz, 06-9e-09, patch 000000f8
cpu0: cpuid 1 edx=bfebfbff<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> ecx=77fafbff<SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND>
cpu0: cpuid 6 eax=27f7<SENSOR,ARAT> ecx=9<EFFFREQ>
cpu0: cpuid 7.0 ebx=29c6fbf<FSGSBASE,TSC_ADJUST,SGX,BMI1,HLE,AVX2,SMEP,BMI2,ERMS,INVPCID,RTM,MPX,RDSEED,ADX,SMAP,CLFLUSHOPT,PT> edx=bc002e00<SRBDS_CTRL,MD_CLEAR,TSXFA,IBRS,IBPB,STIBP,L1DF,SSBD>
cpu0: cpuid a vers=4, gp=8, gpwidth=48, ff=3, ffwidth=48
cpu0: cpuid d.1 eax=f<XSAVEOPT,XSAVEC,XGETBV1,XSAVES>
cpu0: cpuid 80000001 edx=2c100800<NXE,PAGE1GB,RDTSCP,LONG> ecx=121<LAHF,ABM,3DNOWP>
cpu0: cpuid 80000007 edx=100<ITSC>
cpu0: msr 10a=a000c04<RSBA,MISC_PKG_CT,ENERGY_FILT,GDS_CTRL,RFDS_NO>
cpu0: MELTDOWN
cpu0: 32KB 64b/line 8-way D-cache, 32KB 64b/line 8-way I-cache, 256KB 64b/line 4-way L2 cache, 8MB 64b/line 16-way L3 cache
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges
cpu0: apic clock running at 24MHz
cpu0: mwait min=64, max=64, C-substates=0.2.1.2.4.1, IBE
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.01 MHz, 06-9e-09, patch 000000f8
cpu1: smt 0, core 1, package 0
cpu2 at mainbus0: apid 4 (application processor)
cpu2: Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.02 MHz, 06-9e-09, patch 000000f8
cpu2: smt 0, core 2, package 0
cpu3 at mainbus0: apid 6 (application processor)
cpu3: Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.02 MHz, 06-9e-09, patch 000000f8
cpu3: smt 0, core 3, package 0
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
acpimcfg0 at acpi0
acpimcfg0: addr 0xe0000000, bus 0-255
acpihpet0 at acpi0: 23999999 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 1 (PEG0)
acpiprt2 at acpi0: bus 2 (PEG1)
acpiprt3 at acpi0: bus -1 (PEG2)
acpiprt4 at acpi0: bus 4 (RP09)
acpiprt5 at acpi0: bus -1 (RP10)
acpiprt6 at acpi0: bus 5 (RP11)
acpiprt7 at acpi0: bus 6 (BR52)
acpiprt8 at acpi0: bus -1 (RP12)
acpiprt9 at acpi0: bus -1 (RP13)
acpiprt10 at acpi0: bus 3 (RP01)
acpiprt11 at acpi0: bus -1 (RP02)
acpiprt12 at acpi0: bus -1 (RP03)
acpiprt13 at acpi0: bus -1 (RP04)
acpiprt14 at acpi0: bus -1 (RP05)
acpiprt15 at acpi0: bus -1 (RP06)
acpiprt16 at acpi0: bus -1 (RP07)
acpiprt17 at acpi0: bus -1 (RP08)
acpiprt18 at acpi0: bus -1 (RP17)
acpiprt19 at acpi0: bus -1 (RP18)
acpiprt20 at acpi0: bus -1 (RP19)
acpiprt21 at acpi0: bus -1 (RP20)
acpiprt22 at acpi0: bus -1 (RP14)
acpiprt23 at acpi0: bus -1 (RP15)
acpiprt24 at acpi0: bus -1 (RP16)
acpiec0 at acpi0: not present
acpipci0 at acpi0 PCI0: 0x00000000 0x00000011 0x00000001
com0 at acpi0 UAR1 addr 0x3f8/0x8 irq 4: ns16550a, 16 byte fifo
com1 at acpi0 UAR2 addr 0x2f8/0x8 irq 3: ns16550a, 16 byte fifo
acpicmos0 at acpi0
"IPI0001" at acpi0 not configured
acpibtn0 at acpi0: SLPB
intelpmc0 at acpi0: PEPD
acpibtn1 at acpi0: PWRB
"ACPI000D" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
acpicpu0 at acpi0: C1(@1 halt!), PSS
acpicpu1 at acpi0: C1(@1 halt!), PSS
acpicpu2 at acpi0: C1(@1 halt!), PSS
acpicpu3 at acpi0: C1(@1 halt!), PSS
acpipwrres0 at acpi0: PG00, resource for PEG0
acpipwrres1 at acpi0: PG01, resource for PEG1
acpipwrres2 at acpi0: PG02, resource for PEG2
acpipwrres3 at acpi0: WRST
acpipwrres4 at acpi0: WRST
acpipwrres5 at acpi0: WRST
acpipwrres6 at acpi0: WRST
acpipwrres7 at acpi0: WRST
acpipwrres8 at acpi0: WRST
acpipwrres9 at acpi0: WRST
acpipwrres10 at acpi0: WRST
acpipwrres11 at acpi0: WRST
acpipwrres12 at acpi0: WRST
acpipwrres13 at acpi0: WRST
acpipwrres14 at acpi0: WRST
acpipwrres15 at acpi0: WRST
acpipwrres16 at acpi0: WRST
acpipwrres17 at acpi0: WRST
acpipwrres18 at acpi0: WRST
acpipwrres19 at acpi0: WRST
acpipwrres20 at acpi0: WRST
acpipwrres21 at acpi0: WRST
acpipwrres22 at acpi0: WRST
acpipwrres23 at acpi0: FN00, resource for FAN0
acpipwrres24 at acpi0: FN01, resource for FAN1
acpipwrres25 at acpi0: FN02, resource for FAN2
acpipwrres26 at acpi0: FN03, resource for FAN3
acpipwrres27 at acpi0: FN04, resource for FAN4
acpitz0 at acpi0: critical temperature is 119 degC
acpitz1 at acpi0: critical temperature is 119 degC
acpivideo0 at acpi0: GFX0
acpivout0 at acpivideo0: DD1F
ipmi at mainbus0 not configured
cpu0: using VERW MDS workaround (except on vmm entry)
cpu0: Enhanced SpeedStep 3800 MHz: speeds: 3801, 3800, 3600, 3400, 3200, 2900, 2700, 2500, 2300, 2100, 1900, 1700, 1400, 1200, 1000, 800 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Xeon E3-1200 v6/7 Host" rev 0x05
ppb0 at pci0 dev 1 function 0 "Intel Core 6G PCIE" rev 0x05: msi
pci1 at ppb0 bus 1
ppb1 at pci0 dev 1 function 1 "Intel Core 6G PCIE" rev 0x05: msi
pci2 at ppb1 bus 2
em0 at pci2 dev 0 function 0 "Intel I350" rev 0x01: msi, address ac:1f:6b:99:73:c0
em1 at pci2 dev 0 function 1 "Intel I350" rev 0x01: msi, address ac:1f:6b:99:73:c1
"Intel 100 Series ISH" rev 0x31 at pci0 dev 19 function 0 not configured
xhci0 at pci0 dev 20 function 0 "Intel 100 Series xHCI" rev 0x31: 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
pchtemp0 at pci0 dev 20 function 2 "Intel 100 Series Thermal" rev 0x31
"Intel 100 Series MEI" rev 0x31 at pci0 dev 22 function 0 not configured
"Intel 100 Series MEI" rev 0x31 at pci0 dev 22 function 1 not configured
ahci0 at pci0 dev 23 function 0 "Intel 100 Series AHCI" rev 0x31: msi, AHCI 1.3.1
ahci0: port 0: 6.0Gb/s
ahci0: port 1: 6.0Gb/s
scsibus1 at ahci0: 32 targets
sd0 at scsibus1 targ 0 lun 0: <ATA, Samsung SSD 860, RVM0> naa.5002538e40f062c5
sd0: 244198MB, 512 bytes/sector, 500118192 sectors, thin
sd1 at scsibus1 targ 1 lun 0: <ATA, WDC WD1003FZEX-0, 01.0> naa.50014ee21046f099
sd1: 953869MB, 512 bytes/sector, 1953525168 sectors
ppb2 at pci0 dev 28 function 0 "Intel 100 Series PCIE" rev 0xf1: msi
pci3 at ppb2 bus 3
ppb3 at pci0 dev 29 function 0 "Intel 100 Series PCIE" rev 0xf1: msi
pci4 at ppb3 bus 4
ppb4 at pci0 dev 29 function 2 "Intel 100 Series PCIE" rev 0xf1: msi
pci5 at ppb4 bus 5
ppb5 at pci5 dev 0 function 0 "ASPEED Technology AST1150 PCI" rev 0x03
pci6 at ppb5 bus 6
vga1 at pci6 dev 0 function 0 "ASPEED Technology AST2000" rev 0x30
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
pcib0 at pci0 dev 31 function 0 "Intel C236 LPC" rev 0x31
"Intel 100 Series PMC" rev 0x31 at pci0 dev 31 function 2 not configured
ichiic0 at pci0 dev 31 function 4 "Intel 100 Series SMBus" rev 0x31: apic 2 int 16
iic0 at ichiic0
sdtemp0 at iic0 addr 0x19: stts2004
sdtemp1 at iic0 addr 0x1b: stts2004
spdmem0 at iic0 addr 0x51: 16GB DDR4 SDRAM ECC PC4-21300 with thermal sensor
spdmem1 at iic0 addr 0x53: 16GB DDR4 SDRAM ECC PC4-21300 with thermal sensor
isa0 at pcib0
isadma0 at isa0
pckbc0 at isa0 port 0x60/5 irq 1 irq 12
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT
uhub1 at uhub0 port 6 configuration 1 interface 0 "ATEN International product 0x7000" rev 2.00/0.00 addr 2
uhidev0 at uhub1 port 1 configuration 1 interface 0 "ATEN International product 0x2419" rev 1.10/1.00 addr 3
uhidev0: iclass 3/1
ukbd0 at uhidev0: 8 variable keys, 6 key codes
wskbd0 at ukbd0: console keyboard, using wsdisplay0
uhidev1 at uhub1 port 1 configuration 1 interface 1 "ATEN International product 0x2419" rev 1.10/1.00 addr 3
uhidev1: iclass 3/1
ums0 at uhidev1: 3 buttons, Z dir
wsmouse0 at ums0 mux 0
vscsi0 at root
scsibus2 at vscsi0: 256 targets
softraid0 at root
scsibus3 at softraid0: 256 targets
root on sd0a (045a33c79b9a2ad9.a) swap on sd0b dump on sd0b
syncing disks... done
rebo
OpenBSD 7.6-beta (RAMDISK_CD) #245: Tue Aug 13 21:59:37 MDT 2024
deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/RAMDISK_CD
real mem = 34288898048 (32700MB)
avail mem = 33245052928 (31704MB)
random: good seed from bootblocks
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 3.0 @ 0x8f776000 (36 entries)
bios0: vendor American Megatrends Inc. version "2.2a" date 05/24/2019
bios0: Supermicro X11SSD-F
acpi0 at bios0: ACPI 5.0
acpi0: tables DSDT FACP APIC FPDT FIDT SPMI MCFG HPET LPIT SSDT SSDT SSDT DBGP DBG2 SSDT PRAD SSDT UEFI SSDT DMAR EINJ ERST BERT HEST
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.00 MHz, 06-9e-09, patch 000000b4
cpu0: cpuid 1 edx=bfebfbff<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> ecx=77fafbff<SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND>
cpu0: cpuid 6 eax=27f7<SENSOR,ARAT> ecx=9<EFFFREQ>
cpu0: cpuid 7.0 ebx=29c6fbf<FSGSBASE,TSC_ADJUST,SGX,BMI1,HLE,AVX2,SMEP,BMI2,ERMS,INVPCID,RTM,MPX,RDSEED,ADX,SMAP,CLFLUSHOPT,PT> edx=9c002400<MD_CLEAR,TSXFA,IBRS,IBPB,STIBP,L1DF,SSBD>
cpu0: cpuid a vers=4, gp=8, gpwidth=48, ff=3, ffwidth=48
cpu0: cpuid d.1 eax=f<XSAVEOPT,XSAVEC,XGETBV1,XSAVES>
cpu0: cpuid 80000001 edx=2c100800<NXE,PAGE1GB,RDTSCP,LONG> ecx=121<LAHF,ABM,3DNOWP>
cpu0: cpuid 80000007 edx=100<ITSC>
cpu0: MELTDOWN
cpu0: 32KB 64b/line 8-way D-cache, 32KB 64b/line 8-way I-cache, 256KB 64b/line 4-way L2 cache, 8MB 64b/line 16-way L3 cache
cpu0: apic clock running at 24MHz
cpu0: mwait min=64, max=64, C-substates=0.2.1.2.4.1, IBE
cpu at mainbus0: not configured
cpu at mainbus0: not configured
cpu at mainbus0: not configured
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
acpihpet0 at acpi0: 23999999 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 1 (PEG0)
acpiprt2 at acpi0: bus 2 (PEG1)
acpiprt3 at acpi0: bus -1 (PEG2)
acpiprt4 at acpi0: bus 4 (RP09)
acpiprt5 at acpi0: bus -1 (RP10)
acpiprt6 at acpi0: bus 5 (RP11)
acpiprt7 at acpi0: bus 6 (BR52)
acpiprt8 at acpi0: bus -1 (RP12)
acpiprt9 at acpi0: bus -1 (RP13)
acpiprt10 at acpi0: bus 3 (RP01)
acpiprt11 at acpi0: bus -1 (RP02)
acpiprt12 at acpi0: bus -1 (RP03)
acpiprt13 at acpi0: bus -1 (RP04)
acpiprt14 at acpi0: bus -1 (RP05)
acpiprt15 at acpi0: bus -1 (RP06)
acpiprt16 at acpi0: bus -1 (RP07)
acpiprt17 at acpi0: bus -1 (RP08)
acpiprt18 at acpi0: bus -1 (RP17)
acpiprt19 at acpi0: bus -1 (RP18)
acpiprt20 at acpi0: bus -1 (RP19)
acpiprt21 at acpi0: bus -1 (RP20)
acpiprt22 at acpi0: bus -1 (RP14)
acpiprt23 at acpi0: bus -1 (RP15)
acpiprt24 at acpi0: bus -1 (RP16)
acpiec0 at acpi0: not present
acpipci0 at acpi0 PCI0: 0x00000000 0x00000011 0x00000001
com0 at acpi0 UAR1 addr 0x3f8/0x8 irq 4: ns16550a, 16 byte fifo
com1 at acpi0 UAR2 addr 0x2f8/0x8 irq 3: ns16550a, 16 byte fifo
acpicmos0 at acpi0
"IPI0001" at acpi0 not configured
"PNP0C0E" at acpi0 not configured
"INT33A1" at acpi0 not configured
"PNP0C0C" at acpi0 not configured
"ACPI000D" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
acpicpu at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpitz at acpi0 not configured
acpitz at acpi0 not configured
cpu0: using VERW MDS workaround
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Xeon E3-1200 v6/7 Host" rev 0x05
ppb0 at pci0 dev 1 function 0 "Intel Core 6G PCIE" rev 0x05: msi
pci1 at ppb0 bus 1
ppb1 at pci0 dev 1 function 1 "Intel Core 6G PCIE" rev 0x05: msi
pci2 at ppb1 bus 2
em0 at pci2 dev 0 function 0 "Intel I350" rev 0x01: msi, address ac:1f:6b:99:73:c0
em1 at pci2 dev 0 function 1 "Intel I350" rev 0x01: msi, address ac:1f:6b:99:73:c1
"Intel 100 Series ISH" rev 0x31 at pci0 dev 19 function 0 not configured
xhci0 at pci0 dev 20 function 0 "Intel 100 Series xHCI" rev 0x31: 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 100 Series Thermal" rev 0x31 at pci0 dev 20 function 2 not configured
"Intel 100 Series MEI" rev 0x31 at pci0 dev 22 function 0 not configured
"Intel 100 Series MEI" rev 0x31 at pci0 dev 22 function 1 not configured
ahci0 at pci0 dev 23 function 0 "Intel 100 Series AHCI" rev 0x31: msi, AHCI 1.3.1
ahci0: port 0: 6.0Gb/s
ahci0: port 1: 6.0Gb/s
scsibus0 at ahci0: 32 targets
sd0 at scsibus0 targ 0 lun 0: <ATA, Samsung SSD 860, RVM0> naa.5002538e40f062c5
sd0: 244198MB, 512 bytes/sector, 500118192 sectors, thin
sd1 at scsibus0 targ 1 lun 0: <ATA, WDC WD1003FZEX-0, 01.0> naa.50014ee21046f099
sd1: 953869MB, 512 bytes/sector, 1953525168 sectors
ppb2 at pci0 dev 28 function 0 "Intel 100 Series PCIE" rev 0xf1: msi
pci3 at ppb2 bus 3
ppb3 at pci0 dev 29 function 0 "Intel 100 Series PCIE" rev 0xf1: msi
pci4 at ppb3 bus 4
ppb4 at pci0 dev 29 function 2 "Intel 100 Series PCIE" rev 0xf1: msi
pci5 at ppb4 bus 5
ppb5 at pci5 dev 0 function 0 "ASPEED Technology AST1150 PCI" rev 0x03
pci6 at ppb5 bus 6
vga1 at pci6 dev 0 function 0 "ASPEED Technology AST2000" rev 0x30
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
"Intel C236 LPC" rev 0x31 at pci0 dev 31 function 0 not configured
"Intel 100 Series PMC" rev 0x31 at pci0 dev 31 function 2 not configured
"Intel 100 Series SMBus" rev 0x31 at pci0 dev 31 function 4 not configured
isa0 at mainbus0
pckbc0 at isa0 port 0x60/5 irq 1 irq 12
uhub1 at uhub0 port 6 configuration 1 interface 0 "vendor 0x0557 product 0x7000" rev 2.00/0.00 addr 2
uhidev0 at uhub1 port 1 configuration 1 interface 0 "vendor 0x0557 product 0x2419" rev 1.10/1.00 addr 3
uhidev0: iclass 3/1
ukbd0 at uhidev0
wskbd0 at ukbd0: console keyboard, using wsdisplay0
uhidev1 at uhub1 port 1 configuration 1 interface 1 "vendor 0x0557 product 0x2419" rev 1.10/1.00 addr 3
uhidev1: iclass 3/1
uhid at uhidev1 not configured
softraid0 at root
scsibus1 at softraid0: 256 targets
root on rd0a swap on rd0b dump on rd0b
syncing disks...
OpenBSD 7.6-beta (GENERIC.MP) #249: Tue Aug 13 21:55:03 MDT 2024
deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 34288898048 (32700MB)
avail mem = 33226055680 (31686MB)
random: good seed from bootblocks
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 3.0 @ 0x8f776000 (36 entries)
bios0: vendor American Megatrends Inc. version "2.2a" date 05/24/2019
bios0: Supermicro X11SSD-F
acpi0 at bios0: ACPI 5.0
acpi0: sleep states S0 S4 S5
acpi0: tables DSDT FACP APIC FPDT FIDT SPMI MCFG HPET LPIT SSDT SSDT SSDT DBGP DBG2 SSDT PRAD SSDT UEFI SSDT DMAR EINJ ERST BERT HEST
acpi0: wakeup devices PEG0(S4) PEGP(S4) PEG1(S4) PEGP(S4) PEG2(S4) PEGP(S4) RP09(S4) PXSX(S4) RP10(S4) PXSX(S4) RP11(S4) PXSX(S4) RP12(S4) PXSX(S4) RP13(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) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.00 MHz, 06-9e-09, patch 000000f8
cpu0: cpuid 1 edx=bfebfbff<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> ecx=77fafbff<SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND>
cpu0: cpuid 6 eax=27f7<SENSOR,ARAT> ecx=9<EFFFREQ>
cpu0: cpuid 7.0 ebx=29c6fbf<FSGSBASE,TSC_ADJUST,SGX,BMI1,HLE,AVX2,SMEP,BMI2,ERMS,INVPCID,RTM,MPX,RDSEED,ADX,SMAP,CLFLUSHOPT,PT> edx=bc002e00<SRBDS_CTRL,MD_CLEAR,TSXFA,IBRS,IBPB,STIBP,L1DF,SSBD>
cpu0: cpuid a vers=4, gp=8, gpwidth=48, ff=3, ffwidth=48
cpu0: cpuid d.1 eax=f<XSAVEOPT,XSAVEC,XGETBV1,XSAVES>
cpu0: cpuid 80000001 edx=2c100800<NXE,PAGE1GB,RDTSCP,LONG> ecx=121<LAHF,ABM,3DNOWP>
cpu0: cpuid 80000007 edx=100<ITSC>
cpu0: msr 10a=a000c04<RSBA,MISC_PKG_CT,ENERGY_FILT,GDS_CTRL,RFDS_NO>
cpu0: MELTDOWN
cpu0: 32KB 64b/line 8-way D-cache, 32KB 64b/line 8-way I-cache, 256KB 64b/line 4-way L2 cache, 8MB 64b/line 16-way L3 cache
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges
cpu0: apic clock running at 24MHz
cpu0: mwait min=64, max=64, C-substates=0.2.1.2.4.1, IBE
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.01 MHz, 06-9e-09, patch 000000f8
cpu1: smt 0, core 1, package 0
cpu2 at mainbus0: apid 4 (application processor)
cpu2: Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.01 MHz, 06-9e-09, patch 000000f8
cpu2: smt 0, core 2, package 0
cpu3 at mainbus0: apid 6 (application processor)
cpu3: Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.02 MHz, 06-9e-09, patch 000000f8
cpu3: smt 0, core 3, package 0
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
acpimcfg0 at acpi0
acpimcfg0: addr 0xe0000000, bus 0-255
acpihpet0 at acpi0: 23999999 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 1 (PEG0)
acpiprt2 at acpi0: bus 2 (PEG1)
acpiprt3 at acpi0: bus -1 (PEG2)
acpiprt4 at acpi0: bus 4 (RP09)
acpiprt5 at acpi0: bus -1 (RP10)
acpiprt6 at acpi0: bus 5 (RP11)
acpiprt7 at acpi0: bus 6 (BR52)
acpiprt8 at acpi0: bus -1 (RP12)
acpiprt9 at acpi0: bus -1 (RP13)
acpiprt10 at acpi0: bus 3 (RP01)
acpiprt11 at acpi0: bus -1 (RP02)
acpiprt12 at acpi0: bus -1 (RP03)
acpiprt13 at acpi0: bus -1 (RP04)
acpiprt14 at acpi0: bus -1 (RP05)
acpiprt15 at acpi0: bus -1 (RP06)
acpiprt16 at acpi0: bus -1 (RP07)
acpiprt17 at acpi0: bus -1 (RP08)
acpiprt18 at acpi0: bus -1 (RP17)
acpiprt19 at acpi0: bus -1 (RP18)
acpiprt20 at acpi0: bus -1 (RP19)
acpiprt21 at acpi0: bus -1 (RP20)
acpiprt22 at acpi0: bus -1 (RP14)
acpiprt23 at acpi0: bus -1 (RP15)
acpiprt24 at acpi0: bus -1 (RP16)
acpiec0 at acpi0: not present
acpipci0 at acpi0 PCI0: 0x00000000 0x00000011 0x00000001
com0 at acpi0 UAR1 addr 0x3f8/0x8 irq 4: ns16550a, 16 byte fifo
com1 at acpi0 UAR2 addr 0x2f8/0x8 irq 3: ns16550a, 16 byte fifo
acpicmos0 at acpi0
"IPI0001" at acpi0 not configured
acpibtn0 at acpi0: SLPB
intelpmc0 at acpi0: PEPD
state 0: 0x7f:1:2:0x00:0x0000000000000060
counter: 0x7f:64:0:0x00:0x0000000000000632
frequency: 0
state 1: 0x7f:1:2:0x00:0x0000000000000060
counter: 0x7f:64:0:0x00:0x0000000000000632
frequency: 0
acpibtn1 at acpi0: PWRB
"ACPI000D" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
acpicpu0 at acpi0: C1(@1 halt!), PSS
acpicpu1 at acpi0: C1(@1 halt!), PSS
acpicpu2 at acpi0: C1(@1 halt!), PSS
acpicpu3 at acpi0: C1(@1 halt!), PSS
acpipwrres0 at acpi0: PG00, resource for PEG0
acpipwrres1 at acpi0: PG01, resource for PEG1
acpipwrres2 at acpi0: PG02, resource for PEG2
acpipwrres3 at acpi0: WRST
acpipwrres4 at acpi0: WRST
acpipwrres5 at acpi0: WRST
acpipwrres6 at acpi0: WRST
acpipwrres7 at acpi0: WRST
acpipwrres8 at acpi0: WRST
acpipwrres9 at acpi0: WRST
acpipwrres10 at acpi0: WRST
acpipwrres11 at acpi0: WRST
acpipwrres12 at acpi0: WRST
acpipwrres13 at acpi0: WRST
acpipwrres14 at acpi0: WRST
acpipwrres15 at acpi0: WRST
acpipwrres16 at acpi0: WRST
acpipwrres17 at acpi0: WRST
acpipwrres18 at acpi0: WRST
acpipwrres19 at acpi0: WRST
acpipwrres20 at acpi0: WRST
acpipwrres21 at acpi0: WRST
acpipwrres22 at acpi0: WRST
acpipwrres23 at acpi0: FN00, resource for FAN0
acpipwrres24 at acpi0: FN01, resource for FAN1
acpipwrres25 at acpi0: FN02, resource for FAN2
acpipwrres26 at acpi0: FN03, resource for FAN3
acpipwrres27 at acpi0: FN04, resource for FAN4
acpitz0 at acpi0: critical temperature is 119 degC
acpitz1 at acpi0: critical temperature is 119 degC
acpivideo0 at acpi0: GFX0
acpivout0 at acpivideo0: DD1F
ipmi at mainbus0 not configured
cpu0: using VERW MDS workaround (except on vmm entry)
cpu0: Enhanced SpeedStep 3800 MHz: speeds: 3801, 3800, 3600, 3400, 3200, 2900, 2700, 2500, 2300, 2100, 1900, 1700, 1400, 1200, 1000, 800 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Xeon E3-1200 v6/7 Host" rev 0x05
ppb0 at pci0 dev 1 function 0 "Intel Core 6G PCIE" rev 0x05: msi
pci1 at ppb0 bus 1
ppb1 at pci0 dev 1 function 1 "Intel Core 6G PCIE" rev 0x05: msi
pci2 at ppb1 bus 2
em0 at pci2 dev 0 function 0 "Intel I350" rev 0x01: msi, address ac:1f:6b:99:73:c0
em1 at pci2 dev 0 function 1 "Intel I350" rev 0x01: msi, address ac:1f:6b:99:73:c1
"Intel 100 Series ISH" rev 0x31 at pci0 dev 19 function 0 not configured
xhci0 at pci0 dev 20 function 0 "Intel 100 Series xHCI" rev 0x31: 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
pchtemp0 at pci0 dev 20 function 2 "Intel 100 Series Thermal" rev 0x31
"Intel 100 Series MEI" rev 0x31 at pci0 dev 22 function 0 not configured
"Intel 100 Series MEI" rev 0x31 at pci0 dev 22 function 1 not configured
ahci0 at pci0 dev 23 function 0 "Intel 100 Series AHCI" rev 0x31: msi, AHCI 1.3.1
ahci0: port 0: 6.0Gb/s
ahci0: port 1: 6.0Gb/s
scsibus1 at ahci0: 32 targets
sd0 at scsibus1 targ 0 lun 0: <ATA, Samsung SSD 860, RVM0> naa.5002538e40f062c5
sd0: 244198MB, 512 bytes/sector, 500118192 sectors, thin
sd1 at scsibus1 targ 1 lun 0: <ATA, WDC WD1003FZEX-0, 01.0> naa.50014ee21046f099
sd1: 953869MB, 512 bytes/sector, 1953525168 sectors
ppb2 at pci0 dev 28 function 0 "Intel 100 Series PCIE" rev 0xf1: msi
pci3 at ppb2 bus 3
ppb3 at pci0 dev 29 function 0 "Intel 100 Series PCIE" rev 0xf1: msi
pci4 at ppb3 bus 4
ppb4 at pci0 dev 29 function 2 "Intel 100 Series PCIE" rev 0xf1: msi
pci5 at ppb4 bus 5
ppb5 at pci5 dev 0 function 0 "ASPEED Technology AST1150 PCI" rev 0x03
pci6 at ppb5 bus 6
vga1 at pci6 dev 0 function 0 "ASPEED Technology AST2000" rev 0x30
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
pcib0 at pci0 dev 31 function 0 "Intel C236 LPC" rev 0x31
"Intel 100 Series PMC" rev 0x31 at pci0 dev 31 function 2 not configured
ichiic0 at pci0 dev 31 function 4 "Intel 100 Series SMBus" rev 0x31: apic 2 int 16
iic0 at ichiic0
sdtemp0 at iic0 addr 0x19: stts2004
sdtemp1 at iic0 addr 0x1b: stts2004
spdmem0 at iic0 addr 0x51: 16GB DDR4 SDRAM ECC PC4-21300 with thermal sensor
spdmem1 at iic0 addr 0x53: 16GB DDR4 SDRAM ECC PC4-21300 with thermal sensor
isa0 at pcib0
isadma0 at isa0
pckbc0 at isa0 port 0x60/5 irq 1 irq 12
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT
uhub1 at uhub0 port 6 configuration 1 interface 0 "ATEN International product 0x7000" rev 2.00/0.00 addr 2
uhidev0 at uhub1 port 1 configuration 1 interface 0 "ATEN International product 0x2419" rev 1.10/1.00 addr 3
uhidev0: iclass 3/1
ukbd0 at uhidev0: 8 variable keys, 6 key codes
wskbd0 at ukbd0: console keyboard, using wsdisplay0
uhidev1 at uhub1 port 1 configuration 1 interface 1 "ATEN International product 0x2419" rev 1.10/1.00 addr 3
uhidev1: iclass 3/1
ums0 at uhidev1: 3 buttons, Z dir
wsmouse0 at ums0 mux 0
vscsi0 at root
scsibus2 at vscsi0: 256 targets
softraid0 at root
scsibus3 at softraid0: 256 targets
root on sd0a (045a33c79b9a2ad9.a) swap on sd0b dump on sd0b
syncing disks... done
rebooting.
OpenBSD 7.5 (RAMDISK_CD) #76: Wed Mar 20 15:53:54 MDT 2024
deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/RAMDISK_CD
real mem = 34288898048 (32700MB)
avail mem = 33245052928 (31704MB)
random: good seed from bootblocks
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 3.0 @ 0x8f776000 (36 entries)
bios0: vendor American Megatrends Inc. version "2.2a" date 05/24/2019
bios0: Supermicro X11SSD-F
acpi0 at bios0: ACPI 5.0
acpi0: tables DSDT FACP APIC FPDT FIDT SPMI MCFG HPET LPIT SSDT SSDT SSDT DBGP DBG2 SSDT PRAD SSDT UEFI SSDT DMAR EINJ ERST BERT HEST
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.00 MHz, 06-9e-09, patch 000000b4
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,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,SGX,BMI1,HLE,AVX2,SMEP,BMI2,ERMS,INVPCID,RTM,MPX,RDSEED,ADX,SMAP,CLFLUSHOPT,PT,MD_CLEAR,TSXFA,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,XSAVEOPT,XSAVEC,XGETBV1,XSAVES,MELTDOWN
cpu0: 32KB 64b/line 8-way D-cache, 32KB 64b/line 8-way I-cache, 256KB 64b/line 4-way L2 cache, 8MB 64b/line 16-way L3 cache
cpu0: apic clock running at 24MHz
cpu0: mwait min=64, max=64, C-substates=0.2.1.2.4.1, IBE
cpu at mainbus0: not configured
cpu at mainbus0: not configured
cpu at mainbus0: not configured
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
acpihpet0 at acpi0: 23999999 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 1 (PEG0)
acpiprt2 at acpi0: bus 2 (PEG1)
acpiprt3 at acpi0: bus -1 (PEG2)
acpiprt4 at acpi0: bus 4 (RP09)
acpiprt5 at acpi0: bus -1 (RP10)
acpiprt6 at acpi0: bus 5 (RP11)
acpiprt7 at acpi0: bus 6 (BR52)
acpiprt8 at acpi0: bus -1 (RP12)
acpiprt9 at acpi0: bus -1 (RP13)
acpiprt10 at acpi0: bus 3 (RP01)
acpiprt11 at acpi0: bus -1 (RP02)
acpiprt12 at acpi0: bus -1 (RP03)
acpiprt13 at acpi0: bus -1 (RP04)
acpiprt14 at acpi0: bus -1 (RP05)
acpiprt15 at acpi0: bus -1 (RP06)
acpiprt16 at acpi0: bus -1 (RP07)
acpiprt17 at acpi0: bus -1 (RP08)
acpiprt18 at acpi0: bus -1 (RP17)
acpiprt19 at acpi0: bus -1 (RP18)
acpiprt20 at acpi0: bus -1 (RP19)
acpiprt21 at acpi0: bus -1 (RP20)
acpiprt22 at acpi0: bus -1 (RP14)
acpiprt23 at acpi0: bus -1 (RP15)
acpiprt24 at acpi0: bus -1 (RP16)
acpiec0 at acpi0: not present
acpipci0 at acpi0 PCI0: 0x00000000 0x00000011 0x00000001
com0 at acpi0 UAR1 addr 0x3f8/0x8 irq 4: ns16550a, 16 byte fifo
com1 at acpi0 UAR2 addr 0x2f8/0x8 irq 3: ns16550a, 16 byte fifo
acpicmos0 at acpi0
"IPI0001" at acpi0 not configured
"PNP0C0E" at acpi0 not configured
"INT33A1" at acpi0 not configured
"PNP0C0C" at acpi0 not configured
"ACPI000D" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
acpicpu at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpipwrres at acpi0 not configured
acpitz at acpi0 not configured
acpitz at acpi0 not configured
cpu0: using VERW MDS workaround
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Xeon E3-1200 v6/7 Host" rev 0x05
ppb0 at pci0 dev 1 function 0 "Intel Core 6G PCIE" rev 0x05: msi
pci1 at ppb0 bus 1
ppb1 at pci0 dev 1 function 1 "Intel Core 6G PCIE" rev 0x05: msi
pci2 at ppb1 bus 2
em0 at pci2 dev 0 function 0 "Intel I350" rev 0x01: msi, address ac:1f:6b:99:73:c0
em1 at pci2 dev 0 function 1 "Intel I350" rev 0x01: msi, address ac:1f:6b:99:73:c1
"Intel 100 Series ISH" rev 0x31 at pci0 dev 19 function 0 not configured
xhci0 at pci0 dev 20 function 0 "Intel 100 Series xHCI" rev 0x31: 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 100 Series Thermal" rev 0x31 at pci0 dev 20 function 2 not configured
"Intel 100 Series MEI" rev 0x31 at pci0 dev 22 function 0 not configured
"Intel 100 Series MEI" rev 0x31 at pci0 dev 22 function 1 not configured
ahci0 at pci0 dev 23 function 0 "Intel 100 Series AHCI" rev 0x31: msi, AHCI 1.3.1
ahci0: port 0: 6.0Gb/s
ahci0: port 1: 6.0Gb/s
scsibus0 at ahci0: 32 targets
sd0 at scsibus0 targ 0 lun 0: <ATA, Samsung SSD 860, RVM0> naa.5002538e40f062c5
sd0: 244198MB, 512 bytes/sector, 500118192 sectors, thin
sd1 at scsibus0 targ 1 lun 0: <ATA, WDC WD1003FZEX-0, 01.0> naa.50014ee21046f099
sd1: 953869MB, 512 bytes/sector, 1953525168 sectors
ppb2 at pci0 dev 28 function 0 "Intel 100 Series PCIE" rev 0xf1: msi
pci3 at ppb2 bus 3
ppb3 at pci0 dev 29 function 0 "Intel 100 Series PCIE" rev 0xf1: msi
pci4 at ppb3 bus 4
ppb4 at pci0 dev 29 function 2 "Intel 100 Series PCIE" rev 0xf1: msi
pci5 at ppb4 bus 5
ppb5 at pci5 dev 0 function 0 "ASPEED Technology AST1150 PCI" rev 0x03
pci6 at ppb5 bus 6
vga1 at pci6 dev 0 function 0 "ASPEED Technology AST2000" rev 0x30
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
"Intel C236 LPC" rev 0x31 at pci0 dev 31 function 0 not configured
"Intel 100 Series PMC" rev 0x31 at pci0 dev 31 function 2 not configured
"Intel 100 Series SMBus" rev 0x31 at pci0 dev 31 function 4 not configured
isa0 at mainbus0
pckbc0 at isa0 port 0x60/5 irq 1 irq 12
uhub1 at uhub0 port 6 configuration 1 interface 0 "vendor 0x0557 product 0x7000" rev 2.00/0.00 addr 2
uhidev0 at uhub1 port 1 configuration 1 interface 0 "vendor 0x0557 product 0x2419" rev 1.10/1.00 addr 3
uhidev0: iclass 3/1
ukbd0 at uhidev0
wskbd0 at ukbd0: console keyboard, using wsdisplay0
uhidev1 at uhub1 port 1 configuration 1 interface 1 "vendor 0x0557 product 0x2419" rev 1.10/1.00 addr 3
uhidev1: iclass 3/1
uhid at uhidev1 not configured
softraid0 at root
scsibus1 at softraid0: 256 targets
root on rd0a swap on rd0b dump on rd0b
WARNING: CHECK AND RESET THE DATE!
syncing disks...
OpenBSD 7.5 (GENERIC.MP) #82: Wed Mar 20 15:48:40 MDT 2024
deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 34288898048 (32700MB)
avail mem = 33228267520 (31688MB)
random: good seed from bootblocks
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 3.0 @ 0x8f776000 (36 entries)
bios0: vendor American Megatrends Inc. version "2.2a" date 05/24/2019
bios0: Supermicro X11SSD-F
acpi0 at bios0: ACPI 5.0
acpi0: sleep states S0 S4 S5
acpi0: tables DSDT FACP APIC FPDT FIDT SPMI MCFG HPET LPIT SSDT SSDT SSDT DBGP DBG2 SSDT PRAD SSDT UEFI SSDT DMAR EINJ ERST BERT HEST
acpi0: wakeup devices PEG0(S4) PEGP(S4) PEG1(S4) PEGP(S4) PEG2(S4) PEGP(S4) RP09(S4) PXSX(S4) RP10(S4) PXSX(S4) RP11(S4) PXSX(S4) RP12(S4) PXSX(S4) RP13(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) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.00 MHz, 06-9e-09, patch 000000f8
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,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,SGX,BMI1,HLE,AVX2,SMEP,BMI2,ERMS,INVPCID,RTM,MPX,RDSEED,ADX,SMAP,CLFLUSHOPT,PT,SRBDS_CTRL,MD_CLEAR,TSXFA,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,RSBA,MISC_PKG_CT,ENERGY_FILT,GDS_CTRL,XSAVEOPT,XSAVEC,XGETBV1,XSAVES,MELTDOWN
cpu0: 32KB 64b/line 8-way D-cache, 32KB 64b/line 8-way I-cache, 256KB 64b/line 4-way L2 cache, 8MB 64b/line 16-way L3 cache
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges
cpu0: apic clock running at 24MHz
cpu0: mwait min=64, max=64, C-substates=0.2.1.2.4.1, IBE
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.01 MHz, 06-9e-09, patch 000000f8
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,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,SGX,BMI1,HLE,AVX2,SMEP,BMI2,ERMS,INVPCID,RTM,MPX,RDSEED,ADX,SMAP,CLFLUSHOPT,PT,SRBDS_CTRL,MD_CLEAR,TSXFA,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,RSBA,MISC_PKG_CT,ENERGY_FILT,GDS_CTRL,XSAVEOPT,XSAVEC,XGETBV1,XSAVES,MELTDOWN
cpu1: 32KB 64b/line 8-way D-cache, 32KB 64b/line 8-way I-cache, 256KB 64b/line 4-way L2 cache, 8MB 64b/line 16-way L3 cache
cpu1: smt 0, core 1, package 0
cpu2 at mainbus0: apid 4 (application processor)
cpu2: Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.01 MHz, 06-9e-09, patch 000000f8
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,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,SGX,BMI1,HLE,AVX2,SMEP,BMI2,ERMS,INVPCID,RTM,MPX,RDSEED,ADX,SMAP,CLFLUSHOPT,PT,SRBDS_CTRL,MD_CLEAR,TSXFA,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,RSBA,MISC_PKG_CT,ENERGY_FILT,GDS_CTRL,XSAVEOPT,XSAVEC,XGETBV1,XSAVES,MELTDOWN
cpu2: 32KB 64b/line 8-way D-cache, 32KB 64b/line 8-way I-cache, 256KB 64b/line 4-way L2 cache, 8MB 64b/line 16-way L3 cache
cpu2: smt 0, core 2, package 0
cpu3 at mainbus0: apid 6 (application processor)
cpu3: Intel(R) Xeon(R) CPU E3-1270 v6 @ 3.80GHz, 3800.01 MHz, 06-9e-09, patch 000000f8
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,SDBG,FMA3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,PAGE1GB,RDTSCP,LONG,LAHF,ABM,3DNOWP,PERF,ITSC,FSGSBASE,TSC_ADJUST,SGX,BMI1,HLE,AVX2,SMEP,BMI2,ERMS,INVPCID,RTM,MPX,RDSEED,ADX,SMAP,CLFLUSHOPT,PT,SRBDS_CTRL,MD_CLEAR,TSXFA,IBRS,IBPB,STIBP,L1DF,SSBD,SENSOR,ARAT,RSBA,MISC_PKG_CT,ENERGY_FILT,GDS_CTRL,XSAVEOPT,XSAVEC,XGETBV1,XSAVES,MELTDOWN
cpu3: 32KB 64b/line 8-way D-cache, 32KB 64b/line 8-way I-cache, 256KB 64b/line 4-way L2 cache, 8MB 64b/line 16-way L3 cache
cpu3: smt 0, core 3, package 0
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
acpimcfg0 at acpi0
acpimcfg0: addr 0xe0000000, bus 0-255
acpihpet0 at acpi0: 23999999 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 1 (PEG0)
acpiprt2 at acpi0: bus 2 (PEG1)
acpiprt3 at acpi0: bus -1 (PEG2)
acpiprt4 at acpi0: bus 4 (RP09)
acpiprt5 at acpi0: bus -1 (RP10)
acpiprt6 at acpi0: bus 5 (RP11)
acpiprt7 at acpi0: bus 6 (BR52)
acpiprt8 at acpi0: bus -1 (RP12)
acpiprt9 at acpi0: bus -1 (RP13)
acpiprt10 at acpi0: bus 3 (RP01)
acpiprt11 at acpi0: bus -1 (RP02)
acpiprt12 at acpi0: bus -1 (RP03)
acpiprt13 at acpi0: bus -1 (RP04)
acpiprt14 at acpi0: bus -1 (RP05)
acpiprt15 at acpi0: bus -1 (RP06)
acpiprt16 at acpi0: bus -1 (RP07)
acpiprt17 at acpi0: bus -1 (RP08)
acpiprt18 at acpi0: bus -1 (RP17)
acpiprt19 at acpi0: bus -1 (RP18)
acpiprt20 at acpi0: bus -1 (RP19)
acpiprt21 at acpi0: bus -1 (RP20)
acpiprt22 at acpi0: bus -1 (RP14)
acpiprt23 at acpi0: bus -1 (RP15)
acpiprt24 at acpi0: bus -1 (RP16)
acpiec0 at acpi0: not present
acpipci0 at acpi0 PCI0: 0x00000000 0x00000011 0x00000001
com0 at acpi0 UAR1 addr 0x3f8/0x8 irq 4: ns16550a, 16 byte fifo
com1 at acpi0 UAR2 addr 0x2f8/0x8 irq 3: ns16550a, 16 byte fifo
acpicmos0 at acpi0
"IPI0001" at acpi0 not configured
acpibtn0 at acpi0: SLPB
"INT33A1" at acpi0 not configured
acpibtn1 at acpi0: PWRB
"ACPI000D" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
"PNP0C0B" at acpi0 not configured
acpicpu0 at acpi0: C1(@1 halt!), PSS
acpicpu1 at acpi0: C1(@1 halt!), PSS
acpicpu2 at acpi0: C1(@1 halt!), PSS
acpicpu3 at acpi0: C1(@1 halt!), PSS
acpipwrres0 at acpi0: PG00, resource for PEG0
acpipwrres1 at acpi0: PG01, resource for PEG1
acpipwrres2 at acpi0: PG02, resource for PEG2
acpipwrres3 at acpi0: WRST
acpipwrres4 at acpi0: WRST
acpipwrres5 at acpi0: WRST
acpipwrres6 at acpi0: WRST
acpipwrres7 at acpi0: WRST
acpipwrres8 at acpi0: WRST
acpipwrres9 at acpi0: WRST
acpipwrres10 at acpi0: WRST
acpipwrres11 at acpi0: WRST
acpipwrres12 at acpi0: WRST
acpipwrres13 at acpi0: WRST
acpipwrres14 at acpi0: WRST
acpipwrres15 at acpi0: WRST
acpipwrres16 at acpi0: WRST
acpipwrres17 at acpi0: WRST
acpipwrres18 at acpi0: WRST
acpipwrres19 at acpi0: WRST
acpipwrres20 at acpi0: WRST
acpipwrres21 at acpi0: WRST
acpipwrres22 at acpi0: WRST
acpipwrres23 at acpi0: FN00, resource for FAN0
acpipwrres24 at acpi0: FN01, resource for FAN1
acpipwrres25 at acpi0: FN02, resource for FAN2
acpipwrres26 at acpi0: FN03, resource for FAN3
acpipwrres27 at acpi0: FN04, resource for FAN4
acpitz0 at acpi0: critical temperature is 119 degC
acpitz1 at acpi0: critical temperature is 119 degC
acpivideo0 at acpi0: GFX0
acpivout0 at acpivideo0: DD1F
ipmi at mainbus0 not configured
cpu0: using VERW MDS workaround (except on vmm entry)
cpu0: Enhanced SpeedStep 3800 MHz: speeds: 3801, 3800, 3600, 3400, 3200, 2900, 2700, 2500, 2300, 2100, 1900, 1700, 1400, 1200, 1000, 800 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Xeon E3-1200 v6/7 Host" rev 0x05
ppb0 at pci0 dev 1 function 0 "Intel Core 6G PCIE" rev 0x05: msi
pci1 at ppb0 bus 1
ppb1 at pci0 dev 1 function 1 "Intel Core 6G PCIE" rev 0x05: msi
pci2 at ppb1 bus 2
em0 at pci2 dev 0 function 0 "Intel I350" rev 0x01: msi, address ac:1f:6b:99:73:c0
em1 at pci2 dev 0 function 1 "Intel I350" rev 0x01: msi, address ac:1f:6b:99:73:c1
"Intel 100 Series ISH" rev 0x31 at pci0 dev 19 function 0 not configured
xhci0 at pci0 dev 20 function 0 "Intel 100 Series xHCI" rev 0x31: 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
pchtemp0 at pci0 dev 20 function 2 "Intel 100 Series Thermal" rev 0x31
"Intel 100 Series MEI" rev 0x31 at pci0 dev 22 function 0 not configured
"Intel 100 Series MEI" rev 0x31 at pci0 dev 22 function 1 not configured
ahci0 at pci0 dev 23 function 0 "Intel 100 Series AHCI" rev 0x31: msi, AHCI 1.3.1
ahci0: port 0: 6.0Gb/s
ahci0: port 1: 6.0Gb/s
scsibus1 at ahci0: 32 targets
sd0 at scsibus1 targ 0 lun 0: <ATA, Samsung SSD 860, RVM0> naa.5002538e40f062c5
sd0: 244198MB, 512 bytes/sector, 500118192 sectors, thin
sd1 at scsibus1 targ 1 lun 0: <ATA, WDC WD1003FZEX-0, 01.0> naa.50014ee21046f099
sd1: 953869MB, 512 bytes/sector, 1953525168 sectors
ppb2 at pci0 dev 28 function 0 "Intel 100 Series PCIE" rev 0xf1: msi
pci3 at ppb2 bus 3
ppb3 at pci0 dev 29 function 0 "Intel 100 Series PCIE" rev 0xf1: msi
pci4 at ppb3 bus 4
ppb4 at pci0 dev 29 function 2 "Intel 100 Series PCIE" rev 0xf1: msi
pci5 at ppb4 bus 5
ppb5 at pci5 dev 0 function 0 "ASPEED Technology AST1150 PCI" rev 0x03
pci6 at ppb5 bus 6
vga1 at pci6 dev 0 function 0 "ASPEED Technology AST2000" rev 0x30
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
pcib0 at pci0 dev 31 function 0 "Intel C236 LPC" rev 0x31
"Intel 100 Series PMC" rev 0x31 at pci0 dev 31 function 2 not configured
ichiic0 at pci0 dev 31 function 4 "Intel 100 Series SMBus" rev 0x31: apic 2 int 16
iic0 at ichiic0
sdtemp0 at iic0 addr 0x19: stts2004
sdtemp1 at iic0 addr 0x1b: stts2004
spdmem0 at iic0 addr 0x51: 16GB DDR4 SDRAM ECC PC4-21300 with thermal sensor
spdmem1 at iic0 addr 0x53: 16GB DDR4 SDRAM ECC PC4-21300 with thermal sensor
isa0 at pcib0
isadma0 at isa0
pckbc0 at isa0 port 0x60/5 irq 1 irq 12
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT
uhub1 at uhub0 port 6 configuration 1 interface 0 "ATEN International product 0x7000" rev 2.00/0.00 addr 2
uhidev0 at uhub1 port 1 configuration 1 interface 0 "ATEN International product 0x2419" rev 1.10/1.00 addr 3
uhidev0: iclass 3/1
ukbd0 at uhidev0: 8 variable keys, 6 key codes
wskbd0 at ukbd0: console keyboard, using wsdisplay0
uhidev1 at uhub1 port 1 configuration 1 interface 1 "ATEN International product 0x2419" rev 1.10/1.00 addr 3
uhidev1: iclass 3/1
ums0 at uhidev1: 3 buttons, Z dir
wsmouse0 at ums0 mux 0
vscsi0 at root
scsibus2 at vscsi0: 256 targets
softraid0 at root
scsibus3 at softraid0: 256 targets
root on sd0a (045a33c79b9a2ad9.a) swap on sd0b dump on sd0b
--
Regards,
Chris Bennett

Re: [maintainer update] devel/goreleaser 2.3.1

On Sat, 14 Sep 2024 18:17:01 +0200 (CEST), Laurent Cheylus
<foxy@free.fr> wrote:

> Hi,
>
> update for devel/goreleaser to the latest version 2.3.1.
> Changelog:
> https://github.com/goreleaser/goreleaser/releases/tag/v2.3.1
>
> - update Makefile, modules.inc and distinfo for this version
> - add a specific step for "test", inspired from task "test" (file
> Taskfile.yml in sources)
>
> Build and tests OK on current/amd64 with Go 1.23.1. Some integrated
> tests fail due to lack of network and WRKSRC is not a Git repository.
>
> Tests/comments welcome and please commit if OK.
>
> Laurent
>

Committed, thanks!

Re: [maintainer update] security/gosec 2.21.2

On Sat, 14 Sep 2024 18:24:33 +0200 (CEST), Laurent Cheylus
<foxy@free.fr> wrote:

> Hi,
>
> update for security/gosec to the latest version 2.21.2
> Changelog: https://github.com/securego/gosec/releases/tag/v2.21.2
>
> - update Makefile, distinfo and modules.inc for this version
> - add a specific step for tests ('do-test') and add some comments in
> Makefile (7 tests failed for "TestRules" testsuite)
>
> Build and tests OK (minus 7 fail) with Go 1.23.1 on current/amd64.
>
> Tests welcome and please commit if OK.
>
> Laurent

Committed, thanks!

Re: UPDATE: net/tailscale-1.74.0

On Sat, 14 Sep 2024 09:14:17 -0400, Adriano Barbosa
<barbosa.aob@gmail.com> wrote:

> Hi.
> Update for net/tailscale v1.74.0
> Changelog:
> https://tailscale.com/changelog#2024-09-12

Committed, thanks!

> Obrigado!
> --
> Adriano
>
>
> Index: Makefile
> ===================================================================
> RCS file: /cvs/ports/net/tailscale/Makefile,v
> diff -u -p -r1.40 Makefile
> --- Makefile 20 Aug 2024 16:37:17 -0000 1.40
> +++ Makefile 14 Sep 2024 02:00:32 -0000
> @@ -2,7 +2,7 @@ BROKEN-i386 = unix.EPROTO not defined
>
> COMMENT = modern overlay-like VPN built on top of WireGuard
>
> -V = 1.72.0
> +V = 1.74.0
> MODGO_MODNAME = tailscale.com
> MODGO_VERSION = v${V}
>
> Index: distinfo
> ===================================================================
> RCS file: /cvs/ports/net/tailscale/distinfo,v
> diff -u -p -r1.38 distinfo
> --- distinfo 20 Aug 2024 16:37:17 -0000 1.38
> +++ distinfo 14 Sep 2024 02:00:34 -0000
> @@ -65,6 +65,8 @@ SHA256 (go_modules/filippo.io/edwards255
> SHA256 (go_modules/filippo.io/edwards25519/@v/v1.1.0.zip) =
> msQ6aG0G/evXGfevOGbIfrBpMCJy37ExAHrfRxwwi2U= SHA256
> (go_modules/filippo.io/mkcert/@v/v1.4.4.mod) =
> Sz0qPFtaIoY47ps4WH1D9O5GjdCVTTzVgoRDHoGoZ1I= SHA256
> (go_modules/filippo.io/mkcert/@v/v1.4.4.zip) =
> q+I+dsKp9SiKLYSoO2CbknmC6F61DuYz8DzOFaKsEsU= +SHA256
> (go_modules/fyne.io/systray/@v/v1.11.0.mod) =
> jdliZFmB0Imnchx5MtEUOeev2moNvUgh52lid0lbWxg= +SHA256
> (go_modules/fyne.io/systray/@v/v1.11.0.zip) =
> GqDduH2zb1uBth1a21Spxp+Yr1kkbeMOJZ/HpgBDMoQ= SHA256
> (go_modules/github.com/!abirdcfly/dupword/@v/v0.0.11.mod) =
> 02QI/kp1V7aRG/4QfBmhChQmcqd9rcdqwNYbS3wK8VI= SHA256
> (go_modules/github.com/!abirdcfly/dupword/@v/v0.0.11.zip) =
> BdD3WztM6eH0eO78bmmWYF8FajwaaiF18BQOIN0mzls= SHA256
> (go_modules/github.com/!alek!si/pointer/@v/v1.2.0.mod) =
> FFnJtT4syj4WK6khJctMQV9F4xD3q8wXOBkfD/SS+8k= @@ -91,8 +93,8 @@ SHA256
> (go_modules/github.com/!azure/go- SHA256
> (go_modules/github.com/!burnt!sushi/toml/@v/v0.3.1.mod) =
> KAIbQYClnDmTYHqVsY4jDdC8a+pSQv/o6ou/tPT3tNc= SHA256
> (go_modules/github.com/!burnt!sushi/toml/@v/v0.4.1.mod) =
> JnfIL+dPIDdyiJpagBr7Mp2VF1UId92ssXIZFpurPt0= SHA256
> (go_modules/github.com/!burnt!sushi/toml/@v/v1.2.1.mod) =
> JnfIL+dPIDdyiJpagBr7Mp2VF1UId92ssXIZFpurPt0= -SHA256
> (go_modules/github.com/!burnt!sushi/toml/@v/v1.3.2.mod) =
> JnfIL+dPIDdyiJpagBr7Mp2VF1UId92ssXIZFpurPt0= -SHA256
> (go_modules/github.com/!burnt!sushi/toml/@v/v1.3.2.zip) =
> XeJGoMtMJW8/1dDbigihFPWK8MLhk7vwrZASEErbtrI= +SHA256
> (go_modules/github.com/!burnt!sushi/toml/@v/v1.4.1-0.20240526193622-a339e1f7089c.mod)
> = RdeLgFcZmbaiWNoPIWc9o55rUBNJwDOkrNFpQ3QR1zM= +SHA256
> (go_modules/github.com/!burnt!sushi/toml/@v/v1.4.1-0.20240526193622-a339e1f7089c.zip)
> = 8V8Mp6PFpCddPVYCNvF46dc1oIRTS/O2hexfZ2gGIwo= SHA256
> (go_modules/github.com/!burnt!sushi/xgb/@v/v0.0.0-20160522181843-27f122750802.mod)
> = luveICsJL29NHzkwvAfPGKVpmZjd6lG5T+hYETspqNg= SHA256
> (go_modules/github.com/!burnt!sushi/xgb/@v/v0.0.0-20160522181843-27f122750802.zip)
> = 9Slix/vsqB6op3fR+LHx0lgD3EN/u0kPJTNEIyiEMo4= SHA256
> (go_modules/github.com/!code-!hex/go-generics-cache/@v/v1.3.1.mod) =
> eP3trTSMVNeogdjDFoIvMsM5lCz6tH7wSvHpnAWF6SI= @@ -492,6 +494,8 @@
> SHA256 (go_modules/github.com/felixge/ht SHA256
> (go_modules/github.com/felixge/httpsnoop/@v/v1.0.4.zip) =
> dapHExEmXphg3w5SNAC0ZQ7QwaMyYnhqQh8HImeS5JQ= SHA256
> (go_modules/github.com/firefart/nonamedreturns/@v/v1.0.4.mod) =
> DbPETTTKegVvUShZQNLdC1WI635/Rp+QQoUuQpZNpy8= SHA256
> (go_modules/github.com/firefart/nonamedreturns/@v/v1.0.4.zip) =
> KT+ExOFzfSVY4dKJ+cpvfKhRJ2+yBL7pohZk2k3dnKw= +SHA256
> (go_modules/github.com/fogleman/gg/@v/v1.3.0.mod) =
> S61AyJb8nX1Ve6T3EdjDtzEqbJrVf/W/ERanDUJ7aN0= +SHA256
> (go_modules/github.com/fogleman/gg/@v/v1.3.0.zip) =
> eS96Pqnuoxt5R9q6+dWjBziSRQaQeOS/Q112ywUFQ5w= SHA256
> (go_modules/github.com/frankban/quicktest/@v/v1.14.4.mod) =
> aLKthKInPSO6xKV0F3Wj+llKB9KnH4DoR6fWPFOlvZ8= SHA256
> (go_modules/github.com/frankban/quicktest/@v/v1.14.6.mod) =
> aLKthKInPSO6xKV0F3Wj+llKB9KnH4DoR6fWPFOlvZ8= SHA256
> (go_modules/github.com/frankban/quicktest/@v/v1.14.6.zip) =
> jHN3AjUjeAsqZQjzwGvTu+/T3aBkUzrW/2ckmGI0mI0= @@ -653,6 +657,8 @@
> SHA256 (go_modules/github.com/golang-jwt SHA256
> (go_modules/github.com/golang-jwt/jwt/v4/@v/v4.5.0.zip) =
> /bO5wHjrqaK9Q3wbOs35juCdJ2EhqXtLx/bYcOtf91s= SHA256
> (go_modules/github.com/golang-jwt/jwt/v5/@v/v5.2.0.mod) =
> PqmkgQEE/ra/wm7oBefkJ6AY7klwZeexsRfAEx5O4wo= SHA256
> (go_modules/github.com/golang-jwt/jwt/v5/@v/v5.2.0.zip) =
> AXIHrFsFFOpE+5YtHn3ytjbQu1EuRSrm6KWwWzPf6MY= +SHA256
> (go_modules/github.com/golang/freetype/@v/v0.0.0-20170609003504-e2365dfdc4a0.mod)
> = JtRxrVlQM02ZBxj/tGc0ETIm7xNPGfu4c1Tj2H3TSFM= +SHA256
> (go_modules/github.com/golang/freetype/@v/v0.0.0-20170609003504-e2365dfdc4a0.zip)
> = zcueahSTPcvxZ7RNzVCD/GouUsT66Pt5dHxpHv632E4= SHA256
> (go_modules/github.com/golang/glog/@v/v0.0.0-20160126235308-23def4e6c14b.mod)
> = nJuvwPUpBa+qcWSFizoBoMw9wH2iMDAXfOSH9ydDiVg= SHA256
> (go_modules/github.com/golang/glog/@v/v1.1.2.mod) =
> Xs+uhc7JgQcMQw5mrw4CLeIzjmbxVrDgPNIq3Bi4nNk= SHA256
> (go_modules/github.com/golang/glog/@v/v1.1.2.zip) =
> 8X59ikSF6RNzxy1+1oiyPK/mR81OK7jeZp45o1Qy++w= @@ -905,8 +911,8 @@
> SHA256 (go_modules/github.com/ianlanceta SHA256
> (go_modules/github.com/ianlancetaylor/demangle/@v/v0.0.0-20200824232613-28f6c0f3b639.mod)
> = HQqdl3m4dISvT9ubWW5mMpicgooCehbOuqTSHJvbPeo= SHA256
> (go_modules/github.com/ianlancetaylor/demangle/@v/v0.0.0-20240312041847-bd984b5ce465.mod)
> = EF1NDHjIIF+F1TvIayvdxYQwzg+d03tyWCu6f/jeOLw= SHA256
> (go_modules/github.com/ianlancetaylor/demangle/@v/v0.0.0-20240312041847-bd984b5ce465.zip)
> = /Oj5AiRF3+0K/Ybgnv2Jb8SNSR9gWbMqcf6IfeXUN6Y= -SHA256
> (go_modules/github.com/illarion/gonotify/@v/v1.0.1.mod) =
> QtNKdHCGhBVLtsDr3BhKsYdLHSy8etk4PO0IVyNfUL8= -SHA256
> (go_modules/github.com/illarion/gonotify/@v/v1.0.1.zip) =
> FXTpU4b494ZgyKZqTWmP+x/bgyZU3NrlSMJlkIq2Kq4= +SHA256
> (go_modules/github.com/illarion/gonotify/v2/@v/v2.0.3.mod) =
> 1+UbowKsyrYGFeckImsp8CY2ASSspvfJYe7cv3QuoSI= +SHA256
> (go_modules/github.com/illarion/gonotify/v2/@v/v2.0.3.zip) =
> SvoMbIWFdA0iYadunEE7GqxDaBErhZvs8GCfBuO4NOE= SHA256
> (go_modules/github.com/imdario/mergo/@v/v0.3.11.mod) =
> MbvTydizkAk78fEJlCB8v1wVh5coORGvXa1yijROOvk= SHA256
> (go_modules/github.com/imdario/mergo/@v/v0.3.15.mod) =
> oAL5021hPaH3UKZqN94iq49v/ohl8wQjkTkwxnQop9w= SHA256
> (go_modules/github.com/imdario/mergo/@v/v0.3.16.mod) =
> oAL5021hPaH3UKZqN94iq49v/ohl8wQjkTkwxnQop9w= @@ -1494,16 +1500,16 @@
> SHA256 (go_modules/github.com/tailscale/ SHA256
> (go_modules/github.com/tailscale/hujson/@v/v0.0.0-20221223112325-20486734a56a.zip)
> = jmW6zr/Aoe3AZ/2X+Dn8/rk8HnuMwBhtF3PP9OEl2dU= SHA256
> (go_modules/github.com/tailscale/mkctr/@v/v0.0.0-20240628074852-17ca944da6ba.mod)
> = m39Lc3fyHJvgPW16M+SwpdBzPDimMbWAmVkaEOewvsc= SHA256
> (go_modules/github.com/tailscale/mkctr/@v/v0.0.0-20240628074852-17ca944da6ba.zip)
> = ftH1QkgAoxXv2f6jlRHTTu5cRNYe8BAmfq0mRRQcGuo= -SHA256
> (go_modules/github.com/tailscale/netlink/@v/v1.1.1-0.20211101221916-cabfb018fe85.mod)
> = Cmpb22+cJn8Agn5v956E0L9xpVrB+IAgi/+fpgDTCz0= -SHA256
> (go_modules/github.com/tailscale/netlink/@v/v1.1.1-0.20211101221916-cabfb018fe85.zip)
> = HABGWrsBadLByRF0Y1kwPrUd3OEFyjA5MVqp4J4zjBo= +SHA256
> (go_modules/github.com/tailscale/netlink/@v/v1.1.1-0.20240822203006-4d49adab4de7.mod)
> = Cmpb22+cJn8Agn5v956E0L9xpVrB+IAgi/+fpgDTCz0= +SHA256
> (go_modules/github.com/tailscale/netlink/@v/v1.1.1-0.20240822203006-4d49adab4de7.zip)
> = pRle9gD42aD7hQHuqF5P4DIadL1X3siPB7hWnQ7k9V4= SHA256
> (go_modules/github.com/tailscale/peercred/@v/v0.0.0-20240214030740-b535050b2aa4.mod)
> = 9VoZNMFrlPPIAm7KcIehKzrrnHKoHSrGO9ICpqpf0NY= SHA256
> (go_modules/github.com/tailscale/peercred/@v/v0.0.0-20240214030740-b535050b2aa4.zip)
> = 4/H0xGdogi/JjnPGebdamuSQ86JiEImJFhtjfh720dc= SHA256
> (go_modules/github.com/tailscale/web-client-prebuilt/@v/v0.0.0-20240226180453-5db17b287bf1.mod)
> = LnEXh07U8/ePwrCpbSQZuO5fufcfffkeSl6HxrfpDZ0= SHA256
> (go_modules/github.com/tailscale/web-client-prebuilt/@v/v0.0.0-20240226180453-5db17b287bf1.zip)
> = Yhv9fHWG3b+997IAIVsQz2j/bOZiSXUdYrA4GHgoycc= SHA256
> (go_modules/github.com/tailscale/wf/@v/v0.0.0-20240214030419-6fbb0a674ee6.mod)
> = pwYFg8oMZmolYbOB0CsVULx//SeaQ4EyOJSJrcESfeE= SHA256
> (go_modules/github.com/tailscale/wf/@v/v0.0.0-20240214030419-6fbb0a674ee6.zip)
> = TDtL1+CGb6cAT5Edo6CldpP79kG185ftVYBf9gSphUc= -SHA256
> (go_modules/github.com/tailscale/wireguard-go/@v/v0.0.0-20240731203015-71393c576b98.mod)
> = 8/iBpPcBR2SVFQhQCQwtt5ysgHogzwPhRHa+Gi6jHuI= -SHA256
> (go_modules/github.com/tailscale/wireguard-go/@v/v0.0.0-20240731203015-71393c576b98.zip)
> = kyynMoLCgGVLme68Sn+T6vCGFOIgX5DF6cAscYZDIeE= +SHA256
> (go_modules/github.com/tailscale/wireguard-go/@v/v0.0.0-20240905161824-799c1978fafc.mod)
> = 8/iBpPcBR2SVFQhQCQwtt5ysgHogzwPhRHa+Gi6jHuI= +SHA256
> (go_modules/github.com/tailscale/wireguard-go/@v/v0.0.0-20240905161824-799c1978fafc.zip)
> = YVSXPfOixxtimOjQRq0vri5IiAHEkNPkRVXodk2KQgI= SHA256
> (go_modules/github.com/tailscale/xnet/@v/v0.0.0-20240729143630-8497ac4dab2e.mod)
> = ex59X6JiSfNTLEs8FyRHhmY2xWXHNm/vfEncuDanP6U= SHA256
> (go_modules/github.com/tailscale/xnet/@v/v0.0.0-20240729143630-8497ac4dab2e.zip)
> = Q4q/KM5fsDrfUpwstXpFH5skPEoqGB2dBs22G7EJYOc= SHA256
> (go_modules/github.com/tc-hib/winres/@v/v0.2.1.mod) =
> xcdTcji11EIL0KwcA1enH9lX2pzj6GFPo6C1hEfuJL0= @@ -1742,6 +1748,7 @@
> SHA256 (go_modules/golang.org/x/exp/@v/v SHA256
> (go_modules/golang.org/x/exp/@v/v0.0.0-20230127140709-cafedaf64729.mod)
> = AWlyQUC24fWTQogGuQZg3GxMER20/hXZIWJCRvypaug= SHA256
> (go_modules/golang.org/x/exp/@v/v0.0.0-20230224173230-c95f2b4c22f2.mod)
> = AWlyQUC24fWTQogGuQZg3GxMER20/hXZIWJCRvypaug= SHA256
> (go_modules/golang.org/x/exp/@v/v0.0.0-20230725093048-515e97ebf090.mod)
> = GaEVTCCSgnxM0ayLLef1sUNmCj6VhLN8w8IjdYAKuw8= +SHA256
> (go_modules/golang.org/x/exp/@v/v0.0.0-20231110203233-9a3e6036ecaa.mod)
> = y/ONaZW6KtMXkNFQn0Bu3Y5L0sDYGEwbv2tvbNrNyEQ= SHA256
> (go_modules/golang.org/x/exp/@v/v0.0.0-20231219180239-dc181d75b848.mod)
> = dSUNWRZdES5cHf/yUBpW5Yakk5uZxMYMGWuYa0lHiy0= SHA256
> (go_modules/golang.org/x/exp/@v/v0.0.0-20240119083558-1b970713d09a.mod)
> = mR9g3gigToBWNSaTXIm9u5J07hRUdeXqAfjvGjxVdTs= SHA256
> (go_modules/golang.org/x/exp/@v/v0.0.0-20240119083558-1b970713d09a.zip)
> = cGuv2OfT19QRKmIwt06TBAFafY8zrxg+Arq8z7hyF+U= @@ -1752,6 +1759,7 @@
> SHA256 (go_modules/golang.org/x/exp/type SHA256
> (go_modules/golang.org/x/exp/typeparams/@v/v0.0.0-20230203172020-98cc5a0785f9.mod)
> = SQZPK2tZROCRvGfzTutXGbAFLfczPYiHFzXT6KwHFao= SHA256
> (go_modules/golang.org/x/exp/typeparams/@v/v0.0.0-20230213192124-5e25df0256eb.mod)
> = SQZPK2tZROCRvGfzTutXGbAFLfczPYiHFzXT6KwHFao= SHA256
> (go_modules/golang.org/x/exp/typeparams/@v/v0.0.0-20230224173230-c95f2b4c22f2.mod)
> = SQZPK2tZROCRvGfzTutXGbAFLfczPYiHFzXT6KwHFao= +SHA256
> (go_modules/golang.org/x/exp/typeparams/@v/v0.0.0-20231108232855-2478ac86f678.mod)
> = SQZPK2tZROCRvGfzTutXGbAFLfczPYiHFzXT6KwHFao= SHA256
> (go_modules/golang.org/x/exp/typeparams/@v/v0.0.0-20240119083558-1b970713d09a.mod)
> = SQZPK2tZROCRvGfzTutXGbAFLfczPYiHFzXT6KwHFao= SHA256
> (go_modules/golang.org/x/exp/typeparams/@v/v0.0.0-20240119083558-1b970713d09a.zip)
> = 1kydBw8WVKiyEuGRXJOx4F4EOajYF0ktjvbHVU1wmrU= SHA256
> (go_modules/golang.org/x/image/@v/v0.0.0-20190227222117-0694c2d4d067.mod)
> = m5BaeoyEzp4WR2DAkHG5UwHo09QC7ZYhc/EvkritYvw= @@ -1972,6 +1980,7 @@
> SHA256 (go_modules/golang.org/x/sys/@v/v SHA256
> (go_modules/golang.org/x/sys/@v/v0.17.0.mod) =
> 0iezJfYh9OvijTm6dz6pm4cPOTt8CcNFksNlsW3VYN4= SHA256
> (go_modules/golang.org/x/sys/@v/v0.18.0.mod) =
> 0iezJfYh9OvijTm6dz6pm4cPOTt8CcNFksNlsW3VYN4= SHA256
> (go_modules/golang.org/x/sys/@v/v0.2.0.mod) =
> 8DMzMJb+GY8xUd7tk/LeunTlC7/nc5E0BFvDt85KUCQ= +SHA256
> (go_modules/golang.org/x/sys/@v/v0.20.0.mod) =
> 0iezJfYh9OvijTm6dz6pm4cPOTt8CcNFksNlsW3VYN4= SHA256
> (go_modules/golang.org/x/sys/@v/v0.21.0.mod) =
> 0iezJfYh9OvijTm6dz6pm4cPOTt8CcNFksNlsW3VYN4= SHA256
> (go_modules/golang.org/x/sys/@v/v0.22.0.mod) =
> 0iezJfYh9OvijTm6dz6pm4cPOTt8CcNFksNlsW3VYN4= SHA256
> (go_modules/golang.org/x/sys/@v/v0.22.0.zip) =
> JDQpn1MLBJpcgSHWRldRzli9Yvk5r940xEL3nIjpAzw= @@ -2099,7 +2108,6 @@
> SHA256 (go_modules/golang.org/x/tools/@v SHA256
> (go_modules/golang.org/x/tools/@v/v0.1.8.mod) =
> EjpgkNo9ol+9FJgeNnHS6wagG0qf1pOVdYDlCYn17Po= SHA256
> (go_modules/golang.org/x/tools/@v/v0.1.9.mod) =
> EjpgkNo9ol+9FJgeNnHS6wagG0qf1pOVdYDlCYn17Po= SHA256
> (go_modules/golang.org/x/tools/@v/v0.11.0.mod) =
> Id7Y/+5V57U/lcbMdix5dZCZi+TrdeZJVQn5BvrOFtY= -SHA256
> (go_modules/golang.org/x/tools/@v/v0.12.1-0.20230825192346-2191a27a6dc5.mod)
> = 8ntM++BBE9T76CEuqUR3Q/vRDuxPOYipcdWhwKK6Crs= SHA256
> (go_modules/golang.org/x/tools/@v/v0.13.0.mod) =
> FCs0FrAOghO0CeJ5pDS5emzglTHJFMG0cXh4FX1Xmj8= SHA256
> (go_modules/golang.org/x/tools/@v/v0.16.1.mod) =
> kIBn6RvoWirTQv0MT1SkRFSeBcPsJyxHX54V+hU6+Gg= SHA256
> (go_modules/golang.org/x/tools/@v/v0.17.0.mod) =
> mZ4mc6/CJ5lYaxkIsTn4+XQmy/9JgxZVKHJCBhZByFg= @@ -2107,6 +2115,7 @@
> SHA256 (go_modules/golang.org/x/tools/@v SHA256
> (go_modules/golang.org/x/tools/@v/v0.19.0.mod) =
> lRF4J7egxD+4ScnXIy20BUJ+MMWGE0dB7jAQymw3fXI= SHA256
> (go_modules/golang.org/x/tools/@v/v0.2.0.mod) =
> nJteYq9p8rEAKc4SlE3Ig08SJqg7skPpoNvzfguxhro= SHA256
> (go_modules/golang.org/x/tools/@v/v0.21.1-0.20240508182429-e35e4ccd0d2d.mod)
> = RSXa1PVyPR5An2o5jBrn/V4sY31DpcrrSYRAd7kcnus= +SHA256
> (go_modules/golang.org/x/tools/@v/v0.21.1-0.20240531212143-b6235391adb3.mod)
> = txBYCF91y5ZMT4wNR8p4zrJOk65UAdfZrs2OmPmyPvk= SHA256
> (go_modules/golang.org/x/tools/@v/v0.22.0.mod) =
> cf0XssEb8eaLYH/TgnrjtX2H7PRxsFMjic+iCIsv6zo= SHA256
> (go_modules/golang.org/x/tools/@v/v0.23.0.mod) =
> 3Yr2o+F1yIFMRlGdf+NXVsnFlCbsY67/zCNDKfMwpi8= SHA256
> (go_modules/golang.org/x/tools/@v/v0.23.0.zip) =
> nKTNCC+Nw6Jl+AINasWBB42QKHjKQLulbV5nK1Ygmuw= @@ -2307,8 +2316,8 @@
> SHA256 (go_modules/honnef.co/go/tools/@v SHA256
> (go_modules/honnef.co/go/tools/@v/v0.4.2.mod) =
> IzCGio9Jb2MGa5JWVqegfK+ghXaM0KRpHe33a8eqWdw= SHA256
> (go_modules/honnef.co/go/tools/@v/v0.4.3.mod) =
> IzCGio9Jb2MGa5JWVqegfK+ghXaM0KRpHe33a8eqWdw= SHA256
> (go_modules/honnef.co/go/tools/@v/v0.4.5.mod) =
> 8EZXGizQukzB9MFv+UsOczezyecdQrnI9/C9DKmD4Us= -SHA256
> (go_modules/honnef.co/go/tools/@v/v0.4.6.mod) =
> c2ITX32nmDQ8pMDmgCB9MNtk+N8nWPL3Soclz4Qt/D4= -SHA256
> (go_modules/honnef.co/go/tools/@v/v0.4.6.zip) =
> dfs6+iKXDuvjsVfovprgJ3UUL3AvgvvlbA6RiePShds= +SHA256
> (go_modules/honnef.co/go/tools/@v/v0.5.1.mod) =
> sUccd483kGL0ZyndeafpIXFK4u3vlwZk5CxzcCPTOkE= +SHA256
> (go_modules/honnef.co/go/tools/@v/v0.5.1.zip) =
> 1yj/OS/FtvZ2oww26dCluF9vLga067sSHCfZZcvf+hE= SHA256
> (go_modules/howett.net/plist/@v/v1.0.0.mod) =
> yCzVtVedg9sbqQjwQYS1bAT7SpBSBC6DLOaPetxzkzU= SHA256
> (go_modules/howett.net/plist/@v/v1.0.0.zip) =
> lfIFr5R/WlEcL2kEa6/1b9g1cr9v0FG6TEMM65zF0hQ= SHA256
> (go_modules/k8s.io/api/@v/v0.23.16.mod) =
> egYAB2odwytdL0pkjkBAlHEihZdqHEUrgWVrrLzMkE4= @@ -2405,7 +2414,7 @@
> SHA256 (go_modules/software.sslmate.com/ SHA256
> (go_modules/software.sslmate.com/src/go-pkcs12/@v/v0.4.0.zip) =
> VQGaOR5TAqUbpi6YkJ4AYiS4EgeGbakL6vWC7A3uA28= SHA256
> (go_modules/src.elv.sh/@v/v0.16.0-rc1.0.20220116211855-fda62502ad7f.mod)
> = ImJNCVe1tA5jNq8JoM2bIJGqRqDtuksdWKAwpOaNWiI= SHA256
> (go_modules/src.elv.sh/@v/v0.16.0-rc1.0.20220116211855-fda62502ad7f.zip)
> = edEgOGTOmXKXLEt1tIEy1odFM3S8Y8hyYUcl8moi1Ts= -SHA256
> (tailscale.com-v1.72.0.zip) =
> lraZ1mNVqF2qbyi684n5R+djftYn8XZZu8GWGeaonL8= +SHA256
> (tailscale.com-v1.74.0.zip) =
> figtLKSwkXNBBK33xK+fDFrBkfDw6R3CMm5oFoGEqB0= SIZE
> (go_modules/4d63.com/gocheckcompilerdirectives/@v/v1.2.1.mod) = 173
> SIZE (go_modules/4d63.com/gocheckcompilerdirectives/@v/v1.2.1.zip) =
> 7059 SIZE (go_modules/4d63.com/gochecknoglobals/@v/v0.2.1.mod) = 77
> @@ -2473,6 +2482,8 @@ SIZE (go_modules/filippo.io/edwards25519 SIZE
> (go_modules/filippo.io/edwards25519/@v/v1.1.0.zip) = 55809 SIZE
> (go_modules/filippo.io/mkcert/@v/v1.4.4.mod) = 287 SIZE
> (go_modules/filippo.io/mkcert/@v/v1.4.4.zip) = 23867 +SIZE
> (go_modules/fyne.io/systray/@v/v1.11.0.mod) = 105 +SIZE
> (go_modules/fyne.io/systray/@v/v1.11.0.zip) = 88294 SIZE
> (go_modules/github.com/!abirdcfly/dupword/@v/v0.0.11.mod) = 167 SIZE
> (go_modules/github.com/!abirdcfly/dupword/@v/v0.0.11.zip) = 20715
> SIZE (go_modules/github.com/!alek!si/pointer/@v/v1.2.0.mod) = 42 @@
> -2499,8 +2510,8 @@ SIZE (go_modules/github.com/!azure/go-an SIZE
> (go_modules/github.com/!burnt!sushi/toml/@v/v0.3.1.mod) = 34 SIZE
> (go_modules/github.com/!burnt!sushi/toml/@v/v0.4.1.mod) = 43 SIZE
> (go_modules/github.com/!burnt!sushi/toml/@v/v1.2.1.mod) = 43 -SIZE
> (go_modules/github.com/!burnt!sushi/toml/@v/v1.3.2.mod) = 43 -SIZE
> (go_modules/github.com/!burnt!sushi/toml/@v/v1.3.2.zip) = 303020
> +SIZE
> (go_modules/github.com/!burnt!sushi/toml/@v/v1.4.1-0.20240526193622-a339e1f7089c.mod)
> = 43 +SIZE
> (go_modules/github.com/!burnt!sushi/toml/@v/v1.4.1-0.20240526193622-a339e1f7089c.zip)
> = 397057 SIZE
> (go_modules/github.com/!burnt!sushi/xgb/@v/v0.0.0-20160522181843-27f122750802.mod)
> = 33 SIZE
> (go_modules/github.com/!burnt!sushi/xgb/@v/v0.0.0-20160522181843-27f122750802.zip)
> = 254689 SIZE
> (go_modules/github.com/!code-!hex/go-generics-cache/@v/v1.3.1.mod) =
> 115 @@ -2900,6 +2911,8 @@ SIZE (go_modules/github.com/felixge/http
> SIZE (go_modules/github.com/felixge/httpsnoop/@v/v1.0.4.zip) = 17593
> SIZE (go_modules/github.com/firefart/nonamedreturns/@v/v1.0.4.mod) =
> 236 SIZE
> (go_modules/github.com/firefart/nonamedreturns/@v/v1.0.4.zip) = 22947
> +SIZE (go_modules/github.com/fogleman/gg/@v/v1.3.0.mod) = 30 +SIZE
> (go_modules/github.com/fogleman/gg/@v/v1.3.0.zip) = 708357 SIZE
> (go_modules/github.com/frankban/quicktest/@v/v1.14.4.mod) = 121 SIZE
> (go_modules/github.com/frankban/quicktest/@v/v1.14.6.mod) = 121 SIZE
> (go_modules/github.com/frankban/quicktest/@v/v1.14.6.zip) = 56279 @@
> -3061,6 +3074,8 @@ SIZE (go_modules/github.com/golang-jwt/j SIZE
> (go_modules/github.com/golang-jwt/jwt/v4/@v/v4.5.0.zip) = 76883 SIZE
> (go_modules/github.com/golang-jwt/jwt/v5/@v/v5.2.0.mod) = 45 SIZE
> (go_modules/github.com/golang-jwt/jwt/v5/@v/v5.2.0.zip) = 88763 +SIZE
> (go_modules/github.com/golang/freetype/@v/v0.0.0-20170609003504-e2365dfdc4a0.mod)
> = 34 +SIZE
> (go_modules/github.com/golang/freetype/@v/v0.0.0-20170609003504-e2365dfdc4a0.zip)
> = 491249 SIZE
> (go_modules/github.com/golang/glog/@v/v0.0.0-20160126235308-23def4e6c14b.mod)
> = 30 SIZE (go_modules/github.com/golang/glog/@v/v1.1.2.mod) = 39 SIZE
> (go_modules/github.com/golang/glog/@v/v1.1.2.zip) = 38390 @@ -3313,8
> +3328,8 @@ SIZE (go_modules/github.com/ianlancetayl SIZE
> (go_modules/github.com/ianlancetaylor/demangle/@v/v0.0.0-20200824232613-28f6c0f3b639.mod)
> = 42 SIZE
> (go_modules/github.com/ianlancetaylor/demangle/@v/v0.0.0-20240312041847-bd984b5ce465.mod)
> = 51 SIZE
> (go_modules/github.com/ianlancetaylor/demangle/@v/v0.0.0-20240312041847-bd984b5ce465.zip)
> = 704492 -SIZE
> (go_modules/github.com/illarion/gonotify/@v/v1.0.1.mod) = 45 -SIZE
> (go_modules/github.com/illarion/gonotify/@v/v1.0.1.zip) = 10011 +SIZE
> (go_modules/github.com/illarion/gonotify/v2/@v/v2.0.3.mod) = 48 +SIZE
> (go_modules/github.com/illarion/gonotify/v2/@v/v2.0.3.zip) = 12846
> SIZE (go_modules/github.com/imdario/mergo/@v/v0.3.11.mod) = 74 SIZE
> (go_modules/github.com/imdario/mergo/@v/v0.3.15.mod) = 74 SIZE
> (go_modules/github.com/imdario/mergo/@v/v0.3.16.mod) = 74 @@ -3902,16
> +3917,16 @@ SIZE (go_modules/github.com/tailscale/hu SIZE
> (go_modules/github.com/tailscale/hujson/@v/v0.0.0-20221223112325-20486734a56a.zip)
> = 33435 SIZE
> (go_modules/github.com/tailscale/mkctr/@v/v0.0.0-20240628074852-17ca944da6ba.mod)
> = 1384 SIZE
> (go_modules/github.com/tailscale/mkctr/@v/v0.0.0-20240628074852-17ca944da6ba.zip)
> = 12578 -SIZE
> (go_modules/github.com/tailscale/netlink/@v/v1.1.1-0.20211101221916-cabfb018fe85.mod)
> = 176 -SIZE
> (go_modules/github.com/tailscale/netlink/@v/v1.1.1-0.20211101221916-cabfb018fe85.zip)
> = 242992 +SIZE
> (go_modules/github.com/tailscale/netlink/@v/v1.1.1-0.20240822203006-4d49adab4de7.mod)
> = 176 +SIZE
> (go_modules/github.com/tailscale/netlink/@v/v1.1.1-0.20240822203006-4d49adab4de7.zip)
> = 243062 SIZE
> (go_modules/github.com/tailscale/peercred/@v/v0.0.0-20240214030740-b535050b2aa4.mod)
> = 107 SIZE
> (go_modules/github.com/tailscale/peercred/@v/v0.0.0-20240214030740-b535050b2aa4.zip)
> = 7374 SIZE
> (go_modules/github.com/tailscale/web-client-prebuilt/@v/v0.0.0-20240226180453-5db17b287bf1.mod)
> = 57 SIZE
> (go_modules/github.com/tailscale/web-client-prebuilt/@v/v0.0.0-20240226180453-5db17b287bf1.zip)
> = 145126 SIZE
> (go_modules/github.com/tailscale/wf/@v/v0.0.0-20240214030419-6fbb0a674ee6.mod)
> = 601 SIZE
> (go_modules/github.com/tailscale/wf/@v/v0.0.0-20240214030419-6fbb0a674ee6.zip)
> = 58370 -SIZE
> (go_modules/github.com/tailscale/wireguard-go/@v/v0.0.0-20240731203015-71393c576b98.mod)
> = 381 -SIZE
> (go_modules/github.com/tailscale/wireguard-go/@v/v0.0.0-20240731203015-71393c576b98.zip)
> = 194049 +SIZE
> (go_modules/github.com/tailscale/wireguard-go/@v/v0.0.0-20240905161824-799c1978fafc.mod)
> = 381 +SIZE
> (go_modules/github.com/tailscale/wireguard-go/@v/v0.0.0-20240905161824-799c1978fafc.zip)
> = 194620 SIZE
> (go_modules/github.com/tailscale/xnet/@v/v0.0.0-20240729143630-8497ac4dab2e.mod)
> = 164 SIZE
> (go_modules/github.com/tailscale/xnet/@v/v0.0.0-20240729143630-8497ac4dab2e.zip)
> = 1926127 SIZE (go_modules/github.com/tc-hib/winres/@v/v0.2.1.mod) =
> 141 @@ -4150,6 +4165,7 @@ SIZE (go_modules/golang.org/x/exp/@v/v0.
> SIZE
> (go_modules/golang.org/x/exp/@v/v0.0.0-20230127140709-cafedaf64729.mod)
> = 176 SIZE
> (go_modules/golang.org/x/exp/@v/v0.0.0-20230224173230-c95f2b4c22f2.mod)
> = 176 SIZE
> (go_modules/golang.org/x/exp/@v/v0.0.0-20230725093048-515e97ebf090.mod)
> = 177 +SIZE
> (go_modules/golang.org/x/exp/@v/v0.0.0-20231110203233-9a3e6036ecaa.mod)
> = 179 SIZE
> (go_modules/golang.org/x/exp/@v/v0.0.0-20231219180239-dc181d75b848.mod)
> = 133 SIZE
> (go_modules/golang.org/x/exp/@v/v0.0.0-20240119083558-1b970713d09a.mod)
> = 133 SIZE
> (go_modules/golang.org/x/exp/@v/v0.0.0-20240119083558-1b970713d09a.zip)
> = 590537 @@ -4160,6 +4176,7 @@ SIZE
> (go_modules/golang.org/x/exp/typepa SIZE
> (go_modules/golang.org/x/exp/typeparams/@v/v0.0.0-20230203172020-98cc5a0785f9.mod)
> = 44 SIZE
> (go_modules/golang.org/x/exp/typeparams/@v/v0.0.0-20230213192124-5e25df0256eb.mod)
> = 44 SIZE
> (go_modules/golang.org/x/exp/typeparams/@v/v0.0.0-20230224173230-c95f2b4c22f2.mod)
> = 44 +SIZE
> (go_modules/golang.org/x/exp/typeparams/@v/v0.0.0-20231108232855-2478ac86f678.mod)
> = 44 SIZE
> (go_modules/golang.org/x/exp/typeparams/@v/v0.0.0-20240119083558-1b970713d09a.mod)
> = 44 SIZE
> (go_modules/golang.org/x/exp/typeparams/@v/v0.0.0-20240119083558-1b970713d09a.zip)
> = 47446 SIZE
> (go_modules/golang.org/x/image/@v/v0.0.0-20190227222117-0694c2d4d067.mod)
> = 60 @@ -4380,6 +4397,7 @@ SIZE (go_modules/golang.org/x/sys/@v/v0.
> SIZE (go_modules/golang.org/x/sys/@v/v0.17.0.mod) = 33 SIZE
> (go_modules/golang.org/x/sys/@v/v0.18.0.mod) = 33 SIZE
> (go_modules/golang.org/x/sys/@v/v0.2.0.mod) = 33 +SIZE
> (go_modules/golang.org/x/sys/@v/v0.20.0.mod) = 33 SIZE
> (go_modules/golang.org/x/sys/@v/v0.21.0.mod) = 33 SIZE
> (go_modules/golang.org/x/sys/@v/v0.22.0.mod) = 33 SIZE
> (go_modules/golang.org/x/sys/@v/v0.22.0.zip) = 1959283 @@ -4507,7
> +4525,6 @@ SIZE (go_modules/golang.org/x/tools/@v/v SIZE
> (go_modules/golang.org/x/tools/@v/v0.1.8.mod) = 349 SIZE
> (go_modules/golang.org/x/tools/@v/v0.1.9.mod) = 349 SIZE
> (go_modules/golang.org/x/tools/@v/v0.11.0.mod) = 214 -SIZE
> (go_modules/golang.org/x/tools/@v/v0.12.1-0.20230825192346-2191a27a6dc5.mod)
> = 214 SIZE (go_modules/golang.org/x/tools/@v/v0.13.0.mod) = 214 SIZE
> (go_modules/golang.org/x/tools/@v/v0.16.1.mod) = 168 SIZE
> (go_modules/golang.org/x/tools/@v/v0.17.0.mod) = 168 @@ -4515,6
> +4532,7 @@ SIZE (go_modules/golang.org/x/tools/@v/v SIZE
> (go_modules/golang.org/x/tools/@v/v0.19.0.mod) = 278 SIZE
> (go_modules/golang.org/x/tools/@v/v0.2.0.mod) = 177 SIZE
> (go_modules/golang.org/x/tools/@v/v0.21.1-0.20240508182429-e35e4ccd0d2d.mod)
> = 339 +SIZE
> (go_modules/golang.org/x/tools/@v/v0.21.1-0.20240531212143-b6235391adb3.mod)
> = 339 SIZE (go_modules/golang.org/x/tools/@v/v0.22.0.mod) = 339 SIZE
> (go_modules/golang.org/x/tools/@v/v0.23.0.mod) = 339 SIZE
> (go_modules/golang.org/x/tools/@v/v0.23.0.zip) = 3172502 @@ -4715,8
> +4733,8 @@ SIZE (go_modules/honnef.co/go/tools/@v/v SIZE
> (go_modules/honnef.co/go/tools/@v/v0.4.2.mod) = 274 SIZE
> (go_modules/honnef.co/go/tools/@v/v0.4.3.mod) = 274 SIZE
> (go_modules/honnef.co/go/tools/@v/v0.4.5.mod) = 275 -SIZE
> (go_modules/honnef.co/go/tools/@v/v0.4.6.mod) = 277 -SIZE
> (go_modules/honnef.co/go/tools/@v/v0.4.6.zip) = 784790 +SIZE
> (go_modules/honnef.co/go/tools/@v/v0.5.1.mod) = 405 +SIZE
> (go_modules/honnef.co/go/tools/@v/v0.5.1.zip) = 989391 SIZE
> (go_modules/howett.net/plist/@v/v1.0.0.mod) = 218 SIZE
> (go_modules/howett.net/plist/@v/v1.0.0.zip) = 71680 SIZE
> (go_modules/k8s.io/api/@v/v0.23.16.mod) = 1284 @@ -4813,4 +4831,4 @@
> SIZE (go_modules/software.sslmate.com/sr SIZE
> (go_modules/software.sslmate.com/src/go-pkcs12/@v/v0.4.0.zip) = 45988
> SIZE
> (go_modules/src.elv.sh/@v/v0.16.0-rc1.0.20220116211855-fda62502ad7f.mod)
> = 185 SIZE
> (go_modules/src.elv.sh/@v/v0.16.0-rc1.0.20220116211855-fda62502ad7f.zip)
> = 705404 -SIZE (tailscale.com-v1.72.0.zip) = 3775266 +SIZE
> (tailscale.com-v1.74.0.zip) = 4012602 Index: modules.inc
> ===================================================================
> RCS file: /cvs/ports/net/tailscale/modules.inc,v diff -u -p -r1.25
> modules.inc --- modules.inc 20 Aug 2024 16:37:17 -0000
> 1.25 +++ modules.inc 14 Sep 2024 02:00:35 -0000 @@ -14,6 +14,7
> @@ MODGO_MODULES = \ dmitri.shuralyov.com/gpu/mtl
> v0.0.0-20190408044501-666a987793e9
> \ filippo.io/edwards25519
> v1.1.0 \ filippo.io/mkcert
> v1.4.4 \
> + fyne.io/systray
> v1.11.0 \
> github.com/!abirdcfly/dupword
> v0.0.11 \ github.com/!alek!si/pointer
> v1.2.0 \
> github.com/!antonboom/errname
> v0.1.9 \ @@ -25,7 +26,7 @@ MODGO_MODULES = \
> github.com/!azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v5
> v5.4.0 \
> github.com/!azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v4
> v4.3.0 \ github.com/!azure/go-ansiterm
> v0.0.0-20230124172434-306776ec8161 \
> - github.com/!burnt!sushi/toml
> v1.3.2 \
> + github.com/!burnt!sushi/toml
> v1.4.1-0.20240526193622-a339e1f7089c \
> github.com/!burnt!sushi/xgb
> v0.0.0-20160522181843-27f122750802 \
> github.com/!code-!hex/go-generics-cache
> v1.3.1 \ github.com/!data!dog/zstd
> v1.4.5 \ @@ -188,6
> +189,7 @@ MODGO_MODULES = \ github.com/fatih/structtag
> v1.2.0 \
> github.com/felixge/httpsnoop
> v1.0.4 \ github.com/firefart/nonamedreturns
> v1.0.4 \
> + github.com/fogleman/gg
> v1.3.0 \
> github.com/frankban/quicktest
> v1.14.6 \ github.com/fsnotify/fsnotify
> v1.7.0 \
> github.com/fxamacker/cbor/v2
> v2.6.0 \ @@ -250,6 +252,7 @@ MODGO_MODULES =
> \ github.com/gojuno/minimock/v3
> v3.0.8 \ github.com/golang-jwt/jwt/v4
> v4.5.0 \
> github.com/golang-jwt/jwt/v5
> v5.2.0 \
> + github.com/golang/freetype
> v0.0.0-20170609003504-e2365dfdc4a0 \
> github.com/golang/glog
> v1.1.2 \ github.com/golang/groupcache
> v0.0.0-20210331224755-41bb18bfe9da
> \ github.com/golang/mock
> v1.7.0-rc.1 \ @@ -333,7 +336,7 @@
> MODGO_MODULES = \ github.com/hugelgupf/vmtest
> v0.0.0-20240102225328-693afabdd27f
> \ github.com/iancoleman/orderedmap
> v0.0.0-20190318233801-ac98e3ecb4b0 \
> github.com/ianlancetaylor/demangle
> v0.0.0-20240312041847-bd984b5ce465 \
> - github.com/illarion/gonotify
> v1.0.1 \
> + github.com/illarion/gonotify/v2
> v2.0.3 \
> github.com/imdario/mergo
> v0.3.16 \
> github.com/inconshreveable/mousetrap
> v1.1.0 \ github.com/inetaf/tcpproxy
> v0.0.0-20240214030015-3ce58045626c
> \ @@ -558,11 +561,11 @@ MODGO_MODULES = \
> github.com/tailscale/goupnp
> v1.0.1-0.20210804011211-c64d0f06ea05 \
> github.com/tailscale/hujson
> v0.0.0-20221223112325-20486734a56a \
> github.com/tailscale/mkctr
> v0.0.0-20240628074852-17ca944da6ba \
> - github.com/tailscale/netlink
> v1.1.1-0.20211101221916-cabfb018fe85 \
> + github.com/tailscale/netlink
> v1.1.1-0.20240822203006-4d49adab4de7 \
> github.com/tailscale/peercred
> v0.0.0-20240214030740-b535050b2aa4 \
> github.com/tailscale/web-client-prebuilt
> v0.0.0-20240226180453-5db17b287bf1 \
> github.com/tailscale/wf
> v0.0.0-20240214030419-6fbb0a674ee6 \
> - github.com/tailscale/wireguard-go
> v0.0.0-20240731203015-71393c576b98 \
> + github.com/tailscale/wireguard-go
> v0.0.0-20240905161824-799c1978fafc \
> github.com/tailscale/xnet
> v0.0.0-20240729143630-8497ac4dab2e \
> github.com/tc-hib/winres
> v0.2.1 \ github.com/tcnksm/go-httpstat
> v0.2.0 \ @@ -683,7
> +686,7 @@ MODGO_MODULES = \ gopkg.in/yaml.v3
> v3.0.1 \
> gotest.tools/v3
> v3.4.0 \ gvisor.dev/gvisor
> v0.0.0-20240722211153-64c016c92987
> \
> - honnef.co/go/tools
> v0.4.6 \
> + honnef.co/go/tools
> v0.5.1 \ howett.net/plist
> v1.0.0 \
> k8s.io/api
> v0.30.3 \ k8s.io/apiextensions-apiserver
> v0.30.3 \ @@ -1175,6
> +1178,7 @@ MODGO_MODFILES = \ golang.org/x/exp
> v0.0.0-20230127140709-cafedaf64729 \
> golang.org/x/exp
> v0.0.0-20230224173230-c95f2b4c22f2 \ golang.org/x/exp
> v0.0.0-20230725093048-515e97ebf090 \
> + golang.org/x/exp
> v0.0.0-20231110203233-9a3e6036ecaa \ golang.org/x/exp
> v0.0.0-20231219180239-dc181d75b848
> \ golang.org/x/exp/typeparams
> v0.0.0-20220218215828-6cf2b201936e \
> golang.org/x/exp/typeparams
> v0.0.0-20220428152302-39d4317da171 \ @@ -1183,6 +1187,7 @@
> MODGO_MODFILES = \ golang.org/x/exp/typeparams
> v0.0.0-20230203172020-98cc5a0785f9 \
> golang.org/x/exp/typeparams
> v0.0.0-20230213192124-5e25df0256eb \
> golang.org/x/exp/typeparams
> v0.0.0-20230224173230-c95f2b4c22f2 \
> + golang.org/x/exp/typeparams
> v0.0.0-20231108232855-2478ac86f678 \
> golang.org/x/image
> v0.0.0-20190227222117-0694c2d4d067 \ golang.org/x/image
> v0.0.0-20190802002840-cff245a6509b
> \ golang.org/x/image
> v0.12.0 \ @@ -1387,6 +1392,7 @@ MODGO_MODFILES = \
> golang.org/x/sys
> v0.17.0 \ golang.org/x/sys
> v0.18.0 \ golang.org/x/sys
> v0.2.0 \
> + golang.org/x/sys
> v0.20.0 \ golang.org/x/sys
> v0.21.0 \ golang.org/x/sys
> v0.3.0 \ golang.org/x/sys
> v0.4.0 \ @@ -1504,7 +1510,6 @@
> MODGO_MODFILES = \ golang.org/x/tools
> v0.1.8 \ golang.org/x/tools
> v0.1.9 \ golang.org/x/tools
> v0.11.0 \
> - golang.org/x/tools
> v0.12.1-0.20230825192346-2191a27a6dc5 \
> golang.org/x/tools
> v0.13.0 \ golang.org/x/tools
> v0.16.1 \ golang.org/x/tools
> v0.17.0 \ @@ -1512,6 +1517,7 @@ MODGO_MODFILES
> = \ golang.org/x/tools
> v0.19.0 \ golang.org/x/tools
> v0.2.0 \ golang.org/x/tools
> v0.21.1-0.20240508182429-e35e4ccd0d2d \
> + golang.org/x/tools
> v0.21.1-0.20240531212143-b6235391adb3 \
> golang.org/x/tools
> v0.22.0 \ golang.org/x/tools
> v0.3.0 \ golang.org/x/tools
> v0.4.0 \ Index: pkg/PLIST
> ===================================================================
> RCS file: /cvs/ports/net/tailscale/pkg/PLIST,v diff -u -p -r1.13 PLIST
> --- pkg/PLIST 20 Aug 2024 16:37:17 -0000 1.13
> +++ pkg/PLIST 14 Sep 2024 02:00:35 -0000
> @@ -28,10 +28,12 @@
> @comment bin/stund
> @comment bin/stunstamp
> @comment bin/sync-containers
> +@comment bin/systray
> @bin bin/tailscale
> @bin bin/tailscaled
> @comment bin/testcontrol
> @comment bin/testwrapper
> +@comment bin/tl-longchain
> @comment bin/tsconnect
> @bin bin/tsidp
> @comment bin/tta
>