On Fri, Aug 05, 2022 at 11:06:06AM -0700, Andrew Hewus Fresh wrote:
> On Tue, Jun 21, 2022 at 02:58:46PM +1000, Jonathan Gray wrote:
> > Intel CPUs used to have strings like
> > cpu0: Intel(R) Pentium(R) M processor 1200MHz ("GenuineIntel" 686-class)
> > 1.20 GHz
> > cpu0: Intel(R) Core(TM) i7-5600U CPU @ 2.60GHz, 2494.61 MHz, 06-3d-04
> > recent CPUs use
> > cpu0: 11th Gen Intel(R) Core(TM) i5-1130G7 @ 1.10GHz, 30009.37 MHz, 06-8c-01
> > cpu0: 12th Gen Intel(R) Core(TM) i5-12400, 4390.71 MHz, 06-97-02
> > cpu0: 12th Gen Intel(R) Core(TM) i7-1260P, 1995.55 MHz, 06-9a-03
> >
> > Index: patterns.c
> > ===================================================================
> > RCS file: /cvs/src/usr.sbin/fw_update/patterns.c,v
> > retrieving revision 1.3
> > diff -u -p -r1.3 patterns.c
> > --- patterns.c 10 Mar 2022 07:12:13 -0000 1.3
> > +++ patterns.c 21 Jun 2022 04:31:24 -0000
> > @@ -94,7 +94,7 @@ main(void)
> > printf("%s\n", "bwfm");
> > printf("%s\n", "bwi");
> > printf("%s\n", "intel");
> > - printf("%s\n", "intel ^cpu0: Intel");
> > + printf("%s\n", "intel ^cpu0:*Intel(R)");
>
> With the recent commit to fw_update, this pattern should work now.
thanks, committed