Re: OpenBSD UEFI on QEMU emulator

2020-10-23 Thread Brad Smith
On 10/22/2020 11:22 PM, Jonathan Gray wrote: On Thu, Oct 22, 2020 at 10:37:31PM -0400, Brad Smith wrote: On 10/22/2020 9:59 PM, Kevin Shell wrote: Hello misc@. I want to try out OpenBSD UEFI. How to install OpenBSD with UEFI boot on qemu? The installer does prompt you during disk setup. The

Re: sysupgrade --download ?

2020-10-23 Thread Harald Dunkel
Hi Theo, sorry, I missed that. I have associated "-n" with dry-run mode. Thanx for the hint Harri

Re: sysupgrade --download ?

2020-10-23 Thread Theo de Raadt
Harald Dunkel wrote: > I stumbled over a bad mirror for sysupgrade. > > Would it be possibe to add an option "-d" to sysupgrade, to just > download and verify the required files? sysupgrade -n > A subsequent call without > "-d" should verify the signatures in the download directory again > a

sysupgrade --download ?

2020-10-23 Thread Harald Dunkel
Hi folks, I stumbled over a bad mirror for sysupgrade. Would it be possibe to add an option "-d" to sysupgrade, to just download and verify the required files? A subsequent call without "-d" should verify the signatures in the download directory again and proceed. I would like to make sure down

Re: OpenBSD UEFI on QEMU emulator

2020-10-23 Thread Kevin Shell
On Fri, Oct 23, 2020 at 10:03:08PM -0400, Brad Smith wrote: > On 10/22/2020 11:22 PM, Jonathan Gray wrote: > > On Thu, Oct 22, 2020 at 10:37:31PM -0400, Brad Smith wrote: > > > On 10/22/2020 9:59 PM, Kevin Shell wrote: > > > > Hello misc@. > > > > > > > > I want to try out OpenBSD UEFI. > > > > How

Re: OpenBSD UEFI on QEMU emulator

2020-10-23 Thread Kevin Shell
Why I keep received 2 copies email again? Please don't To or Cc me. :-) On Fri, Oct 23, 2020 at 07:58:27AM -0600, jpegb...@dismail.de wrote: > I would also like to point out that kevin doesn't have a virtual disk > to install openbsd to, just the openbsd iso. You can create one with > qemu-create

Re: Sound/audio onFirefox on 6.8

2020-10-23 Thread Maurice McCarthy
On 23/10/2020, Duncan Patton a Campbell wrote: > > Hey Maurice. The audio works elsewhere and this looks to be > a Zombie Bugzilla bug come back from the dead. Something > about needing to directly link to sndio and skip the "cubeb" something... > > Dhu > Ah, so "works elsewhere" in your initia

Re: OpenBSD UEFI on QEMU emulator

2020-10-23 Thread Kevin Shell
Please don't To or Cc me, I'm on the list. On Fri, Oct 23, 2020 at 12:49:13PM +0900, YASUOKA Masahiko wrote: > On Fri, 23 Oct 2020 09:59:24 +0800 > Kevin Shell wrote: > > I want to try out OpenBSD UEFI. > > How to install OpenBSD with UEFI boot on qemu? > > The install68.iso has no UEFI support.

Re: Sound/audio onFirefox on 6.8

2020-10-23 Thread Duncan Patton a Campbell
Hey Maurice. The audio works elsewhere and this looks to be a Zombie Bugzilla bug come back from the dead. Something about needing to directly link to sndio and skip the "cubeb" something... Dhu This is what shows up on the command line: dhu@gate:BSD $ firefox [Child 41261, MediaDec

Re: Sound/audio onFirefox on 6.8

2020-10-23 Thread Maurice McCarthy
Warning: Numpty speaking Well this seems to give you access to audio hardware azalia1 at pci0 dev 20 function 2 "ATI SBx00 HD Audio" rev 0x40: apic 4 int 16 azalia1: codecs: Realtek/0x0892 audio0 at azalia1 So I can only point you at this https://www.openbsd.org/faq/faq13.html#audioprob Good Lu

Sound/audio onFirefox on 6.8

2020-10-23 Thread Duncan Patton a Campbell
doesn't work. Works fine elsewhere. Granted this is also a ten year old board. following is dmesg. Any ideas are apreciated. Thanks, Dhu OpenBSD 6.8 (GENERIC.MP) #98: Sun Oct 4 18:13:26 MDT 2020 dera...@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP real mem = 16894197

Re: OpenBSD UEFI on QEMU emulator

2020-10-23 Thread jpegbild
I would also like to point out that kevin doesn't have a virtual disk to install openbsd to, just the openbsd iso. You can create one with qemu-create I think, and then you should add that file to the drive parameter aswell. YASUOKA Masahiko wrote: > On Fri, 23 Oct 2020 09:59:24 +0800 > Kevin S

sasyncd question

2020-10-23 Thread Marko Cupać
Hi, Is there a way to sync only SAs created on CARP interfaces, without syncing those created on physical, non-CARP interfaces? Something like no-sync option in pf.conf for pfsync? I'm asking because I have a pair of firewalls where majority of IPsec peers connect directly to non-CARP interfaces

Re: Inphi CS4223 for 4x 10GbE SFP+

2020-10-23 Thread Harald Dunkel
Hi folks, below you can find the summary of "openssl speed" on the network appliance. Speed is not amazing, but AFAIU "openssl speed" is single-threaded. The CPU has 8 cores (no hyperthreading). Assuming IPsec encryption/decryption is running in kernel space, I wonder if the OpenBSD kernel can m

kqueue/kevent: EVFILT_TIMER inacurracy

2020-10-23 Thread mpfr
Given the following code (timertest.c): #include #include #include #include #include #include #include #include int main(int argc, char *argv[]) { long longtimeout, elapsed; int kqfd; struct timespec ts0, ts; struct keventkev;