ksh parenthesis sub-pattern variables not parsed; [*+?@!]($pat)

2021-11-25 Thread pachl
>Synopsis: ksh parenthesis sub-pattern variables not parsed; [*+?@!]($pat) >Category: user >Environment: System : OpenBSD 6.8 Details : OpenBSD 6.8 (GENERIC.MP) #4: Thu Aug 5 11:02:18 MDT 2021

Re: SunBlade 100 will not boot from HDD (6.8 and newer)

2021-11-25 Thread Otto Moerbeek
On Wed, Nov 24, 2021 at 02:48:29PM -0700, Ted Bullock wrote: > On 2021-11-20 2:49 p.m., Ted Bullock wrote: > > This patch disables fchmod in the bootblock for IDE drives on sparc64 > > > > I can confirm that this allows my sunblade 100 to boot -current > Hi folks, > > I'm requesting to have the

Re: SunBlade 100 will not boot from HDD (6.8 and newer)

2021-11-25 Thread Mark Kettenis
> Date: Thu, 25 Nov 2021 11:55:24 +0100 > From: Otto Moerbeek > > On Wed, Nov 24, 2021 at 02:48:29PM -0700, Ted Bullock wrote: > > > On 2021-11-20 2:49 p.m., Ted Bullock wrote: > > > This patch disables fchmod in the bootblock for IDE drives on sparc64 > > > > > > I can confirm that this

Re: SunBlade 100 will not boot from HDD (6.8 and newer)

2021-11-25 Thread Ted Bullock
On 2021-11-25 3:55 a.m., Otto Moerbeek wrote: + parent = OF_parent(handle); I think the OF_parent call can go inside the !strcmp(buf, "block") block. I worried that the following re-assignment of the handle would cause problems, so I chose an order of operations and placed the parent

Re: SunBlade 100 will not boot from HDD (6.8 and newer)

2021-11-25 Thread Mark Kettenis
> Date: Thu, 25 Nov 2021 04:28:55 -0700 > Content-Language: en-US > Cc: Theo de Raadt , > Mark Kettenis , bugs@openbsd.org > From: Ted Bullock > Content-Type: text/plain; charset=UTF-8; format=flowed > > On 2021-11-25 3:55 a.m., Otto Moerbeek wrote: > >> + parent = OF_parent(handle); >

Re: SunBlade 100 will not boot from HDD (6.8 and newer)

2021-11-25 Thread Ted Bullock
On 2021-11-25 4:29 a.m., Mark Kettenis wrote: And I think it is better to use "device_type" here. https://github.com/openbios/openboot/blob/master/obp/dev/ide/ide.fth The obp source list both identifiers, however, the 1275 spec says: 3.2.1.1 Node names Each node in the device tree is

Re: SunBlade 100 will not boot from HDD (6.8 and newer)

2021-11-25 Thread Ted Bullock
On 2021-11-25 5:05 a.m., Mark Kettenis wrote: From: Ted Bullock On 2021-11-25 3:55 a.m., Otto Moerbeek wrote: + parent = OF_parent(handle); I think the OF_parent call can go inside the !strcmp(buf, "block") block. I worried that the following re-assignment of the handle would cause

Re: SunBlade 100 will not boot from HDD (6.8 and newer)

2021-11-25 Thread Ted Bullock
On 2021-11-25 5:22 a.m., Ted Bullock wrote: > On 2021-11-25 5:05 a.m., Mark Kettenis wrote: >> From: Ted Bullock >>> On 2021-11-25 3:55 a.m., Otto Moerbeek wrote: > +    parent = OF_parent(handle); I think the OF_parent call can go inside the !strcmp(buf, "block") block. >>>