Best Saudi Quality Managment Solution

2023-01-03 Thread QMS
FREE Trial and Special Discounts [1] None [2] ** Visit Website [3] ARMS For Information Technologies شركة ارمس لتقنية المعلومات* Unsubscribe [4] | Contact [5] 2023 All Rights Reserved [6] [7] [1]

Re: audioctl: display variables periodically

2023-01-03 Thread Alexandre Ratchov
On Sat, Dec 10, 2022 at 09:39:41AM +, Edd Barrett wrote: > I agree with ratchov that in this instance, precise timing isn't important. > So, are we OK with this or there are still objections?

Re: move the pf_state_tree type around

2023-01-03 Thread David Gwynne
> On 3 Jan 2023, at 17:47, Alexandr Nedvedicky wrote: > > Hello, > > On Tue, Jan 03, 2023 at 03:31:42PM +1000, David Gwynne wrote: >> the pf_state_tree type represents the rb tree that pf_state_key structs >> go into. currently pf_state_key is declared in pfvar_priv.h (because >> it's a

[PATCH v3 1/3] script(1): actually bubble child errors

2023-01-03 Thread наб
script.1 says > script will exit with the status of 0 unless any of its child > processes fail, in which case, script will return 1. This is a patent lie: it only exits with 1 if the host or writer processes fail, not the actual child Instead, wait for the child in the writer process and bubble

[PATCH v3 2/3] script(1): simplify shell execution

2023-01-03 Thread наб
Use execl in both paths and the same warn() call --- Resend after a year; clean rebase. Keep me in CC. usr.bin/script/script.c | 17 ++--- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/usr.bin/script/script.c b/usr.bin/script/script.c index 763975d6a..fd2829033

[PATCH v3 3/3] script(1): fix exit status wording

2023-01-03 Thread наб
--- Resend after a year; clean rebase. Keep me in CC. Failure-of-script status unchanged at 1 after complaints for v2. usr.bin/script/script.1 | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/usr.bin/script/script.1 b/usr.bin/script/script.1 index aa8bb2790..aa55d43af

grep.1: Use Fl for -print0

2023-01-03 Thread Josiah Frentsos
Index: grep.1 === RCS file: /cvs/src/usr.bin/grep/grep.1,v retrieving revision 1.51 diff -u -p -r1.51 grep.1 --- grep.1 26 Jun 2022 10:57:36 - 1.51 +++ grep.1 3 Jan 2023 16:52:05 - @@ -304,7 +304,7 @@ file name.

Re: ESRT support for the amd64 bootloader

2023-01-03 Thread Mike Larkin
On Wed, Dec 28, 2022 at 09:13:16PM +0100, Mark Kettenis wrote: > Dear Sergii, > > Sorry for the delay, but I have finally found the time to work on the > EFI variable and ESRT support for OpenBSD. As a first step, here is a > diff that adds support for copying the ESRT in the bootloader and >

Re: ESRT support for the amd64 bootloader

2023-01-03 Thread Mike Larkin
On Mon, Jan 02, 2023 at 05:52:12PM +, Peter Stuge wrote: > Mark Kettenis wrote: > > patrick@, mlarkin@, yasuoka@ and other devs: ok? > > Do what you have to do, but I plead to avoid (U)EFI lock-in as far as > technically possible, since most (U)EFI implementations are not open > source, and

[PATCH] Azalia bug in codec Realtek ALC892

2023-01-03 Thread Jose Maldonado
Hi, everyone! Right now I'm using OBSD 7.2 (my first time in OBSD) and the only issue is my onboard audio. The audio randomly stuck (listen music or not, with high CPU use or not) and only a hard reboot give me back audio to next stuck. In dmesg don´t show nothing, but sndiod - give me

move the pf_state_tree_id type around

2023-01-03 Thread David Gwynne
move the pf_state_tree_id type from pfvar.h to pfvar_priv.h. this is like the pf_state_tree change from yesterday. the pf_state_tree_id type is private to the kernel, just like the pf_state_tree type. moving it from RB to RBT saves another 12k in pf.o on amd64. i also changed some hand rolled

Re: grep.1: Use Fl for -print0

2023-01-03 Thread Jason McIntyre
On Tue, Jan 03, 2023 at 11:55:34AM -0500, Josiah Frentsos wrote: > Index: grep.1 > === > RCS file: /cvs/src/usr.bin/grep/grep.1,v > retrieving revision 1.51 > diff -u -p -r1.51 grep.1 > --- grep.126 Jun 2022 10:57:36 -

obsd install initial boot process slowed down

2023-01-03 Thread Sylvain Saboua
Hi, my openbsed (encrypted) install is functionning really well, apart from one thing, that would signal a bug or smth: The initial boot process, right after I type the security key in, which displays cyphers aligning in between rotating semicolumns (I hope this is clear), is slow, on this

Re: [PATCH v3 3/3] script(1): fix exit status wording

2023-01-03 Thread Jason McIntyre
On Tue, Jan 03, 2023 at 03:57:20PM +0100, ?? wrote: > --- > Resend after a year; clean rebase. Keep me in CC. > > Failure-of-script status unchanged at 1 after complaints for v2. > > usr.bin/script/script.1 | 6 ++ > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git

Re: Suggested change to ports.7 man page

2023-01-03 Thread Jason McIntyre
On Mon, Jan 02, 2023 at 07:00:27AM -0500, Jon Fineman wrote: > I was trying to make clean a port I was updating and it wasn't clear > to me that I should be adding the FLAVOR variable to the make line to > clean the correct build. > > My suggested change below might help other people. > > Jon