OPNsense Forum

English Forums => Hardware and Performance => Topic started by: fastboot on May 14, 2026, 09:37:05 AM

Title: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: fastboot on May 14, 2026, 09:37:05 AM
Hi @Franco,

I may have found a microcode packaging/split-file issue on OPNsense.

System:

Protectli VP6630
Intel Core i3-1215U, Alder Lake R0
coreboot 0.9.0

Installed packages:

cpu-microcode-intel-20260227
os-cpu-microcode-intel-1.1

Current microcode after boot:

x86info -a | grep -i micro
Microcode version: 0x0000000000000432

Boot message:

dmesg | grep -i micro
[1] CPU microcode: no matching update found

The package only provides this split file for CPUID 06-9a-04:

/usr/local/share/cpucontrol/06-9a-04.40
but for Intel Core Gen12 / Alder Lake R0 I would expect platform 06-9a-04/80, not /40.

Full relevant output:

pkg info -x microcode
cpu-microcode-intel-20260227
os-cpu-microcode-intel-1.1

pkg info -l cpu-microcode-intel | grep -E 'intel-ucode|06-9a-04|microcode'
cpu-microcode-intel-20260227:
        /boot/firmware/intel-ucode.bin
        /usr/local/share/cpucontrol/06-9a-04.40

find /usr/local/share/cpucontrol /boot/firmware -iname '*06-9a-04*' -o -iname '*intel*ucode*'
/usr/local/share/cpucontrol/06-9a-04.40
/boot/firmware/intel-ucode.bin



Is it possible that the split microcode file 06-9a-04.80 is missing from the package, so the Intel microcode plugin cannot update this CPU and keeps the firmware-provided 0x432?

Thanks!


FB
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: meyergru on May 14, 2026, 12:29:21 PM
It really looks like this is the case. There should be two more files, namely .10 and .80 if the full binary was split correctly. Under Linux, where full binaries are in use, the file is three times as big as the .40 version. Your CPU should have a 0x43a firmware.

To carry over the correct files is a little complicated, because on boot, intel-ucode.bin is used and that lacks the relevant parts as well.

You should probably create a bug report for FreeBSD.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: Greg_E on May 14, 2026, 03:36:41 PM
Due to availability and tariffs, I'm looking at a similar Protectli device, so watching this.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 14, 2026, 08:30:05 PM
Lets look at:

cpucontrol -i 0 /dev/cpuctl0

grep microcode /boot/loader.conf

sysctl hw.model
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: meyergru on May 14, 2026, 08:38:26 PM
And then what? I already verified that CPU to use the 06-9a-04.80 variant under linux with the current firmware version at 0x43a.

As I said, the single-type files in FreeBSD contain only one subtype of each man type (like 06-9a-04) with ~100000 bytes, whereas the single files in Linux have all in one (so .10, .40 and .80 for this type 06-9a-04) with ~300000 bytes. For some other types, you can actually see that there multiple subtypes for some other types in FreeBSD.

That being said, the "full" file intel-ucode.bin on Linux is also much larger than the FreeBSD one, so I would argue that the subtypes .10 and .80 were forgotten in the FreeBSD packaging.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 14, 2026, 08:57:42 PM
So, online docs do mention .40 does cover some versions of that CPU.
I think the missing .80 is already documented.


But, what's installed (full list)?
ls -al /usr/local/share/cpucontrol/*-*-*.*

But yep, looks like .80 went missing

QuoteWhy .80 isn't in FreeBSD 14's package
The FreeBSD 14 package cpu-microcode-intel-20260227 includes only .40 for 06-9a-04
.80 platform mask exists on some Alder Lake desktop CPUs (like yours) but was not included in the packaged blobs at the time
This is a known coverage gap / erratum in FreeBSD 14's Intel microcode package (see PR 268584 / PR 268975)


Options if you want .80 applied
Manually extract Intel's .80 microcode from the Linux microcode repository:
Repository: Intel Linux Microcode
Find the blob for 06-9a-04.80
Place it in /usr/local/share/cpucontrol/ and reboot
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: meyergru on May 14, 2026, 09:32:53 PM
That will probably not cut it, as I already said: For the boot phase, the intel-ucode.bin ist used. Only for the user-space (later phase) does cpucontrol use the single files. Therefore, I am unsure what procedure could be used. If cou wated to be safe, I would use the 300000 byte file from Linux and name than .80, plus I would copy the Linux intel-ucode.bin.

AFAIU, the tools will extract whatever they need from the files, so strictly speaking, you do not need the single files, but that I do not know for sure, so I would not risk to break anything going forward and leave it to the experts. The best way to proceed is probably to wait for FreeBSD to fix it - it there already is a bug report, then fine.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 15, 2026, 05:11:57 AM
Something perhaps relevant on org site.
https://forums.freebsd.org/threads/cpu-microcode-not-updated-during-boot.95641/


Having proper uCode is interesting, for some cpu, for other reasons too.

https://forum.opnsense.org/index.php?topic=48343.0

https://lists.freebsd.org/archives/freebsd-current/2025-January/006984.html

But at this writing it's unclear to me where the issues and fixes are at.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 15, 2026, 09:21:00 PM
@fastboot
Your 1st post looks like you went looking for ucode w/o 1st verifying the actual cpu you have.
Is your actual CPU a mobile or desktop variant? Did the vendor somehow install the desktop variant?

My suspicion is, bios (coreboot) already applied ucode. Any ucode mentioned in release notes for your coreboot?
Edit: I did some digging just now may 16, it appears that device does not support UEFI and the coreboot used does not include ucode (please verify).
I winder if coreboot is blocking the install of ucode from OS? That would be an ok security feature, kinda how some BIOS have lock feature that wont allow a BIOS update until the existing BIOS is unlocked.

Quote from: fastboot on May 14, 2026, 09:37:05 AMIs it possible that the split microcode file 06-9a-04.80 is missing from the package

100% is missing from the package !

Quote from: fastboot on May 14, 2026, 09:37:05 AMbut for Intel Core Gen12 / Alder Lake R0 I would expect platform 06-9a-04/80, not /40.

Not 100% true. The R0 "mobile" variant is a .40, while the R0 "desktop" variant is a .80

The Intel Core i3-1215U, Alder Lake R0 is a mobile cpu, so the .40 should be correct one.

Conclusion
Intel Core i3-1215U (Alder Lake R0) is a mobile CPU, so its microcode variant is .40.
.80 variants are desktop-only and do not apply.

sysctl -a | grep hw.model
sysctl -a | grep hw.cpuid

# Install cpuid tool if you don't have it
pkg install cpuid
# Check your CPU's full CPUID
cpuid | grep -i "family\|model\|stepping"




QuoteProtectli VP6630 UEFI specifics
Based on reports and Protectli firmware docs:
The default UEFI firmware does include some Intel microcode, usually matching the R0 stepping of CPUs sold with that board.
However:
It might not include the very latest microcode (especially security updates released after the board was shipped).
Therefore, OS-level microcode loading is still recommended.
UEFI typically updates the CPU at boot, before any OS starts, but the update is only what the firmware contains.

Your ucode revision 432 does look stale though

QuoteKnown latest revisions for 06-9A-04.40

From Intel microcode release notes (and mirrored in intel-ucode.bin for FreeBSD and Linux):

Revision (hex)    Revision (dec)    Release date
0x00000431    1073    2024-11-11
0x00000432    1074    2024-12-02
0x00000433    1075    2025-01-15
0x00000434    1076    2025-02-11


Also, the pkg has a date, but does the bin and 069a04.40 file have updated code as we expect?

Quote#!/bin/sh
# List all microcode revisions in intel-ucode.bin

FILE="/boot/firmware/intel-ucode.bin"

OFFSET=0
while [ $OFFSET -lt $(stat -f "%z" "$FILE") ]; do
    # Read 48-byte block
    BLOCK=$(dd if="$FILE" bs=48 count=1 skip=$((OFFSET / 48)) 2>/dev/null | hexdump -v -e '"%08X " 4/4 "\n"')
   
    # Extract revision (1st 32-bit after header version)
    REV=$(echo "$BLOCK" | awk '{print strtonum("0x"$2)}')
   
    # Extract CPU signature
    SIG=$(echo "$BLOCK" | awk '{printf "%08X\n",$3}')
   
    # Extract date (assuming 32-bit BCD in 28–31 bytes)
    DATE=$(dd if="$FILE" bs=1 skip=$((OFFSET+28)) count=4 2>/dev/null | hexdump -v -e '"%02X""%02X""%02X""%02X\n"')
   
    # Print it
    printf "CPU Signature: %s  Microcode rev: %d  Date: %s\n" "$SIG" "$REV" "$DATE"
   
    OFFSET=$((OFFSET + 48))
done
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: fastboot on May 17, 2026, 07:54:07 AM
Good catch regarding the mobile vs desktop R0 variants. You are right, the i3-1215U is a mobile Alder Lake R0 CPU, so .40 should indeed be the correct platform variant, not .80.

So my original assumption about a missing .80 blob was likely wrong.

However, the interesting part still seems to be:

dmesg:
CPU microcode: no matching update found

combined with:


So there still appears to be some kind of matching/loading issue on this platform, even if the root cause is not the missing .80 variant.

I have opened a FreeBSD bug report for further investigation:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=295351
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: fastboot on May 17, 2026, 09:27:24 PM
Upstream FreeBSD identified the issue and already proposed a fix:

https://reviews.freebsd.org/D57046

The problem was not actually a missing .80 blob specifically, but a bug in ucode-split. Extended signature tables inside Intel microcode blobs were ignored, which caused missing split files for a number of CPUs and therefore:

dmesg:
"CPU microcode: no matching update found"

This affected multiple Intel CPU families, including Alder/Raptor/Arrow Lake and others.

The fix is already linked to the FreeBSD PR:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=295351

So this does appear to have been a real upstream FreeBSD microcode packaging/splitting issue.

@Franco, meyergru: It would probably be good to pick this up once it lands upstream, since affected OPNsense systems currently appear to stay on older firmware-provided microcode revisions.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: meyergru on May 17, 2026, 10:34:36 PM
I am not with Deciso, in case you missed it.  ;-)

I only happen to know a bit about microcode updates in general. It was obvious that it was a packaging error in FreeBSD, because I happen to have a system based on an i5-1235U from the same family and I know that the current firmware version for that family is 0x43a when updated under Linux.

I guess that @franco will include any current upstream package updates into the next OpnSense releases.
 
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: fastboot on May 18, 2026, 09:14:20 AM
Quote from: meyergru on May 17, 2026, 10:34:36 PMI am not with Deciso, in case you missed it.  ;-)

I only happen to know a bit about microcode updates in general. It was obvious that it was a packaging error in FreeBSD, because I happen to have a system based on an i5-1235U from the same family and I know that the current firmware version for that family is 0x43a when updated under Linux.

I guess that @franco will include any current upstream package updates into the next OpnSense releases.
 

thought you're also a MOD and in touch with Franco. As I'm not sure he read this thread :>
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: newsense on May 19, 2026, 09:23:40 AM
Not every thread warrants a comment

Rest assured the firmware updates will be coming once they're available for FreeBSD
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 21, 2026, 04:59:38 AM
Quote from: fastboot on May 17, 2026, 07:54:07 AMGood catch regarding the mobile vs desktop R0 variants. You are right, the i3-1215U is a mobile Alder Lake R0 CPU, so .40 should indeed be the correct platform variant, not .80.

So my original assumption about a missing .80 blob was likely wrong.

However, the interesting part still seems to be:

dmesg:
CPU microcode: no matching update found

combined with:

  • installed cpu-microcode-intel package
  • stale-looking revision 0x432
  • newer revisions apparently existing upstream/Linux side

So there still appears to be some kind of matching/loading issue on this platform, even if the root cause is not the missing .80 variant.

I have opened a FreeBSD bug report for further investigation:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=295351

You missed my other point. Did you 100% verify that your device has the exact CPU that is stated on the box, or did they somehow solder in a "desktop" variant.

On the working group page (https://reviews.freebsd.org/D57046), they call out affected cpu families, but the Alder Lake R0 is not named. And, if I am reading it right, it looks like the .40 is not being fixed in any way, but it does look like a fix for the missing .80 is there. So I am still curious.

Also possible, the coders flipped over .40's and .80's, perhaps they mapped the mobile variant to the .80 file and the desktop variant to the .40 file. A possibility that could explain what you are seeing. Or, my info regarding .40 for mobile and .80 for desktop was wrong, but if you go looking you should find same info as I did.

Quote from: meyergru on May 17, 2026, 10:34:36 PMI only happen to know a bit about microcode updates in general. It was obvious that it was a packaging error in FreeBSD, because I happen to have a system based on an i5-1235U from the same family and I know that the current firmware version for that family is 0x43a when updated under Linux.
Your applied ucode is a .80, for a 1235U ?
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 21, 2026, 05:08:39 AM
I guess I would also do more digging on coreboot, because the more I look the more it sounds like more digging is needed, even if the bug list is indicating an issue.

If coreboot already applied the .40 then should we expect another load at OS level to fail? Perhaps yes?


QuoteCoreboot itself doesn't ship a fixed universal Intel microcode set — microcode blobs are added per‑board/ROM build. Whether a specific coreboot 0.9.0 ROM includes Intel microcode depends on the build/image you have:

    Official/coreboot project builds or vendor images commonly include the intel microcode blob (from the intel-microcode repo) in the ROM.
    Some distributions or projects (e.g., Libreboot/no‑microcode variants) intentionally remove those blobs.
    You can check a ROM with cbfstool: cbfstool <romfile> ls and look for entries like cpu_microcode_blob.bin or inspect coreboot's build config (BOARD//config) for CONFIG_INTEL_MICROCODE.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: fastboot on May 21, 2026, 05:54:49 AM
Quote from: newsense on May 19, 2026, 09:23:40 AMNot every thread warrants a comment

Rest assured the firmware updates will be coming once they're available for FreeBSD

Awesome.

Quote from: BrandyWine on May 21, 2026, 04:59:38 AM
Quote from: fastboot on May 17, 2026, 07:54:07 AMGood catch regarding the mobile vs desktop R0 variants. You are right, the i3-1215U is a mobile Alder Lake R0 CPU, so .40 should indeed be the correct platform variant, not .80.

So my original assumption about a missing .80 blob was likely wrong.

However, the interesting part still seems to be:

dmesg:
CPU microcode: no matching update found

combined with:

  • installed cpu-microcode-intel package
  • stale-looking revision 0x432
  • newer revisions apparently existing upstream/Linux side

So there still appears to be some kind of matching/loading issue on this platform, even if the root cause is not the missing .80 variant.

I have opened a FreeBSD bug report for further investigation:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=295351

You missed my other point. Did you 100% verify that your device has the exact CPU that is stated on the box, or did they somehow solder in a "desktop" variant.

On the working group page (https://reviews.freebsd.org/D57046), they call out affected cpu families, but the Alder Lake R0 is not named. And, if I am reading it right, it looks like the .40 is not being fixed in any way, but it does look like a fix for the missing .80 is there. So I am still curious.

Also possible, the coders flipped over .40's and .80's, perhaps they mapped the mobile variant to the .80 file and the desktop variant to the .40 file. A possibility that could explain what you are seeing. Or, my info regarding .40 for mobile and .80 for desktop was wrong, but if you go looking you should find same info as I did.

Quote from: meyergru on May 17, 2026, 10:34:36 PMI only happen to know a bit about microcode updates in general. It was obvious that it was a packaging error in FreeBSD, because I happen to have a system based on an i5-1235U from the same family and I know that the current firmware version for that family is 0x43a when updated under Linux.
Your applied ucode is a .80, for a 1235U ?


You are correct that Alder Lake R0 is not explicitly listed in the review text itself, only "and others".

However, the proposed fix is directly linked to PR 295351, which is my report, so upstream FreeBSD at least seems to consider it related.

The fix itself is also fairly generic. It changes how ucode-split handles Intel extended signature tables, rather than adding handling for one specific CPU family.

So at this point I think the more important question is probably not whether the visible primary split file is .40 or .80, but whether the relevant signature/platform combination for this CPU is only present in the extended table and therefore currently ignored by ucode-split.

That would also match the observed symptom quite well:

CPU microcode: no matching update found

So I agree it is not fully proven yet that this specifically fixes Alder Lake R0, but the upstream patch and PR linkage make it look very plausible.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 21, 2026, 05:17:28 PM
I agree @fastboot, so let's see if the next package allows your device to install a ucode, and, which ucode exactly.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: Kets_One on May 21, 2026, 07:47:12 PM
Hi, sorry to hijack the topic with a question about an AMD CPU. ;)
I've also been puzzled by this topic.

I'm on Opnsense 26.1.8_5 running on AMD EPYC (Zen1, CPUID: 0x00800f12).
It's Deciso Opnsense hardware (Dec3840) with the latest V17 BIOS dated Aug 2025.

$ sudo x86info -a | grep -i micro reports: the loaded microcode version is: 0x8001278.
I have the AMD microcode plugin installed, so you would think we would be up-to-date?

However, According to the output from "Spectre and Meltdown mitigation detection tool v26.33.0420460":
  * CPU microcode is the latest known available version:  NO  (latest version is 0x8001279 dated 2024/11/11 according to builtin firmwares DB v349+i20260227+1cce)

$ service microcode_update onestart
Updating CPU Microcode...
Re-evalulation of CPU flags Failed.

Is there indeed a newer version of the microcode than 0x8001278?
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: newsense on May 21, 2026, 10:03:28 PM
> Is there indeed a newer version of the microcode than 0x8001278?

The latest pkg in OPNsense is dated 2025-12-02.

In the meantime there's been at least one or two releases as far as I know but the FreeBSD port hasn't been updated...so we can only wait.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 22, 2026, 04:49:08 AM
Quote from: newsense on May 21, 2026, 10:03:28 PMThe latest pkg in OPNsense is dated 2025-12-02
Post #1 shows a newer version of the package (which is the latest from bsd org). Is the diff because of an OPNsense version?
Or are you saying the OPNsense repo does not have the 2026 ucode package?

I have not ssh'd into my OPNsense to dig on it, figuring you folks could tell us.
When you query the repo what version shows?

Ok, i pulled the pkg from the repo (opnsense/FreeBSD:14:amd64/25.7/latest/Latest/) ...... I am grabbing the same for v26.1, the intel ucode pkg is on repo May 13 2026 and 2MB bigger than 25.7,

v26.1 has the actual latest  available on the repo (matching post #1). So it does appear you get pkg versions from the repo that matches the version of OPNsense you are running.

For v25.7 the date in repo is 2026, but the manifest shows pkg is a 2025 version. The v26.1 manifest is in next post.

Notice neither package has the 06-9a-04.80 ucode. But you can see last commits --> https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/tree/main/intel-ucode

Also to note, many of the files have the same signature, but not sure if the sig is like SHA hash. Perhaps indicates a change or no change from pkg to pkg? 06-9a-04.40 sig is in fact different pkg to pkg listed here, aligning with Intel commits, etc.

Read more --> https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files

(https://myimgs.org/storage/images/21047/ucode.png)
(https://myimgs.org/storage/images/21048/pkg-contents.png)

v25.7 manifest
{"name":"cpu-microcode-intel","origin":"sysutils/cpu-microcode-intel","version":"20251111_1","comment":"Intel CPU microcode updates","maintainer":"jrm@FreeBSD.org","www":"https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files","abi":"FreeBSD:14:*","arch":"freebsd:14:*","prefix":"/usr/local","flatsize":31649036,"licenselogic":"single","licenses":["EULA"],"desc":"This port uses the cpuctl(4) microcode update facility to keep your Intel\nprocessor's firmware up-to-date.\n\nUpdating your microcode can help to mitigate certain potential security\nvulnerabilities in CPUs as well as address certain functional issues that could,\nfor example, result in unpredictable system behavior such as hangs, crashes,\nunexpected reboots, data errors, etc.","categories":["sysutils"],"options":{"RC":"off","SPLIT":"on"},"annotations":{"cpe":"cpe:2.3:o:intel:microcode:20251111:::::freebsd14:x64:1"},"files":{"/boot/firmware/intel-ucode.bin":"1$138bd88a85aa5ecb0a655cc3093fa53cb41150ebda8b72ebdec2cae4a3da6252","/usr/local/share/cpucontrol/06-03-02.00":"1$3d76ee72e8b8ac4a733a7fe55b027c24278c444f1cbc5d78b5c84199471120cf","/usr/local/share/cpucontrol/06-05-00.01":"1$f704b7faed3abb00b7922717df1494faafaf413a8f15a1f31217a98f1071f398","/usr/local/share/cpucontrol/06-05-00.02":"1$8576fea5563479be0e942ebbdc60a762ef0a43c0b2d0ca799726028bf8d3a13a","/usr/local/share/cpucontrol/06-05-00.08":"1$86d954fdb5b9f35a678490f549a0995c7b10581bd8674f7172f268d71b5fe420","/usr/local/share/cpucontrol/06-05-01.01":"1$3a1537b32b1a67d350647df025b2c10382544a051c709f0ed04c8eacce4a2306","/usr/local/share/cpucontrol/06-05-02.01":"1$5ff8ce3d5a3025bdea86d7ec99b17036f7bc329a6f0b5aaa29a0e0953987ed46","/usr/local/share/cpucontrol/06-05-02.02":"1$6ec0197dcc4abf12b2eeb5e712596fc9b845bcc327dafad963b9199aa4c14663","/usr/local/share/cpucontrol/06-05-02.04":"1$e1c59fff7cd7a5cb8efa17258ffed56b9794d2e3c34312b71eacea5ce4b0acfb","/usr/local/share/cpucontrol/06-05-03.01":"1$51a947cdef3b77d73dab814d818f4413ea28e8850970c1781f15a8848143163a","/usr/local/share/cpucontrol/06-05-03.02":"1$bec83d807f3a16b782f6c3478ff993257c2d5ad0a9ec76b95ed1d6ace83ea074","/usr/local/share/cpucontrol/06-05-03.04":"1$0988dcefd5beb15345bb97de97d674e2c7f364146d8d0f6efc8ee6ac7d2eb1ef","/usr/local/share/cpucontrol/06-05-03.08":"1$f8bfc53f6f68c6a53d1c18637a91a46f604cbc84e19202c378794b7df00dbe69","/usr/local/share/cpucontrol/06-06-00.01":"1$a662324e98d9febfdb2f874c6fb689b7027dea05cb9b4b101ac9bbace691d1b5","/usr/local/share/cpucontrol/06-06-05.10":"1$05ae5b2064a86b440655c8ad1bab523f29ad5b00754a372504c02d97cd145a52","/usr/local/share/cpucontrol/06-06-0a.02":"1$3ac4c42baa353de31b9faa6b70e459a07d472e03147d5267c2b5e5a60cb84986","/usr/local/share/cpucontrol/06-06-0a.08":"1$14731c4346d0eef14afe84893580dc5152cd340b7985ff8cb9a0197d2af48c35","/usr/local/share/cpucontrol/06-06-0a.20":"1$41f0bdd7f0b536d2dc4a61bf478953bfe59de9e2da196671f95060fe4a1008a9","/usr/local/share/cpucontrol/06-06-0d.02":"1$e14cf30ec8201f0b0dea8fb8c4631e94476f86122e17c75c843e596a8ccbd838","/usr/local/share/cpucontrol/06-06-0d.08":"1$d600507ec32fceeb27737ff449cfd9b2450b88eb48f50b02f1abf6eb967b4ddb","/usr/local/share/cpucontrol/06-06-0d.20":"1$902a81d7f7ab005cd9ca5db067c045b0941b3ae2abc040942748821b7396ba4f","/usr/local/share/cpucontrol/06-07-01.04":"1$0248cd7a9a2093bcde3bb2e14ac99f98336a89fb63faf234af31a43739ef8384","/usr/local/share/cpucontrol/06-07-02.04":"1$dd39eb584d99f1389b65e061c4799d2826479adfa16d2b11b6a1c87dc0fca16c","/usr/local/share/cpucontrol/06-07-03.04":"1$f05729bb4f1c22fea672ab6a5ea7d3ff319b1d4e7919d9c7900fd2e4c66cdf62","/usr/local/share/cpucontrol/06-08-01.01":"1$0bb6dc30ea7f8761f3cbd7ee5e329e4ac93de9f5cb5e2f124837c7880352f7ba","/usr/local/share/cpucontrol/06-08-01.04":"1$168f9e17d1b93e7d15372380e9edb689ecceafaa72cfbaa69423de2f750216cd","/usr/local/share/cpucontrol/06-08-01.08":"1$265fb3fef41166e7c3bb85e1c17263a7e6d2177a209197a7d31f6084c5c21293","/usr/local/share/cpucontrol/06-08-01.10":"1$6f9c3bc628b5094720ea84d6b6f2f9df4400c777fd019e668473df083bcd0b56","/usr/local/share/cpucontrol/06-08-01.20":"1$81426a5ce6787fb8e589eb694127d17998fd6004f34193b749c18bedbe977cf3","/usr/local/share/cpucontrol/06-08-03.08":"1$1d6873432651b45e5389079fe18911e22f3dd8f75ae4d34fe2d05943e6f889bd","/usr/local/share/cpucontrol/06-08-03.20":"1$436b6ea7ef69563ee0a2538ef6e9255ffb7d5d047ce79e68f514c0316bd5cfbb","/usr/local/share/cpucontrol/06-08-06.01":"1$0c2c536b057612af8308f271b464c5d3b5b14f80c5e17067b1808537d7683413","/usr/local/share/cpucontrol/06-08-06.02":"1$de952e29e0143195c99b8cc93d940034462d71dccc3c40e5572492e8ac09ef6b","/usr/local/share/cpucontrol/06-08-06.04":"1$3f3659fa6fd3ac69531a90bba3ae3fa0bf98446ec07bb0c26f89ba25a8a14600","/usr/local/share/cpucontrol/06-08-06.10":"1$e22ccce25d18926682915a6e0d2796eb287f06b6b09fb843703c3a8bb063414b","/usr/local/share/cpucontrol/06-08-06.80":"1$c7a0fbb1467eb5207cbaca335af3126ea8243fc575d9ec6ed71c5b3c3100234d","/usr/local/share/cpucontrol/06-08-0a.10":"1$072d67a373c370a82cd54978a3696455f8dcee12f61244de001fdeca4a82c38e","/usr/local/share/cpucontrol/06-08-0a.20":"1$7591764567657cb5eb55df3e728b2d6d88ec580e3bddcbaa2c1604c123bad791","/usr/local/share/cpucontrol/06-08-0a.80":"1$bcc0e301a4885016e033b7435eadfd835f75896fb41cd575e2693d5d58bb2004","/usr/local/share/cpucontrol/06-09-05.10":"1$d19151366ba1670ab2d311d4f0568d9e50f1ef58a565e993cb6ce478bb9dd622","/usr/local/share/cpucontrol/06-09-05.20":"1$345fc12f70f6142e2fe04bf13188e71d27065db5a52dfe1e1fe38129a1a75098","/usr/local/share/cpucontrol/06-09-05.80":"1$638da4b9da7b3ce4e08f4175aa71f624386bda028d3646283264510e239f1ac8","/usr/local/share/cpucontrol/06-0a-00.04":"1$7aaf89aefb2156cca5eae0fe604219d7887b574c76178536d2ac089cc80dd8bb","/usr/local/share/cpucontrol/06-0a-01.04":"1$0a2a00d8d1a32746118c99ba403788c04f53092c480aa77c4b8b5264d90c0d95","/usr/local/share/cpucontrol/06-0b-01.10":"1$993f1b58105445652773f647f2f6f42b6b015b74aa96c8106f7648285004a47d","/usr/local/share/cpucontrol/06-0b-01.20":"1$febabff2bdcb0645fd39367c20e14a01eff6d445da8b051d7a20279306e2c11f","/usr/local/share/cpucontrol/06-0b-04.10":"1$e024a8e7806b399d530e80fc943a1be1413d1f5d26bc27967992f847359a0b8b","/usr/local/share/cpucontrol/06-0b-04.20":"1$67cd36e6935b9178fecf3c2ed14d22826c0842f2db61ad76f62ba6d33bf8af07","/usr/local/share/cpucontrol/06-0d-06.20":"1$6d6b523f4ef84e8551298e6f33ff6816f5dd6f1d36f30d4ca6bdab542ccd4351","/usr/local/share/cpucontrol/06-0e-08.20":"1$2abd5148b6a5c1649e5c4ac2c93177e00954e9c702762e329e03231fd396832a","/usr/local/share/cpucontrol/06-0e-0c.20":"1$23348b05b89cf2b73b190a8712f5893f923217e3c1d1b9c91edbea6d01367b67","/usr/local/share/cpucontrol/06-0e-0c.80":"1$5dd067f4eb8aa9a54c8a77da0909061abed6517e0634241942b6177cb7ae59f2","/usr/local/share/cpucontrol/06-0f-02.01":"1$3e3c64efbb868c135b30020c64a8194142c3d794bdeb8cae4d3abb29460739c7","/usr/local/share/cpucontrol/06-0f-02.20":"1$edcffd60a66cbba93708b956ec94f50c1508c1d24193c500affd8ac0b1944ae2","/usr/local/share/cpucontrol/06-0f-06.01":"1$46581492676f903f37ba3ec4d191c7a679486f526b5164b19637440ae60bcf1b","/usr/local/share/cpucontrol/06-0f-06.04":"1$4b19a61e405694d4c8bc621faa1da36befda054820824bf295c044ca7244f2e8","/usr/local/share/cpucontrol/06-0f-06.20":"1$9194bf2732177d8204485b17b097e18609b4946b269ad76c98264f4d39a8a3e1","/usr/local/share/cpucontrol/06-0f-07.10":"1$940d0d26c405572e8d03aaeb409c59404b4defcb25475b0c7b3ffac94979e382","/usr/local/share/cpucontrol/06-0f-07.40":"1$2e101837d2111aeda8703e78d4867ed6f88e1705337839241dd6560e9883bdc3","/usr/local/share/cpucontrol/06-0f-0a.80":"1$02e202a3894df3a07e5115756949f051660ca477105b39df5c5a008bcc2f0abd","/usr/local/share/cpucontrol/06-0f-0b.01":"1$82dd0816450c09b2640bf019c6e470d51889c94670c9f9060789daa8add2ee16","/usr/local/share/cpucontrol/06-0f-0b.04":"1$c678b04fa6daace0128be2de7844d17379b7b673173ff8aef01d29a85fe3ce08","/usr/local/share/cpucontrol/06-0f-0b.08":"1$8f1cfb37ec54066093808f8c13a91353309d917918100da0365c9c2b5be780e2","/usr/local/share/cpucontrol/06-0f-0b.10":"1$43fcc19add8c549f6b1f97bbe4feeebf045853968153f9176a04a940f111fbb5","/usr/local/share/cpucontrol/06-0f-0b.20":"1$25e04996d9acb655542934f10cdfb9c8e442f4465ec1ef791b49160d4f3ec756","/usr/local/share/cpucontrol/06-0f-0b.40":"1$041164ae555678f767e4eb4757a64ac80ff1a5dbec71308a0f938eb81c9aa2ef","/usr/local/share/cpucontrol/06-0f-0b.80":"1$fdfa184198ecd7e30d7a92488a72cbfdbf1166f716ce78137f6f1acd51b7a347","/usr/local/share/cpucontrol/06-0f-0d.01":"1$481f6d34ad2ab877be5a40c27298b0820ca1b9b9851db53e0bc38d882628bcea","/usr/local/share/cpucontrol/06-0f-0d.20":"1$4da3b8ef86d548c3fa9c9a167aaee474973478643f545ddf5b035cd9fedc8701","/usr/local/share/cpucontrol/06-0f-0d.80":"1$6cf08e6790d802724eedea00b6f87e83f0d047bbd4b65e413ff2206e77de3667","/usr/local/share/cpucontrol/06-16-01.01":"1$5b71678d0b1bd27d799930e7c5618f8b41bf14abd9a42efda6763f3371134200","/usr/local/share/cpucontrol/06-16-01.02":"1$55bce63e776a5f88332b0ba6000e87cba55de924e5c519ad72b7f0fe70056f64","/usr/local/share/cpucontrol/06-16-01.80":"1$18193c2618dc2a8edd8d53e71ee0c61d9a60b69598562c6f5c2bb6a19ec8b545","/usr/local/share/cpucontrol/06-17-06.01":"1$a28e742a6d7a70da1dffa143b1ca258da49404de16afa5292f1bff14d11156ef","/usr/local/share/cpucontrol/06-17-06.04":"1$2e6af7964f7a483652489bbc3e6f62a6b8314d3e7872b81f8829130e06beac00","/usr/local/share/cpucontrol/06-17-06.10":"1$e321cfaa2cb10ea0967a23e988d8e50ca8f236498a42993f43de01f020b9a75f","/usr/local/share/cpucontrol/06-17-06.40":"1$fd5f6269d6c4b1143c237ea116818cd9ec67bd6ce158c329e2365952c316a766","/usr/local/share/cpucontrol/06-17-06.80":"1$f0b02f712f91a3118c5bbc6fe6bd19bc7424cc35acbe10e126f44a88fa5fa317","/usr/local/share/cpucontrol/06-17-07.10":"1$dd0150e636ff0d97f5f841c9da0b6e46654dab14987a5d611db386ac277b68d6","/usr/local/share/cpucontrol/06-17-0a.11":"1$8236fb117a3eb81bb8ef3cb8ff465cf76f983442a3aa1d9eb1d3971fdc202943","/usr/local/share/cpucontrol/06-17-0a.44":"1$4e079b560ff5313f2bfa97454ef1d0118868aba428c681605769d222bd181e50","/usr/local/share/cpucontrol/06-17-0a.a0":"1$ab91564d2925967df8aaa20bc55ab8c893ecc0312365f5d51f7c1abd95098d24","/usr/local/share/cpucontrol/06-1a-04.03":"1$53492c2bbc2ea3ba10eca377f24399c8f2fea6fc36305a7259f24f6fc324137e","/usr/local/share/cpucontrol/06-1a-05.03":"1$ce1c8248066c2126d509ad7c68168586280c69332f06629da02a678b9e9a4ba7","/usr/local/share/cpucontrol/06-1c-02.01":"1$6c8036106509ea5c56188e3f697f6f076c228419302889763311e5990b228825","/usr/local/share/cpucontrol/06-1c-02.04":"1$55c65b69d2e3e557fc346ea8acdfaeb6415741f2ca4a90aef91b8db39aaebe3f","/usr/local/share/cpucontrol/06-1c-02.08":"1$4b16b91610b6bc69e52834fb7e5cd962a9a8cd50b355e0de10036f716e36208d","/usr/local/share/cpucontrol/06-1c-0a.01":"1$b47816dfb926104a7e457f6148912317dc8fb97041bb5bbdee947a1e6f260371","/usr/local/share/cpucontrol/06-1c-0a.04":"1$2ff4f965953a4ff9402776c48dd2bf3a3a9b60eea635c93415d9cd2966008417","/usr/local/share/cpucontrol/06-1c-0a.08":"1$873895b0d31aadacc78aa9a27fbb072a3f7dbecc166a9714ee99c946abcfa3ff","/usr/local/share/cpucontrol/06-1c-0a.10":"1$a7024d7134b02baf0e0e4607c5cc6339bd8ea576862c80205c36b8c18c97a2e6","/usr/local/share/cpucontrol/06-1d-01.08":"1$c76253b2ba998cb97f35f871c5202a887ba3609d1ae6c49eeba938a6c439cd39","/usr/local/share/cpucontrol/06-1e-05.13":"1$0f74ee09443587e736f7c86a526544e59baed17f20f0dfab7f8183ccdca96388","/usr/local/share/cpucontrol/06-25-02.12":"1$1fb8bb2e4a052706f31c82360c745645b56173276dbc8e0bb9463458b0239600","/usr/local/share/cpucontrol/06-25-05.92":"1$4833aceb498cd019f8f9e5c6cdb77034d05e3f5053946ab447a640b52de8564b","/usr/local/share/cpucontrol/06-26-01.01":"1$f23c24b0a152c9cc107f8b76e8d192e86a3553e2f628364d058eb9dc512667ce","/usr/local/share/cpucontrol/06-26-01.02":"1$df76c1ff5ecd0587617aece3ddaa33e6b48d30701f9e7f694ea0e5b748de7414","/usr/local/share/cpucontrol/06-2a-07.12":"1$fb8db8e9c3f37c3cec6e013e77c89aef33a101ec2a37dd6101ceac9a89ec32ab","/usr/local/share/cpucontrol/06-2c-02.03":"1$6d39860414c836e949761ae152c8cf53da9519ffc0636efbacd5800eb3fa6cf8","/usr/local/share/cpucontrol/06-2d-06.6d":"1$dfd62187f3a84b9682b82c0237d51533be6bfbb11e1602e616b155dd46c74dc8","/usr/local/share/cpucontrol/06-2d-07.6d":"1$8e90c594b0fe2360c0b42b10e74c1210773f2ec1259075c373a47ed6f14f5669","/usr/local/share/cpucontrol/06-2e-06.04":"1$2acd1587447ddb558f1d2d08f797930cbbeef54adeab29c1ff045f3634d89883","/usr/local/share/cpucontrol/06-2f-02.05":"1$e0677d50704ae75e00606ccd3fe8ee5d824b8e045a7d53cfde367b2db37cc001","/usr/local/share/cpucontrol/06-37-08.02":"1$8558215976ac63f60f2ac7859d2c1f8c2989de35f81e40bb7da9ecd04513dcdc","/usr/local/share/cpucontrol/06-37-08.0c":"1$97066a6378f14530d597fbcd9c9201d627ba4625a071f03a06e3dbff2ce85b49","/usr/local/share/cpucontrol/06-37-09.0f":"1$a4bf916f7d98981d3835b4e9d4803ed8c74c408119568bdaf5dd83d09ee21605","/usr/local/share/cpucontrol/06-3a-09.12":"1$ca2fa408851d20e4f9993f5a3b60d41f17a6ae3b8c4bfa0b730fd162abaea885","/usr/local/share/cpucontrol/06-3c-03.32":"1$2af41bcbe3412aec07c720e2be6ebdd092adaf8a7635efef6c5480a0b53a185d","/usr/local/share/cpucontrol/06-3d-04.c0":"1$33c8eb1ab12d4d901711c91a0858937edb811c40358d2fd7ce502bb5e01149eb","/usr/local/share/cpucontrol/06-3e-04.ed":"1$6fcbd4b05b272fdd5be168cdf1cec0eb7c883d14d2ff96d90ab6f034bd18de2f","/usr/local/share/cpucontrol/06-3e-06.ed":"1$eccff59e7ccf333e370c1b31d44b1b03578c9d7ab3af9aff32bea7c0ea086762","/usr/local/share/cpucontrol/06-3e-07.ed":"1$a23b284827934dbf0afbe38d7e7f2bb32855121aacee286749cd93bc0bcfadf6","/usr/local/share/cpucontrol/06-3f-02.6f":"1$78021d5f3de826d80061317bcba9fbaa17c813626fcf3cb4b19a2f1cfa2dad52","/usr/local/share/cpucontrol/06-3f-04.80":"1$eeeb4225736331f4bbf0276c9bb4f4ae2b28fdce8308171244f5341c08e524b4","/usr/local/share/cpucontrol/06-45-01.72":"1$b65ad0fdb9e8f40e252e8fb2398124a1db3d2f234a0e146f531d2d555466d9e8","/usr/local/share/cpucontrol/06-46-01.32":"1$dbe695d3c75656648e3fad413ba40ec028d8eee6a21689628dd3bbbfab41911a","/usr/local/share/cpucontrol/06-47-01.22":"1$dce369d38787c633fa96050c668be7295852f1ec730863bdecfaf25b0e30d6e6","/usr/local/share/cpucontrol/06-4c-03.01":"1$bc42b04ed3ae6d2c2f954c16347aa08283014acc7e9fbf801c2690dc42c81038","/usr/local/share/cpucontrol/06-4c-04.01":"1$11045e50e2a617def5c2f6227cd6eaf0a565f0a5772b8da2422b432d77ed6a0f","/usr/local/share/cpucontrol/06-4d-08.01":"1$c3787d95a1e0f0609c991b8c79093edaac16b0fd76e3530cbcc6dd4f5187221a","/usr/local/share/cpucontrol/06-4e-03.c0":"1$2bbc1de08a66818f3f30f91e398d4ce0653a0a135954d4b12a9fe24d4da90819","/usr/local/share/cpucontrol/06-55-03.97":"1$cb6a0b69128ef381d007468e8c5bdfa9f89e4f1538449bb9f9e5b0e79ee94727","/usr/local/share/cpucontrol/06-55-04.b7":"1$b75a5431e28a23dc2d663bc19fe5f24541d85b6e142e6583a8f25dd95190003d","/usr/local/share/cpucontrol/06-55-05.b7":"1$ad42a775379c6051a11ea8077bb475aec6d74712296ccdc3b7bac1a0f209ca5c","/usr/local/share/cpucontrol/06-55-07.bf":"1$7eac096f672ed5e6736334630eb55f70e752ebcb8f8c60268bd58bacbfd4d474","/usr/local/share/cpucontrol/06-55-0b.bf":"1$61a2b7c8e2d9e982f6e7318bcccf76568d2f781e00e2d92ba9145a3135bfec87","/usr/local/share/cpucontrol/06-56-02.10":"1$40804ca9e17addf3b4a894f708fb87a066952f2a602872ba07fec4b61aee6d2a","/usr/local/share/cpucontrol/06-56-03.10":"1$1c43dfa1d454e5dbcb2153ba3f5a0d9f79a6fa1d64e95e963a06706b1c71b5ea","/usr/local/share/cpucontrol/06-56-04.10":"1$d0cd5a6e8a1557475384337698bec98ca31a50a797bba0ef07c1626a22f29aa0","/usr/local/share/cpucontrol/06-56-05.10":"1$ab75a3b550b1ba4249b998ef7fed95b1091abba96cbe06aa3e289366fdfd8682","/usr/local/share/cpucontrol/06-5c-02.01":"1$5c613a6765d59c41a400f8450f3347ee4f6a919a9f8568747a4fde9b83b3f6f1","/usr/local/share/cpucontrol/06-5c-09.03":"1$a7e990163be8b269384037f00f56cadd2604588b888c49e7b0b43baa38be0b21","/usr/local/share/cpucontrol/06-5c-0a.03":"1$52acbee81c6dc78c2cb1515a650064ab51800af137b11d4d6ef0433320c4d2ad","/usr/local/share/cpucontrol/06-5e-03.36":"1$15e96637a89012390e2c254effad092fc9535912b709ffa316069fc5606efb65","/usr/local/share/cpucontrol/06-5f-01.01":"1$a61ab250e94a53c5acd8da6cbc33fa2bcae040c9d9222a09c7cec7b694968322","/usr/local/share/cpucontrol/06-66-03.80":"1$7b291fa54f25261e68de7d337c9c6b4fa2bbadee9dfa8d17ad1317b9e63f4793","/usr/local/share/cpucontrol/06-6a-05.87":"1$ec16b02ea163e8fb781b3b61b7bc58b416a7270178353a0e7aa8be6fd20ffc25","/usr/local/share/cpucontrol/06-6a-06.87":"1$b9f7d78e2ea4a5ecbf3b138d5c3f23fc16919588029a99ff69ed874477cb1db6","/usr/local/share/cpucontrol/06-6c-01.10":"1$bde29209972cd598764fc9cefbec625307e8fec9911995125fe5a3b7b42a4ef2","/usr/local/share/cpucontrol/06-7a-01.01":"1$ed98581aaaf8791d505be86f61ce4ebafd28b414ea59c32e217f6cc8c37e0d9d","/usr/local/share/cpucontrol/06-7a-08.01":"1$d37cdd957f03d92bff08d4d2607cdad7f4cd1be8229d7d2591ac9161266e393b","/usr/local/share/cpucontrol/06-7e-05.80":"1$b4a94a17dc2c58f9b3580ce3996f73e9fae52eb91380a8095317e91f832ee358","/usr/local/share/cpucontrol/06-8a-01.10":"1$d7029d47e8ee440fe6be4ea8c044238568eadb65cbb698091dcc6f6535463e9e","/usr/local/share/cpucontrol/06-8c-01.80":"1$24dce8246bee05d17681a0a47dcab5164f1ef155148f622d7de63dafd535ac61","/usr/local/share/cpucontrol/06-8c-02.c2":"1$7e8de7951e09f91b8d6ae8020eaa0b14c24c44c9b0a3eb6201b0509683f62cba","/usr/local/share/cpucontrol/06-8d-01.c2":"1$3b3f690b475cb4a11ba5271ce61130296d91f8f03c47af70a8010acd57544f9d","/usr/local/share/cpucontrol/06-8e-09.10":"1$23584cfdbd7d60051c03e77524afcb85f078bb04190dac0bd38a3bc7d1a1e5b7","/usr/local/share/cpucontrol/06-8e-09.c0":"1$84f64d30cada5a138add250b63b4edc8a136aad142df15f7c7743138f1f674dc","/usr/local/share/cpucontrol/06-8e-0a.c0":"1$368784c15e2e3538352974b8fe32a4150da09ac19d0005121c75db336d55a7c0","/usr/local/share/cpucontrol/06-8e-0b.d0":"1$97a671535d920d4e55e615b265b91016afe17b6a0e293c9a7d64d7bb6d589f86","/usr/local/share/cpucontrol/06-8e-0c.94":"1$6f60c60e426e29c872dd1d35bf9f35cac2366cb3fc9053d7622fafe1b689728b","/usr/local/share/cpucontrol/06-8f-08.10":"1$70d806c38562e31919abe82ebb5f6719e02acccdc0ba4b78abf97c3701f084b3","/usr/local/share/cpucontrol/06-8f-08.87":"1$91764f0cec8436ba26cf5540b7a06ae4e593a70efb27fccd02d90984b30db101","/usr/local/share/cpucontrol/06-96-01.01":"1$1771049d0db5b354e77ebe1cc063badaa8c16fd81e22707a75ec904b06db0174","/usr/local/share/cpucontrol/06-97-02.07":"1$fe6d8e3f34036721d2ed697f9023b75d079e849813a6ddc8fb900f11cb3a9036","/usr/local/share/cpucontrol/06-9a-03.80":"1$20bf98e0746680bc9f8b0f4b02071bade7f8c2970699136b4560a0b0ee56e164","/usr/local/share/cpucontrol/06-9a-04.40":"1$2f0f64eedd2d5b808615ad89ffe6d424b9faa562578657e6b864eca15aaa1d29","/usr/local/share/cpucontrol/06-9c-00.01":"1$2e07c2ea90c3074f68c0ba2bebf4fcf3a999ff144afcc34f1d7f0f81a9bcc2d0","/usr/local/share/cpucontrol/06-9e-09.2a":"1$ab884b0060cee11f64dafdbe0659f647d058b510274e1331322b88dd83080e6a","/usr/local/share/cpucontrol/06-9e-0a.22":"1$615aaa46ae45cd60f79d0d33b875752222f2f5e7109a1e4c523ee10c0d6b6db6","/usr/local/share/cpucontrol/06-9e-0b.02":"1$212a25b0184d783abeac7b698105553747e4abd7dc35121e5a04a5b34be02d8c","/usr/local/share/cpucontrol/06-9e-0c.22":"1$65738658537a6d201f0d94b7205e39ca4ec3f39c56fcc9a73f314214103fb9d6","/usr/local/share/cpucontrol/06-9e-0d.22":"1$976f45becb07fc6a7dcb2352b286a43cf5ccc6fab34b0b598aceb354d2b235d3","/usr/local/share/
cpucontrol/06-a5-02.20":"1$6555e891e6df43cfe9fdf3d7293158cc6107f2efeed80b55cec7ed24e307ecba","/usr/local/share/
cpucontrol/06-a5-03.22":"1$b6bf97b444e3864b624d7ce8635172b8fee48dda7a00a4d99202d0f1c0fc838c","/usr/local/share/
cpucontrol/06-a5-05.22":"1$bc9d8ee2a7981a6296f003e6a216fdf58b48ebb76be9a39719df711da6652452","/usr/local/share/
cpucontrol/06-a6-00.80":"1$acc3519096d3ad446b070b8379470dde177ea8358a159884c8db098d5c052831","/usr/local/share/
cpucontrol/06-a6-01.80":"1$092b8da46db50e4b4f9d5c1516980004d17648b6d3ddba3405dd8af9a0c9edf8","/usr/local/share/
cpucontrol/06-a7-01.02":"1$8a2576cfaca7760dc1a929887cddae1dc1538c8cd522542519ab1642bee738f9","/usr/local/share/
cpucontrol/06-aa-04.e6":"1$0a14f2386d2327e2f7c74df16e775b84acb2f105ccb87c4e668a501a10927c8b","/usr/local/share/
cpucontrol/06-ad-01.20":"1$15794628f2685b987e370257957055aa6eda5af8a175fca869e0e7a5112660d8","/usr/local/share/
cpucontrol/06-ad-01.95":"1$4ddd2c6f9e0a8e799e626d30713546c1977dbd17bf1baf363c80c9e8d9443908","/usr/local/share/
cpucontrol/06-ae-01.97":"1$7c3ebda9d52c4e95b2d29e25fff62fb55e9cdd435dc54da2a93307ec72720e39","/usr/local/share/
cpucontrol/06-af-03.01":"1$e7750c3340cd45601f72bd1c04db0e87808cac5a0b9ed774df93596fb1c4ca33","/usr/local/share/
cpucontrol/06-b5-00.80":"1$9521cac584e1a44d4875aa159b45815ab29ec686e8c1d598d130b13652f3cd22","/usr/local/share/
cpucontrol/06-b7-01.32":"1$67c0d6a111a744101ca91912926e08704949098975726a0197232f2a8b21521b","/usr/local/share/
cpucontrol/06-ba-02.e0":"1$d781542f72f8c1f87d3b8d38cffe28add2146ad1a856ac74cc5a211c032bd414","/usr/local/share/
cpucontrol/06-bd-01.80":"1$0c39bda96abf8e2f8897d39ce4aacb4a2740af2e7447abcaf2243c858c61feec","/usr/local/share/
cpucontrol/06-be-00.19":"1$a75d5d37b9bf2c767211fbbcca464004f6688637bf5616569c6df7808bea8d09","/usr/local/share/
cpucontrol/06-c6-02.82":"1$57ec08a24d246cbc4cccf08d4ea7c1ba7e18c60cb2522909e981a973fdc11615","/usr/local/share/
cpucontrol/06-cf-02.87":"1$d21bfe3b7dfa204698639e5bfa9842e89380ce4ab960b7f92dad83297ba9fa91","/usr/local/share/cpucontrol/0f-00-07.01":"1$bd0bc349deb5638844f69083e9a16b337ca6938181c3f8abd545d29c07a41b1c","/usr/local/share/cpucontrol/0f-00-07.02":"1$9f0add0270d432b9e3a6984a442fa0a93ebe41294447dff97f7c18bcecf86109","/usr/local/share/cpucontrol/0f-00-0a.01":"1$27832788b03eb4a669f844dd7224444fdf59b70b59fefe81e751513cb52cd174","/usr/local/share/cpucontrol/0f-00-0a.02":"1$345fd400dfeff5b28a6305b754d7b47f5dac463d062db025fbee3b0c0fe9534d","/usr/local/share/cpucontrol/0f-00-0a.04":"1$3738ec7f24c4f4c651387a1b6ab331882fb69a575d94fad0378b1474edaf437d","/usr/local/share/cpucontrol/0f-01-02.04":"1$a06ad0cd47fd29cc6dbebe6d5e853d7171cd7df298c5e67f13e40ffd7fe6e592","/usr/local/share/cpucontrol/0f-02-04.02":"1$31ca049bad719b9a7c3a304fa9672f2cfb442dfabd05944c9fd24293d6d2fd13","/usr/local/share/cpucontrol/0f-02-04.04":"1$f261e0665334264f5a50182056ebe0589371592d7f3f1094584dec03956de3d7","/usr/local/share/cpucontrol/0f-02-04.10":"1$3f92610be4248dbb9ea92c4fe535bb91748e21d550c925be27448bc1444ab3b0","/usr/local/share/cpucontrol/0f-02-05.01":"1$6ac050062b50054a9dd25eae0b2cbedc3c0b24008ffa5bbd6684582e85ffa9f6","/usr/local/share/cpucontrol/0f-02-05.02":"1$46b99cf410d81abbb555e9a046b60c1eda970b4e85ed8c7a6856514416a83e0e","/usr/local/share/cpucontrol/0f-02-05.04":"1$eb407d0c88e4083200191cf0daf473abef802bb6d5224a955beecd13e55f434c","/usr/local/share/cpucontrol/0f-02-05.10":"1$590fc4a654779e901547abee8ed7766bd45c6fc38f041de5bf8d8c7880703588","/usr/local/share/cpucontrol/0f-02-06.02":"1$56340cc81aef247113267050029a039b23d0e578d3b5a43bfbcf0d3e1388004f","/usr/local/share/cpucontrol/0f-02-07.02":"1$0f92e3764fc0ac9d762076015f09662ec5fa5fbdde187bbdbb331d4af86b6b81","/usr/local/share/cpucontrol/0f-02-07.04":"1$6fc4309f5dfbb88e30f66bd928810c42a84a26fcdfd90ea1a20c7fef29d7ff9d","/usr/local/share/cpucontrol/0f-02-07.08":"1$4691da23befb6bde3cddd05d571369ac1f40c3966e64fe6affa8ca169310e9a9","/usr/local/share/cpucontrol/0f-02-09.02":"1$cdbe1b84210ed7f3e6f18e539a49246f78e95ac459cd84ce2fa3fd6ff45d5bf0","/usr/local/share/cpucontrol/0f-02-09.04":"1$1c7000cfba95214dbf5c74d5e1255b662d7e02b7720622ddbcd090b3c2e3d381","/usr/local/share/cpucontrol/0f-02-09.08":"1$df7bf27d1b259e6a9f1885c0b9de6eeb25b06bd456fa8793f45ad91e7ebb7de4","/usr/local/share/cpucontrol/0f-03-02.0d":"1$676888bcf442195c0b3a3799cd009bdcc521fbfcfbd84798d76c9809c10a510c","/usr/local/share/cpucontrol/0f-03-03.0d":"1$5c4ad3321bdc4a7cd630533aa00c5cea07ad077e564eb9bac65ccc5ca49db5f4","/usr/local/share/cpucontrol/0f-03-04.1d":"1$503852781748569f62eb68cc847cff0f9ad72bacdd7f421d7d7b4c4613ab18a5","/usr/local/share/cpucontrol/0f-04-01.02":"1$071ece7593f6bfc2a3584bf8a5ff7db36a018eb96b491f39cc21667b3afda5d8","/usr/local/share/cpucontrol/0f-04-01.bd":"1$2c6d4f47b4e83b41663803ece1734cd2ae0a8da0c75f331279a1493699ff08cf","/usr/local/share/cpucontrol/0f-04-03.9d":"1$beaa222d3730e69d7cf9983a340e35039a2858c9e4b57d023f5eb4b7ed937a43","/usr/local/share/cpucontrol/0f-04-04.9d":"1$839e8dac30e8b97b7740261c5e581cbce2d09f88989858045565ceba391157bd","/usr/local/share/cpucontrol/0f-04-07.9d":"1$7d9a242b67331526a3633042c96b61e880cecbc327dcce574ba81707d1147eec","/usr/local/share/cpucontrol/0f-04-08.01":"1$e5f8b833c8e40991af3cbaa4d5dc221995e32e169ef8d6c2c7434c249ac6ea4d","/usr/local/share/cpucontrol/0f-04-08.02":"1$661c8a9e989cc523db2296543f78104c1df9d8cc824fdf939de208a9dbb17823","/usr/local/share/cpucontrol/0f-04-08.5f":"1$a3811718b3348e55df96a67a3cbb577ad931477b895960cdb0b8384923495a6d","/usr/local/share/cpucontrol/0f-04-09.bd":"1$96217d1ec127192263015efcde27c1aa49e56a99d401d1a656800b578f58c250","/usr/local/share/cpucontrol/0f-04-0a.5c":"1$1862ed4121df180b611025847772687167714f920454819c5a69f0b3bd45d1a6","/usr/local/share/cpucontrol/0f-04-0a.5d":"1$4f25e116c54b67742f3cd5e39cab938812242a0061bc9aebba4dd2672d0f6090","/usr/local/share/cpucontrol/0f-06-02.04":"1$fddb8c39f348deeaee062f0353ba0c52847015c1aae822366d7ae151bc3b77dd","/usr/local/share/cpucontrol/0f-06-04.01":"1$a6f1227b7b26ad51efdb04911cb75af6537f85c8968358039e6d754edc895fb7","/usr/local/share/cpucontrol/0f-06-04.34":"1$d1268c0d074c5dbf179ce7eef4748ffcf754c9a2de99e5696d925520e83778cc","/usr/local/share/cpucontrol/0f-06-05.01":"1$f7a7756629757a3a2cacd467eaaec0d1b1d33e7faf0995a96659bc3fc4b32ff1","/usr/local/share/cpucontrol/0f-06-08.22":"1$26a47493b04b770f6b45a27dd12e01a8e07c2011681d9d725ad08b3fad5fffe5","/usr/local/share/licenses/cpu-microcode-intel-20251111_1/EULA":"1$c6477966d1b617f4674dfb5dc7707782fe79eea8ece3f44cf969134d2a5ecebd","/usr/local/share/licenses/cpu-microcode-intel-20251111_1/LICENSE":"1$e5ac28ca844be0aae8fdb279c6b6aa1bb87469692f5efaba4ff487d7d73c4fa0","/usr/local/share/licenses/cpu-microcode-intel-20251111_1/catalog.mk":"1$73aba11a6e566f22a665a108508adc4945062c1663b6234203e7ebf524a023ba"},"messages":[{"message":"To enable microcode updates at boot time:\ncat << EOF >> /boot/loader.conf\ncpu_microcode_load=\"YES\"\ncpu_microcode_name=\"/boot/firmware/intel-ucode.bin\"\nEOF","type":"install"}]}


Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 22, 2026, 05:21:15 AM
v26.1 intel ucode pkg manifest

{"name":"cpu-microcode-intel","origin":"sysutils/cpu-microcode-intel","version":"20260227","comment":"Intel CPU microcode updates","maintainer":"jrm@FreeBSD.org","www":"https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files","abi":"FreeBSD:14:*","arch":"freebsd:14:*","prefix":"/usr/local","flatsize":31709452,"licenselogic":"single","licenses":["EULA"],"desc":"This port uses the cpuctl(4) microcode update facility to keep your Intel\nprocessor's firmware up-to-date.\n\nUpdating your microcode can help to mitigate certain potential security\nvulnerabilities in CPUs as well as address certain functional issues that could,\nfor example, result in unpredictable system behavior such as hangs, crashes,\nunexpected reboots, data errors, etc.","categories":["sysutils"],"options":{"RC":"off","SPLIT":"on"},"annotations":{"cpe":"cpe:2.3:o:intel:microcode:20260227:::::freebsd14:x64"},"files":{"/boot/firmware/intel-ucode.bin":"1$e6683c4975237fdc576d9445684b2ac1cc389f5ca2ff137d02893fdd2fec0580","/usr/local/share/cpucontrol/06-03-02.00":"1$3d76ee72e8b8ac4a733a7fe55b027c24278c444f1cbc5d78b5c84199471120cf","/usr/local/share/cpucontrol/06-05-00.01":"1$f704b7faed3abb00b7922717df1494faafaf413a8f15a1f31217a98f1071f398","/usr/local/share/cpucontrol/06-05-00.02":"1$8576fea5563479be0e942ebbdc60a762ef0a43c0b2d0ca799726028bf8d3a13a","/usr/local/share/cpucontrol/06-05-00.08":"1$86d954fdb5b9f35a678490f549a0995c7b10581bd8674f7172f268d71b5fe420","/usr/local/share/cpucontrol/06-05-01.01":"1$3a1537b32b1a67d350647df025b2c10382544a051c709f0ed04c8eacce4a2306","/usr/local/share/cpucontrol/06-05-02.01":"1$5ff8ce3d5a3025bdea86d7ec99b17036f7bc329a6f0b5aaa29a0e0953987ed46","/usr/local/share/cpucontrol/06-05-02.02":"1$6ec0197dcc4abf12b2eeb5e712596fc9b845bcc327dafad963b9199aa4c14663","/usr/local/share/cpucontrol/06-05-02.04":"1$e1c59fff7cd7a5cb8efa17258ffed56b9794d2e3c34312b71eacea5ce4b0acfb","/usr/local/share/cpucontrol/06-05-03.01":"1$51a947cdef3b77d73dab814d818f4413ea28e8850970c1781f15a8848143163a","/usr/local/share/cpucontrol/06-05-03.02":"1$bec83d807f3a16b782f6c3478ff993257c2d5ad0a9ec76b95ed1d6ace83ea074","/usr/local/share/cpucontrol/06-05-03.04":"1$0988dcefd5beb15345bb97de97d674e2c7f364146d8d0f6efc8ee6ac7d2eb1ef","/usr/local/share/cpucontrol/06-05-03.08":"1$f8bfc53f6f68c6a53d1c18637a91a46f604cbc84e19202c378794b7df00dbe69","/usr/local/share/cpucontrol/06-06-00.01":"1$a662324e98d9febfdb2f874c6fb689b7027dea05cb9b4b101ac9bbace691d1b5","/usr/local/share/cpucontrol/06-06-05.10":"1$05ae5b2064a86b440655c8ad1bab523f29ad5b00754a372504c02d97cd145a52","/usr/local/share/cpucontrol/06-06-0a.02":"1$3ac4c42baa353de31b9faa6b70e459a07d472e03147d5267c2b5e5a60cb84986","/usr/local/share/cpucontrol/06-06-0a.08":"1$14731c4346d0eef14afe84893580dc5152cd340b7985ff8cb9a0197d2af48c35","/usr/local/share/cpucontrol/06-06-0a.20":"1$41f0bdd7f0b536d2dc4a61bf478953bfe59de9e2da196671f95060fe4a1008a9","/usr/local/share/cpucontrol/06-06-0d.02":"1$e14cf30ec8201f0b0dea8fb8c4631e94476f86122e17c75c843e596a8ccbd838","/usr/local/share/cpucontrol/06-06-0d.08":"1$d600507ec32fceeb27737ff449cfd9b2450b88eb48f50b02f1abf6eb967b4ddb","/usr/local/share/cpucontrol/06-06-0d.20":"1$902a81d7f7ab005cd9ca5db067c045b0941b3ae2abc040942748821b7396ba4f","/usr/local/share/cpucontrol/06-07-01.04":"1$0248cd7a9a2093bcde3bb2e14ac99f98336a89fb63faf234af31a43739ef8384","/usr/local/share/cpucontrol/06-07-02.04":"1$dd39eb584d99f1389b65e061c4799d2826479adfa16d2b11b6a1c87dc0fca16c","/usr/local/share/cpucontrol/06-07-03.04":"1$f05729bb4f1c22fea672ab6a5ea7d3ff319b1d4e7919d9c7900fd2e4c66cdf62","/usr/local/share/cpucontrol/06-08-01.01":"1$0bb6dc30ea7f8761f3cbd7ee5e329e4ac93de9f5cb5e2f124837c7880352f7ba","/usr/local/share/cpucontrol/06-08-01.04":"1$168f9e17d1b93e7d15372380e9edb689ecceafaa72cfbaa69423de2f750216cd","/usr/local/share/cpucontrol/06-08-01.08":"1$265fb3fef41166e7c3bb85e1c17263a7e6d2177a209197a7d31f6084c5c21293","/usr/local/share/cpucontrol/06-08-01.10":"1$6f9c3bc628b5094720ea84d6b6f2f9df4400c777fd019e668473df083bcd0b56","/usr/local/share/cpucontrol/06-08-01.20":"1$81426a5ce6787fb8e589eb694127d17998fd6004f34193b749c18bedbe977cf3","/usr/local/share/cpucontrol/06-08-03.08":"1$1d6873432651b45e5389079fe18911e22f3dd8f75ae4d34fe2d05943e6f889bd","/usr/local/share/cpucontrol/06-08-03.20":"1$436b6ea7ef69563ee0a2538ef6e9255ffb7d5d047ce79e68f514c0316bd5cfbb","/usr/local/share/cpucontrol/06-08-06.01":"1$0c2c536b057612af8308f271b464c5d3b5b14f80c5e17067b1808537d7683413","/usr/local/share/cpucontrol/06-08-06.02":"1$de952e29e0143195c99b8cc93d940034462d71dccc3c40e5572492e8ac09ef6b","/usr/local/share/cpucontrol/06-08-06.04":"1$3f3659fa6fd3ac69531a90bba3ae3fa0bf98446ec07bb0c26f89ba25a8a14600","/usr/local/share/cpucontrol/06-08-06.10":"1$e22ccce25d18926682915a6e0d2796eb287f06b6b09fb843703c3a8bb063414b","/usr/local/share/cpucontrol/06-08-06.80":"1$c7a0fbb1467eb5207cbaca335af3126ea8243fc575d9ec6ed71c5b3c3100234d","/usr/local/share/cpucontrol/06-08-0a.10":"1$072d67a373c370a82cd54978a3696455f8dcee12f61244de001fdeca4a82c38e","/usr/local/share/cpucontrol/06-08-0a.20":"1$7591764567657cb5eb55df3e728b2d6d88ec580e3bddcbaa2c1604c123bad791","/usr/local/share/cpucontrol/06-08-0a.80":"1$bcc0e301a4885016e033b7435eadfd835f75896fb41cd575e2693d5d58bb2004","/usr/local/share/cpucontrol/06-09-05.10":"1$d19151366ba1670ab2d311d4f0568d9e50f1ef58a565e993cb6ce478bb9dd622","/usr/local/share/cpucontrol/06-09-05.20":"1$345fc12f70f6142e2fe04bf13188e71d27065db5a52dfe1e1fe38129a1a75098","/usr/local/share/cpucontrol/06-09-05.80":"1$638da4b9da7b3ce4e08f4175aa71f624386bda028d3646283264510e239f1ac8","/usr/local/share/cpucontrol/06-0a-00.04":"1$7aaf89aefb2156cca5eae0fe604219d7887b574c76178536d2ac089cc80dd8bb","/usr/local/share/cpucontrol/06-0a-01.04":"1$0a2a00d8d1a32746118c99ba403788c04f53092c480aa77c4b8b5264d90c0d95","/usr/local/share/cpucontrol/06-0b-01.10":"1$993f1b58105445652773f647f2f6f42b6b015b74aa96c8106f7648285004a47d","/usr/local/share/cpucontrol/06-0b-01.20":"1$febabff2bdcb0645fd39367c20e14a01eff6d445da8b051d7a20279306e2c11f","/usr/local/share/cpucontrol/06-0b-04.10":"1$e024a8e7806b399d530e80fc943a1be1413d1f5d26bc27967992f847359a0b8b","/usr/local/share/cpucontrol/06-0b-04.20":"1$67cd36e6935b9178fecf3c2ed14d22826c0842f2db61ad76f62ba6d33bf8af07","/usr/local/share/cpucontrol/06-0d-06.20":"1$6d6b523f4ef84e8551298e6f33ff6816f5dd6f1d36f30d4ca6bdab542ccd4351","/usr/local/share/cpucontrol/06-0e-08.20":"1$2abd5148b6a5c1649e5c4ac2c93177e00954e9c702762e329e03231fd396832a","/usr/local/share/cpucontrol/06-0e-0c.20":"1$23348b05b89cf2b73b190a8712f5893f923217e3c1d1b9c91edbea6d01367b67","/usr/local/share/cpucontrol/06-0e-0c.80":"1$5dd067f4eb8aa9a54c8a77da0909061abed6517e0634241942b6177cb7ae59f2","/usr/local/share/cpucontrol/06-0f-02.01":"1$3e3c64efbb868c135b30020c64a8194142c3d794bdeb8cae4d3abb29460739c7","/usr/local/share/cpucontrol/06-0f-02.20":"1$edcffd60a66cbba93708b956ec94f50c1508c1d24193c500affd8ac0b1944ae2","/usr/local/share/cpucontrol/06-0f-06.01":"1$46581492676f903f37ba3ec4d191c7a679486f526b5164b19637440ae60bcf1b","/usr/local/share/cpucontrol/06-0f-06.04":"1$4b19a61e405694d4c8bc621faa1da36befda054820824bf295c044ca7244f2e8","/usr/local/share/cpucontrol/06-0f-06.20":"1$9194bf2732177d8204485b17b097e18609b4946b269ad76c98264f4d39a8a3e1","/usr/local/share/cpucontrol/06-0f-07.10":"1$940d0d26c405572e8d03aaeb409c59404b4defcb25475b0c7b3ffac94979e382","/usr/local/share/cpucontrol/06-0f-07.40":"1$2e101837d2111aeda8703e78d4867ed6f88e1705337839241dd6560e9883bdc3","/usr/local/share/cpucontrol/06-0f-0a.80":"1$02e202a3894df3a07e5115756949f051660ca477105b39df5c5a008bcc2f0abd","/usr/local/share/cpucontrol/06-0f-0b.01":"1$82dd0816450c09b2640bf019c6e470d51889c94670c9f9060789daa8add2ee16","/usr/local/share/cpucontrol/06-0f-0b.04":"1$c678b04fa6daace0128be2de7844d17379b7b673173ff8aef01d29a85fe3ce08","/usr/local/share/cpucontrol/06-0f-0b.08":"1$8f1cfb37ec54066093808f8c13a91353309d917918100da0365c9c2b5be780e2","/usr/local/share/cpucontrol/06-0f-0b.10":"1$43fcc19add8c549f6b1f97bbe4feeebf045853968153f9176a04a940f111fbb5","/usr/local/share/cpucontrol/06-0f-0b.20":"1$25e04996d9acb655542934f10cdfb9c8e442f4465ec1ef791b49160d4f3ec756","/usr/local/share/cpucontrol/06-0f-0b.40":"1$041164ae555678f767e4eb4757a64ac80ff1a5dbec71308a0f938eb81c9aa2ef","/usr/local/share/cpucontrol/06-0f-0b.80":"1$fdfa184198ecd7e30d7a92488a72cbfdbf1166f716ce78137f6f1acd51b7a347","/usr/local/share/cpucontrol/06-0f-0d.01":"1$481f6d34ad2ab877be5a40c27298b0820ca1b9b9851db53e0bc38d882628bcea","/usr/local/share/cpucontrol/06-0f-0d.20":"1$4da3b8ef86d548c3fa9c9a167aaee474973478643f545ddf5b035cd9fedc8701","/usr/local/share/cpucontrol/06-0f-0d.80":"1$6cf08e6790d802724eedea00b6f87e83f0d047bbd4b65e413ff2206e77de3667","/usr/local/share/cpucontrol/06-16-01.01":"1$5b71678d0b1bd27d799930e7c5618f8b41bf14abd9a42efda6763f3371134200","/usr/local/share/cpucontrol/06-16-01.02":"1$55bce63e776a5f88332b0ba6000e87cba55de924e5c519ad72b7f0fe70056f64","/usr/local/share/cpucontrol/06-16-01.80":"1$18193c2618dc2a8edd8d53e71ee0c61d9a60b69598562c6f5c2bb6a19ec8b545","/usr/local/share/cpucontrol/06-17-06.01":"1$a28e742a6d7a70da1dffa143b1ca258da49404de16afa5292f1bff14d11156ef","/usr/local/share/cpucontrol/06-17-06.04":"1$2e6af7964f7a483652489bbc3e6f62a6b8314d3e7872b81f8829130e06beac00","/usr/local/share/cpucontrol/06-17-06.10":"1$e321cfaa2cb10ea0967a23e988d8e50ca8f236498a42993f43de01f020b9a75f","/usr/local/share/cpucontrol/06-17-06.40":"1$fd5f6269d6c4b1143c237ea116818cd9ec67bd6ce158c329e2365952c316a766","/usr/local/share/cpucontrol/06-17-06.80":"1$f0b02f712f91a3118c5bbc6fe6bd19bc7424cc35acbe10e126f44a88fa5fa317","/usr/local/share/cpucontrol/06-17-07.10":"1$dd0150e636ff0d97f5f841c9da0b6e46654dab14987a5d611db386ac277b68d6","/usr/local/share/cpucontrol/06-17-0a.11":"1$8236fb117a3eb81bb8ef3cb8ff465cf76f983442a3aa1d9eb1d3971fdc202943","/usr/local/share/cpucontrol/06-17-0a.44":"1$4e079b560ff5313f2bfa97454ef1d0118868aba428c681605769d222bd181e50","/usr/local/share/cpucontrol/06-17-0a.a0":"1$ab91564d2925967df8aaa20bc55ab8c893ecc0312365f5d51f7c1abd95098d24","/usr/local/share/cpucontrol/06-1a-04.03":"1$53492c2bbc2ea3ba10eca377f24399c8f2fea6fc36305a7259f24f6fc324137e","/usr/local/share/cpucontrol/06-1a-05.03":"1$ce1c8248066c2126d509ad7c68168586280c69332f06629da02a678b9e9a4ba7","/usr/local/share/cpucontrol/06-1c-02.01":"1$6c8036106509ea5c56188e3f697f6f076c228419302889763311e5990b228825","/usr/local/share/cpucontrol/06-1c-02.04":"1$55c65b69d2e3e557fc346ea8acdfaeb6415741f2ca4a90aef91b8db39aaebe3f","/usr/local/share/cpucontrol/06-1c-02.08":"1$4b16b91610b6bc69e52834fb7e5cd962a9a8cd50b355e0de10036f716e36208d","/usr/local/share/cpucontrol/06-1c-0a.01":"1$b47816dfb926104a7e457f6148912317dc8fb97041bb5bbdee947a1e6f260371","/usr/local/share/cpucontrol/06-1c-0a.04":"1$2ff4f965953a4ff9402776c48dd2bf3a3a9b60eea635c93415d9cd2966008417","/usr/local/share/cpucontrol/06-1c-0a.08":"1$873895b0d31aadacc78aa9a27fbb072a3f7dbecc166a9714ee99c946abcfa3ff","/usr/local/share/cpucontrol/06-1c-0a.10":"1$a7024d7134b02baf0e0e4607c5cc6339bd8ea576862c80205c36b8c18c97a2e6","/usr/local/share/cpucontrol/06-1d-01.08":"1$c76253b2ba998cb97f35f871c5202a887ba3609d1ae6c49eeba938a6c439cd39","/usr/local/share/cpucontrol/06-1e-05.13":"1$0f74ee09443587e736f7c86a526544e59baed17f20f0dfab7f8183ccdca96388","/usr/local/share/cpucontrol/06-25-02.12":"1$1fb8bb2e4a052706f31c82360c745645b56173276dbc8e0bb9463458b0239600","/usr/local/share/cpucontrol/06-25-05.92":"1$4833aceb498cd019f8f9e5c6cdb77034d05e3f5053946ab447a640b52de8564b","/usr/local/share/cpucontrol/06-26-01.01":"1$f23c24b0a152c9cc107f8b76e8d192e86a3553e2f628364d058eb9dc512667ce","/usr/local/share/cpucontrol/06-26-01.02":"1$df76c1ff5ecd0587617aece3ddaa33e6b48d30701f9e7f694ea0e5b748de7414","/usr/local/share/cpucontrol/06-2a-07.12":"1$fb8db8e9c3f37c3cec6e013e77c89aef33a101ec2a37dd6101ceac9a89ec32ab","/usr/local/share/cpucontrol/06-2c-02.03":"1$6d39860414c836e949761ae152c8cf53da9519ffc0636efbacd5800eb3fa6cf8","/usr/local/share/cpucontrol/06-2d-06.6d":"1$dfd62187f3a84b9682b82c0237d51533be6bfbb11e1602e616b155dd46c74dc8","/usr/local/share/cpucontrol/06-2d-07.6d":"1$8e90c594b0fe2360c0b42b10e74c1210773f2ec1259075c373a47ed6f14f5669","/usr/local/share/cpucontrol/06-2e-06.04":"1$2acd1587447ddb558f1d2d08f797930cbbeef54adeab29c1ff045f3634d89883","/usr/local/share/cpucontrol/06-2f-02.05":"1$e0677d50704ae75e00606ccd3fe8ee5d824b8e045a7d53cfde367b2db37cc001","/usr/local/share/cpucontrol/06-37-08.02":"1$8558215976ac63f60f2ac7859d2c1f8c2989de35f81e40bb7da9ecd04513dcdc","/usr/local/share/cpucontrol/06-37-08.0c":"1$97066a6378f14530d597fbcd9c9201d627ba4625a071f03a06e3dbff2ce85b49","/usr/local/share/cpucontrol/06-37-09.0f":"1$a4bf916f7d98981d3835b4e9d4803ed8c74c408119568bdaf5dd83d09ee21605","/usr/local/share/cpucontrol/06-3a-09.12":"1$ca2fa408851d20e4f9993f5a3b60d41f17a6ae3b8c4bfa0b730fd162abaea885","/usr/local/share/cpucontrol/06-3c-03.32":"1$2af41bcbe3412aec07c720e2be6ebdd092adaf8a7635efef6c5480a0b53a185d","/usr/local/share/cpucontrol/06-3d-04.c0":"1$33c8eb1ab12d4d901711c91a0858937edb811c40358d2fd7ce502bb5e01149eb","/usr/local/share/cpucontrol/06-3e-04.ed":"1$6fcbd4b05b272fdd5be168cdf1cec0eb7c883d14d2ff96d90ab6f034bd18de2f","/usr/local/share/cpucontrol/06-3e-06.ed":"1$eccff59e7ccf333e370c1b31d44b1b03578c9d7ab3af9aff32bea7c0ea086762","/usr/local/share/cpucontrol/06-3e-07.ed":"1$a23b284827934dbf0afbe38d7e7f2bb32855121aacee286749cd93bc0bcfadf6","/usr/local/share/cpucontrol/06-3f-02.6f":"1$78021d5f3de826d80061317bcba9fbaa17c813626fcf3cb4b19a2f1cfa2dad52","/usr/local/share/cpucontrol/06-3f-04.80":"1$eeeb4225736331f4bbf0276c9bb4f4ae2b28fdce8308171244f5341c08e524b4","/usr/local/share/cpucontrol/06-45-01.72":"1$b65ad0fdb9e8f40e252e8fb2398124a1db3d2f234a0e146f531d2d555466d9e8","/usr/local/share/cpucontrol/06-46-01.32":"1$dbe695d3c75656648e3fad413ba40ec028d8eee6a21689628dd3bbbfab41911a","/usr/local/share/cpucontrol/06-47-01.22":"1$dce369d38787c633fa96050c668be7295852f1ec730863bdecfaf25b0e30d6e6","/usr/local/share/cpucontrol/06-4c-03.01":"1$bc42b04ed3ae6d2c2f954c16347aa08283014acc7e9fbf801c2690dc42c81038","/usr/local/share/cpucontrol/06-4c-04.01":"1$11045e50e2a617def5c2f6227cd6eaf0a565f0a5772b8da2422b432d77ed6a0f","/usr/local/share/cpucontrol/06-4d-08.01":"1$c3787d95a1e0f0609c991b8c79093edaac16b0fd76e3530cbcc6dd4f5187221a","/usr/local/share/cpucontrol/06-4e-03.c0":"1$2bbc1de08a66818f3f30f91e398d4ce0653a0a135954d4b12a9fe24d4da90819","/usr/local/share/cpucontrol/06-55-03.97":"1$cb6a0b69128ef381d007468e8c5bdfa9f89e4f1538449bb9f9e5b0e79ee94727","/usr/local/share/cpucontrol/06-55-04.b7":"1$b75a5431e28a23dc2d663bc19fe5f24541d85b6e142e6583a8f25dd95190003d","/usr/local/share/cpucontrol/06-55-05.b7":"1$ad42a775379c6051a11ea8077bb475aec6d74712296ccdc3b7bac1a0f209ca5c","/usr/local/share/cpucontrol/06-55-07.bf":"1$7eac096f672ed5e6736334630eb55f70e752ebcb8f8c60268bd58bacbfd4d474","/usr/local/share/cpucontrol/06-55-0b.bf":"1$61a2b7c8e2d9e982f6e7318bcccf76568d2f781e00e2d92ba9145a3135bfec87","/usr/local/share/cpucontrol/06-56-02.10":"1$40804ca9e17addf3b4a894f708fb87a066952f2a602872ba07fec4b61aee6d2a","/usr/local/share/cpucontrol/06-56-03.10":"1$1c43dfa1d454e5dbcb2153ba3f5a0d9f79a6fa1d64e95e963a06706b1c71b5ea","/usr/local/share/cpucontrol/06-56-04.10":"1$d0cd5a6e8a1557475384337698bec98ca31a50a797bba0ef07c1626a22f29aa0","/usr/local/share/cpucontrol/06-56-05.10":"1$ab75a3b550b1ba4249b998ef7fed95b1091abba96cbe06aa3e289366fdfd8682","/usr/local/share/cpucontrol/06-5c-02.01":"1$5c613a6765d59c41a400f8450f3347ee4f6a919a9f8568747a4fde9b83b3f6f1","/usr/local/share/cpucontrol/06-5c-09.03":"1$a7e990163be8b269384037f00f56cadd2604588b888c49e7b0b43baa38be0b21","/usr/local/share/cpucontrol/06-5c-0a.03":"1$52acbee81c6dc78c2cb1515a650064ab51800af137b11d4d6ef0433320c4d2ad","/usr/local/share/cpucontrol/06-5e-03.36":"1$15e96637a89012390e2c254effad092fc9535912b709ffa316069fc5606efb65","/usr/local/share/cpucontrol/06-5f-01.01":"1$a61ab250e94a53c5acd8da6cbc33fa2bcae040c9d9222a09c7cec7b694968322","/usr/local/share/cpucontrol/06-66-03.80":"1$7b291fa54f25261e68de7d337c9c6b4fa2bbadee9dfa8d17ad1317b9e63f4793","/usr/local/share/cpucontrol/06-6a-05.87":"1$ec16b02ea163e8fb781b3b61b7bc58b416a7270178353a0e7aa8be6fd20ffc25","/usr/local/share/cpucontrol/06-6a-06.87":"1$b330e6703e1653e0467fbf3971abffd366a5b31bd726f3b41fdaa4467277b5bd","/usr/local/share/cpucontrol/06-6c-01.10":"1$cee6326d13e66f6d7bd82d49f7cdb7a5808368c7a04ecec98b80ba93c7a031b0","/usr/local/share/cpucontrol/06-7a-01.01":"1$ed98581aaaf8791d505be86f61ce4ebafd28b414ea59c32e217f6cc8c37e0d9d","/usr/local/share/cpucontrol/06-7a-08.01":"1$d37cdd957f03d92bff08d4d2607cdad7f4cd1be8229d7d2591ac9161266e393b","/usr/local/share/cpucontrol/06-7e-05.80":"1$8e6daf2171cdc41fbbd2dc5eb205880cf3db8dddec48535cccc8b6d1775c9ca0","/usr/local/share/cpucontrol/06-8a-01.10":"1$d7029d47e8ee440fe6be4ea8c044238568eadb65cbb698091dcc6f6535463e9e","/usr/local/share/cpucontrol/06-8c-01.80":"1$efe83e312b90f7fe4b8f75260087edf03e048d2f4f80caef2ef631c842714bb3","/usr/local/share/cpucontrol/06-8c-02.c2":"1$3d85590a0d1abced7f480bf95d5bfff1fc3121a1401571c9cc43960cda6beefc","/usr/local/share/cpucontrol/06-8d-01.c2":"1$20b65b22457c835ed7d71b30c0ddcf9665cdbbe1ffe307e7ce69fa7fb9066336","/usr/local/share/cpucontrol/06-8e-09.10":"1$23584cfdbd7d60051c03e77524afcb85f078bb04190dac0bd38a3bc7d1a1e5b7","/usr/local/share/cpucontrol/06-8e-09.c0":"1$84f64d30cada5a138add250b63b4edc8a136aad142df15f7c7743138f1f674dc","/usr/local/share/cpucontrol/06-8e-0a.c0":"1$368784c15e2e3538352974b8fe32a4150da09ac19d0005121c75db336d55a7c0","/usr/local/share/cpucontrol/06-8e-0b.d0":"1$97a671535d920d4e55e615b265b91016afe17b6a0e293c9a7d64d7bb6d589f86","/usr/local/share/cpucontrol/06-8e-0c.94":"1$6f60c60e426e29c872dd1d35bf9f35cac2366cb3fc9053d7622fafe1b689728b","/usr/local/share/cpucontrol/06-8f-08.10":"1$b24edaadb5bb4c0895f13dcb91988bcdf24cdad5640b7d28c735614b92338a8b","/usr/local/share/cpucontrol/06-8f-08.87":"1$c90ac6e609fc1655f84767008fd0a737d01fb79f11b199f4a281585048f07b5c","/usr/local/share/cpucontrol/06-96-01.01":"1$1771049d0db5b354e77ebe1cc063badaa8c16fd81e22707a75ec904b06db0174","/usr/local/share/cpucontrol/06-97-02.07":"1$331e26dd94309aa9419342a66f9b07e7338e9080fe8372bc1335dc670d1bb1b0","/usr/local/share/cpucontrol/06-9a-03.80":"1$176940cb2251131fbe7c64d7e8db4d9c36d26bda824d34a9f6d244d03b49999f","/usr/local/share/cpucontrol/06-9a-04.40":"1$09d20e1593cc76b1f544992785c2798d7cb239e48c2f8feac2305c76c3a77d3b","/usr/local/share/cpucontrol/06-9c-00.01":"1$2e07c2ea90c3074f68c0ba2bebf4fcf3a999ff144afcc34f1d7f0f81a9bcc2d0","/usr/local/share/cpucontrol/06-9e-09.2a":"1$ab884b0060cee11f64dafdbe0659f647d058b510274e1331322b88dd83080e6a","/usr/local/share/cpucontrol/06-9e-0a.22":"1$615aaa46ae45cd60f79d0d33b875752222f2f5e7109a1e4c523ee10c0d6b6db6","/usr/local/share/cpucontrol/06-9e-0b.02":"1$212a25b0184d783abeac7b698105553747e4abd7dc35121e5a04a5b34be02d8c","/usr/local/share/cpucontrol/06-9e-0c.22":"1$65738658537a6d201f0d94b7205e39ca4ec3f39c56fcc9a73f314214103fb9d6","/usr/local/share/cpucontrol/06-9e-0d.22":"1$976f45becb07fc6a7dcb2352b286a43cf5ccc6fab34b0b598aceb354d2b235d3","/usr/local/share/
cpucontrol/06-a5-02.20":"1$6555e891e6df43cfe9fdf3d7293158cc6107f2efeed80b55cec7ed24e307ecba","/usr/local/share/
cpucontrol/06-a5-03.22":"1$b6bf97b444e3864b624d7ce8635172b8fee48dda7a00a4d99202d0f1c0fc838c","/usr/local/share/
cpucontrol/06-a5-05.22":"1$bc9d8ee2a7981a6296f003e6a216fdf58b48ebb76be9a39719df711da6652452","/usr/local/share/
cpucontrol/06-a6-00.80":"1$acc3519096d3ad446b070b8379470dde177ea8358a159884c8db098d5c052831","/usr/local/share/
cpucontrol/06-a6-01.80":"1$092b8da46db50e4b4f9d5c1516980004d17648b6d3ddba3405dd8af9a0c9edf8","/usr/local/share/
cpucontrol/06-a7-01.02":"1$27f248efa2cba8c5c4ccdf6663c41e2f6ea28b14a165bc002584729b43121090","/usr/local/share/
cpucontrol/06-aa-04.e6":"1$776c12998c04c0309b592feb8301be7db5706ddc04c0f402ce3cfbabcb648051","/usr/local/share/
cpucontrol/06-ad-01.20":"1$d5586f5264fa9a170cd0112c2b3be44ff9f996b9e0c12d1f222fd44078d43e6b","/usr/local/share/
cpucontrol/06-ad-01.95":"1$46e2113dccad6009c9a35152325ee8a1ed6fec983bf3918c8913c0aec898808d","/usr/local/share/
cpucontrol/06-ae-01.97":"1$5df4e7d2e1071bc5d0a09175d076fa75e1cc64729993cd38683920b3570b626b","/usr/local/share/
cpucontrol/06-af-03.01":"1$e7750c3340cd45601f72bd1c04db0e87808cac5a0b9ed774df93596fb1c4ca33","/usr/local/share/
cpucontrol/06-b5-00.80":"1$136fb6f5bc9117888c0c75c7e74ddad26341f760e88e07b501410e0552e09750","/usr/local/share/
cpucontrol/06-b7-01.32":"1$e73efa954b94a0c09a63b010ed8abf82d3e714fc55dfad708f7a8a4067fe97d2","/usr/local/share/
cpucontrol/06-ba-02.e0":"1$68cc5565b794befa115da4064a2e995a048a56899d1766b450cd35f43c6c7eca","/usr/local/share/
cpucontrol/06-bd-01.80":"1$0c39bda96abf8e2f8897d39ce4aacb4a2740af2e7447abcaf2243c858c61feec","/usr/local/share/
cpucontrol/06-be-00.19":"1$93cf190f9e7bbe5361076dd5201df3d05af1be68e400c9308acb5eadbe52fb2f","/usr/local/share/
cpucontrol/06-c6-02.82":"1$4c0fa21a7b182cf1d1cbb7d98fbc16ffdcce670e7754b4bef346c15c0e7dcc02","/usr/local/share/
cpucontrol/06-cf-02.87":"1$8cb98c8dd77c634ab14c3e1c1fcca16b88b0c4f631fdd416ea2a3125dc7a1a7b","/usr/local/share/cpucontrol/0f-00-07.01":"1$bd0bc349deb5638844f69083e9a16b337ca6938181c3f8abd545d29c07a41b1c","/usr/local/share/cpucontrol/0f-00-07.02":"1$9f0add0270d432b9e3a6984a442fa0a93ebe41294447dff97f7c18bcecf86109","/usr/local/share/cpucontrol/0f-00-0a.01":"1$27832788b03eb4a669f844dd7224444fdf59b70b59fefe81e751513cb52cd174","/usr/local/share/cpucontrol/0f-00-0a.02":"1$345fd400dfeff5b28a6305b754d7b47f5dac463d062db025fbee3b0c0fe9534d","/usr/local/share/cpucontrol/0f-00-0a.04":"1$3738ec7f24c4f4c651387a1b6ab331882fb69a575d94fad0378b1474edaf437d","/usr/local/share/cpucontrol/0f-01-02.04":"1$a06ad0cd47fd29cc6dbebe6d5e853d7171cd7df298c5e67f13e40ffd7fe6e592","/usr/local/share/cpucontrol/0f-02-04.02":"1$31ca049bad719b9a7c3a304fa9672f2cfb442dfabd05944c9fd24293d6d2fd13","/usr/local/share/cpucontrol/0f-02-04.04":"1$f261e0665334264f5a50182056ebe0589371592d7f3f1094584dec03956de3d7","/usr/local/share/cpucontrol/0f-02-04.10":"1$3f92610be4248dbb9ea92c4fe535bb91748e21d550c925be27448bc1444ab3b0","/usr/local/share/cpucontrol/0f-02-05.01":"1$6ac050062b50054a9dd25eae0b2cbedc3c0b24008ffa5bbd6684582e85ffa9f6","/usr/local/share/cpucontrol/0f-02-05.02":"1$46b99cf410d81abbb555e9a046b60c1eda970b4e85ed8c7a6856514416a83e0e","/usr/local/share/cpucontrol/0f-02-05.04":"1$eb407d0c88e4083200191cf0daf473abef802bb6d5224a955beecd13e55f434c","/usr/local/share/cpucontrol/0f-02-05.10":"1$590fc4a654779e901547abee8ed7766bd45c6fc38f041de5bf8d8c7880703588","/usr/local/share/cpucontrol/0f-02-06.02":"1$56340cc81aef247113267050029a039b23d0e578d3b5a43bfbcf0d3e1388004f","/usr/local/share/cpucontrol/0f-02-07.02":"1$0f92e3764fc0ac9d762076015f09662ec5fa5fbdde187bbdbb331d4af86b6b81","/usr/local/share/cpucontrol/0f-02-07.04":"1$6fc4309f5dfbb88e30f66bd928810c42a84a26fcdfd90ea1a20c7fef29d7ff9d","/usr/local/share/cpucontrol/0f-02-07.08":"1$4691da23befb6bde3cddd05d571369ac1f40c3966e64fe6affa8ca169310e9a9","/usr/local/share/cpucontrol/0f-02-09.02":"1$cdbe1b84210ed7f3e6f18e539a49246f78e95ac459cd84ce2fa3fd6ff45d5bf0","/usr/local/share/cpucontrol/0f-02-09.04":"1$1c7000cfba95214dbf5c74d5e1255b662d7e02b7720622ddbcd090b3c2e3d381","/usr/local/share/cpucontrol/0f-02-09.08":"1$df7bf27d1b259e6a9f1885c0b9de6eeb25b06bd456fa8793f45ad91e7ebb7de4","/usr/local/share/cpucontrol/0f-03-02.0d":"1$676888bcf442195c0b3a3799cd009bdcc521fbfcfbd84798d76c9809c10a510c","/usr/local/share/cpucontrol/0f-03-03.0d":"1$5c4ad3321bdc4a7cd630533aa00c5cea07ad077e564eb9bac65ccc5ca49db5f4","/usr/local/share/cpucontrol/0f-03-04.1d":"1$503852781748569f62eb68cc847cff0f9ad72bacdd7f421d7d7b4c4613ab18a5","/usr/local/share/cpucontrol/0f-04-01.02":"1$071ece7593f6bfc2a3584bf8a5ff7db36a018eb96b491f39cc21667b3afda5d8","/usr/local/share/cpucontrol/0f-04-01.bd":"1$2c6d4f47b4e83b41663803ece1734cd2ae0a8da0c75f331279a1493699ff08cf","/usr/local/share/cpucontrol/0f-04-03.9d":"1$beaa222d3730e69d7cf9983a340e35039a2858c9e4b57d023f5eb4b7ed937a43","/usr/local/share/cpucontrol/0f-04-04.9d":"1$839e8dac30e8b97b7740261c5e581cbce2d09f88989858045565ceba391157bd","/usr/local/share/cpucontrol/0f-04-07.9d":"1$7d9a242b67331526a3633042c96b61e880cecbc327dcce574ba81707d1147eec","/usr/local/share/cpucontrol/0f-04-08.01":"1$e5f8b833c8e40991af3cbaa4d5dc221995e32e169ef8d6c2c7434c249ac6ea4d","/usr/local/share/cpucontrol/0f-04-08.02":"1$661c8a9e989cc523db2296543f78104c1df9d8cc824fdf939de208a9dbb17823","/usr/local/share/cpucontrol/0f-04-08.5f":"1$a3811718b3348e55df96a67a3cbb577ad931477b895960cdb0b8384923495a6d","/usr/local/share/cpucontrol/0f-04-09.bd":"1$96217d1ec127192263015efcde27c1aa49e56a99d401d1a656800b578f58c250","/usr/local/share/cpucontrol/0f-04-0a.5c":"1$1862ed4121df180b611025847772687167714f920454819c5a69f0b3bd45d1a6","/usr/local/share/cpucontrol/0f-04-0a.5d":"1$4f25e116c54b67742f3cd5e39cab938812242a0061bc9aebba4dd2672d0f6090","/usr/local/share/cpucontrol/0f-06-02.04":"1$fddb8c39f348deeaee062f0353ba0c52847015c1aae822366d7ae151bc3b77dd","/usr/local/share/cpucontrol/0f-06-04.01":"1$a6f1227b7b26ad51efdb04911cb75af6537f85c8968358039e6d754edc895fb7","/usr/local/share/cpucontrol/0f-06-04.34":"1$d1268c0d074c5dbf179ce7eef4748ffcf754c9a2de99e5696d925520e83778cc","/usr/local/share/cpucontrol/0f-06-05.01":"1$f7a7756629757a3a2cacd467eaaec0d1b1d33e7faf0995a96659bc3fc4b32ff1","/usr/local/share/cpucontrol/0f-06-08.22":"1$26a47493b04b770f6b45a27dd12e01a8e07c2011681d9d725ad08b3fad5fffe5","/usr/local/share/licenses/cpu-microcode-intel-20260227/EULA":"1$c6477966d1b617f4674dfb5dc7707782fe79eea8ece3f44cf969134d2a5ecebd","/usr/local/share/licenses/cpu-microcode-intel-20260227/LICENSE":"1$e5ac28ca844be0aae8fdb279c6b6aa1bb87469692f5efaba4ff487d7d73c4fa0","/usr/local/share/licenses/cpu-microcode-intel-20260227/catalog.mk":"1$30f794449b75dc92f0f4f0ec56a115190b036e0aa0f92443f6620c2c48def8dd"},"messages":[{"message":"To enable microcode updates at boot time:\ncat << EOF >> /boot/loader.conf\ncpu_microcode_load=\"YES\"\ncpu_microcode_name=\"/boot/firmware/intel-ucode.bin\"\nEOF","type":"install"}]}
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: Kets_One on May 22, 2026, 08:37:05 AM
I'll have a look at the package date for microcode later today.
The spectre-meldown tool provides identifies my EPYC 3101 CPU as: family 0x17 model 0x1 stepping 0x2 ucode 0x0 cpuid 0x800f12 pfid 0x8.
Does that look ok? What about the ucode 0x0? Is that the same as 0x8001278 truncated?

What about the failure of the manual microcode:
$ service microcode_update onestart
Updating CPU Microcode...
Re-evalulation of CPU flags Failed.

I'm at a loss here.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 22, 2026, 07:27:01 PM
Quote from: fastboot on May 14, 2026, 09:37:05 AMcpu-microcode-intel-20260227
os-cpu-microcode-intel-1.1

Well, it looks like a new pkg was made about 10d ago.
https://freebsd.pkgs.org/14/freebsd-amd64/cpu-microcode-intel-20260512~8492f4e362.pkg.html
Is it available in the opnsense repo?

I dont see a 06-9a-04.80 in the list though.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 22, 2026, 07:43:38 PM
Quote from: Kets_One on May 22, 2026, 08:37:05 AMI'll have a look at the package date for microcode later today.
The spectre-meldown tool provides identifies my EPYC 3101 CPU as: family 0x17 model 0x1 stepping 0x2 ucode 0x0 cpuid 0x800f12 pfid 0x8.
Does that look ok? What about the ucode 0x0? Is that the same as 0x8001278 truncated?

What about the failure of the manual microcode:
$ service microcode_update onestart
Updating CPU Microcode...
Re-evalulation of CPU flags Failed.

I'm at a loss here.

Well, AMD family 17 (23 dec) is in the org v14 repo as a 2025 pkg (https://pkg.freebsd.org/FreeBSD:14:amd64/latest/All/Hashed/cpu-microcode-amd-20251202~c5b8ad4d4f.pkg). I do not think 0x0 is related to the cpuid # itself.

The pkg should cover your Zen 3101 Snowy Owl cpu.
.
Grab it from your device (curl, wget, etc)

Install the pkg,
Then enable microcode updates at boot time:

cat << EOF >> /boot/loader.conf
cpu_microcode_load="YES"
cpu_microcode_name="/boot/firmware/amd-ucode.bin"
EOF

See --> https://freebsd.pkgs.org/14/freebsd-amd64/cpu-microcode-amd-20251202~c5b8ad4d4f.pkg.html

Let's see what ucode installs after boot.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 22, 2026, 08:34:34 PM
Quote from: Kets_One on May 22, 2026, 08:37:05 AMThe spectre-meldown tool provides identifies my EPYC 3101 CPU as: family 0x17 model 0x1 stepping 0x2 ucode 0x0 cpuid 0x800f12 pfid 0x8.
Does that look ok? What about the ucode 0x0? Is that the same as 0x8001278 truncated?

From looking at AMD docs, you also need to have the Platform Initialization (PI) firmware at or above 1.1.0.F, which is usually incorporated into bios/uefi, etc.

Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 23, 2026, 12:06:52 AM
So, I am not sure if it's a mistake or not. For the AMD ucode pkg the MANIFEST files say this, note what I bolded.
So the package was compiled down in May 2026, but it's version is 2025 ?? I assume you would simply see a newer rev of "20251202" pkg in repo ?

{"name":"cpu-microcode-amd","origin":"sysutils/cpu-microcode-amd","version":"20251202","comment":"AMD CPU microcode updates","maintainer":"jrm@FreeBSD.org","www":"UNKNOWN","abi":"FreeBSD:14:*","arch":"freebsd:14:*","prefix":"/usr/local","flatsize":614136,"licenselogic":"single","licenses":["EULA"],"desc":"Processor microcode updates provide bug fixes, which can be critical to\nthe security and stability of your system.  This port uses the cpuctl(4)\nmicrocode update facility to keep your AMD processor's firmware\nup-to-date.","deps":{"cpu-microcode-rc":{"origin":"sysutils/cpu-microcode-rc","version":"1.0_2"}},"categories":["sysutils"],"annotations":{"build_timestamp":"2026-05-02T02:00:01+0000","built_by":"poudriere-git-3.4.8","port_checkout_unclean":"no","port_git_hash":"ffb64ba4a0596d34072290d9ffe016f317664a1c","ports_top_checkout_unclean":"no","ports_top_git_hash":"4731beeec6f8dad167fa3b3ff8d4848aea26c2fc"},"messages":[{"message":"Refer to the cpu-microcode-rc installation notes to enable AMD microcode\nupdates.","type":"install"}]}
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: newsense on May 23, 2026, 09:09:18 AM
You've gone way too deep into the rabbit hole.

By and large OPNsense follows closely Freshports.

CPU Microcode AMD (https://www.freshports.org/?package=cpu-microcode-amd)

As long as Freshports doesn't move you'll get the same files from December 2025 repackaged for each 26.1.x release.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: Kets_One on May 23, 2026, 11:51:31 AM
Indeed it looks like im "too far down the rabbit hole", lol.
Thanks for sharing the freshport page. Indeed it seems im on the latest microcode as part of the repository.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 23, 2026, 06:28:20 PM
Quote from: newsense on May 23, 2026, 09:09:18 AMAs long as Freshports doesn't move you'll get the same files from December 2025 repackaged for each 26.1.x release.
The ucode packages from v25 to v26 are not the same, you can see that in ucode file sig diffs. Some ucode will remain the same whiles others change. When you bundle a whole bunch of small items into one package, and only a few small items change, makes it hard to know exactly what has changed even though the package date or rev has changed, etc.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: sopex on May 26, 2026, 11:07:16 AM
Quote from: fastboot on May 14, 2026, 09:37:05 AMHi @Franco,

I may have found a microcode packaging/split-file issue on OPNsense.

System:

Protectli VP6630
Intel Core i3-1215U, Alder Lake R0
coreboot 0.9.0

Is it possible that the split microcode file 06-9a-04.80 is missing from the package, so the Intel microcode plugin cannot update this CPU and keeps the firmware-provided 0x432?

Thanks!
FB

This got fixed here, it will become part of opnsense soon enough https://github.com/FreeBSD/freebsd-ports/commit/d4b93e88468975e64d6321cfc463f5fc19f46d35
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 26, 2026, 07:51:10 PM
The fixed package looks good, it now has 06-9a-04.80

Just not sure the .80 is the fix for the issue in post #1.

Manually download/install the pkg, then lets see what happens.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on May 29, 2026, 01:43:38 AM
I interesting.
For v14
https://ports.freebsd.org/cgi/ports.cgi?query=cpu&stype=all&sektion=all
shows only the 20260512_1 as an Intel ucode package

but
https://www.freshports.org/sysutils/cpu-microcode-intel/
shows _1 as the 32bit package
also shows one for amd64 (64bit x86)

but
also shows the _1 for v16 64bit

So a tad confused. Is the _1 pkg the only one?
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: fastboot on June 03, 2026, 07:18:35 AM
Quick update:

The FreeBSD fix has now been merged:

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=295351

and OPNsense has already shipped an updated cpu-microcode-intel package (20260512).

However, after upgrading and rebooting, my system still reports:

CPU microcode: no matching update found

The system is a Protectli VP6630 with an Intel i3-1215U running Dasharo/coreboot 0.9.0.

So the original FreeBSD issue was real and has been fixed upstream, but my specific Alder Lake R0 system still does not appear to receive a microcode update. I have added the new findings to the FreeBSD bug report for further investigation.

Will be interesting to see what the root cause turns out to be.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on June 04, 2026, 04:30:49 AM
We need more info.
Is the actual new pkg installed? Does the loader conf say to install the bin? What size is the ucode bin file? Is the .80 file there?
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: fastboot on June 05, 2026, 08:49:16 AM
Quote from: BrandyWine on June 04, 2026, 04:30:49 AMWe need more info.
Is the actual new pkg installed? Does the loader conf say to install the bin? What size is the ucode bin file? Is the .80 file there?

The information is already available both in this thread and in the FreeBSD bug report.

For completeness:

- cpu-microcode-intel-20260512 is installed
- cpu_microcode_load="YES" and cpu_microcode_name="/boot/firmware/intel-ucode.bin" are configured
- intel-ucode.bin exists and is 16 MB
- CPU is an i3-1215U (CPUID 06-9a-04)
- current microcode remains 0x432
- boot still reports "CPU microcode: no matching update found"

However, Joseph Mingrone pointed out that the fix discussed in PR 295351 was only included starting with cpu-microcode-intel-20260512_1.

My system is currently still on 20260512, so I haven't  actually tested the fixed package yet.

Once OPNsense ships the _1 revision, I'll test again and report back.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: meyergru on June 05, 2026, 08:59:39 AM
In that case, the patch is obviously not yet contained in the package. I know for a fact that the current version for that CPU is 0x43a under Linux:

# cat /proc/cpuinfo
...
processor       : 7
vendor_id       : GenuineIntel
cpu family      : 6
model           : 154
model name      : 12th Gen Intel(R) Core(TM) i3-1215U
stepping        : 4
microcode       : 0x43a


# dmesg | fgrep microcode
[    0.964793] microcode: Current revision: 0x0000043a
[    0.964796] microcode: Updated early from: 0x00000434

So, even if FreeBSD still has an older variant, it sure is not 0x432, which must be the initial one or one from the Protectli BIOS.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: OPNenthu on June 05, 2026, 11:37:52 PM
From: https://reviews.freebsd.org/D57046

QuoteThis affected a number of CPU families in the current release, including
Raptor Lake (06-bf-02/05/06/07, Core Gen13/Gen14), Sapphire Rapids
steppings E0-E3 (06-8f-04 through 06-8f-07), Arrow Lake-H (06-c5-02),
Panther Lake (06-cc-02/03), and others.


I guess Jasper Lake falls into this as well.  I'm seeing the same symptom on the Protectli V1410.

# dmesg | grep -i micro
[1] CPU microcode: no matching update found

# sysctl -a | grep hw.model
hw.model: Intel(R) Celeron(R) N5105 @ 2.00GHz

Thanks for the heads up.  Will keep an eye on the updates.

Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: meyergru on June 05, 2026, 11:58:54 PM
Now that is really strange:

# dmesg | grep -i microcode
[1] CPU microcode: updated from 0x1d to 0x24000026

# sysctl -a | grep hw.model
hw.model: Intel(R) Celeron(R) N5105 @ 2.00GHz


I can only imagine that your BIOS already has version 0x24000026 included. FWIW, the current package has the correct update for the N5105.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: OPNenthu on June 06, 2026, 12:14:15 AM
You're correct @meyergru:

# cpucontrol -m 0x8b /dev/cpuctl0
MSR 0x8b: 0x24000026 0x00000000

I had done an update around December last year for this one (https://protectli.com/news/coreboot-v0-9-4-for-V1000-Series/).  I guess the microcode updates aren't as frequent as I'm expecting.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on June 08, 2026, 05:28:02 AM
A bit convoluted to follow.
_1 has a last import of "new" on June 5 2026 (https://www.freshports.org/sysutils/cpu-microcode-intel/)

There seems to be two builds for 14 latest
https://ports.freebsd.org/cgi/ports.cgi?stype=pkg&query=sysutils/cpu-microcode-intel

Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on June 08, 2026, 05:36:59 AM
This is from my std install of v14.3 (not opnsense). The _1 ucode pkg is not in Quarterly yet, but it is in Latest.

(https://myimgs.org/storage/images/21387/pkg-ucode.png)


download from Latest.
curl -O https://pkg.freebsd.org/FreeBSD%3A14%3Aamd64/latest/All/Hashed/cpu-microcode-intel-20260512_1~a2a4a2e6e1.pkg
pkg install cpu-microcode-intel-20260512_1~a2a4a2e6e1.pkg

All fixed??

Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: fastboot on June 15, 2026, 03:52:20 PM
Quick update:
After upgrading to cpu-microcode-intel-20260512_1, the new split files are now present:

/usr/local/share/cpucontrol/06-9a-04.40
/usr/local/share/cpucontrol/06-9a-04.80

So the FreeBSD ucode-split fix from PR 295351 is clearly working as intended.

However, after rebooting, my system still reports: CPU microcode: no matching update found
and remains on: Microcode version: 0x432

System details:
Protectli VP6630
Dasharo (coreboot+UEFI) v0.9.0
Intel Core i3-1215U (CPUID 06-9a-04)

I have updated the FreeBSD bug report with the new findings. So the original packaging issue is fixed, but there still appears to be an additional issue affecting this specific system.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on June 16, 2026, 05:20:36 AM
Well, we can look into the .40 and .80 files using iucode_tool utility, it will show us what ucode versions exist there. What you have now may be the latest.
Or maybe the bin is missing stuff?

The tool is not on freeBSD repo, but it is on Ubuntu repo, so I will get to look at it tomorrow.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on June 17, 2026, 01:54:22 AM
All,
I downloaded the latest _1 ucode pkg, and iucode_tool pkg to my ubuntu.

Some interesting results.
I am using gemini ai for help.

I then do some more asking about the exact cpu model, ai now says that mobile cpu is a pf_mask 0x80, not the 0x40 file.
Hmmmmmm.

Ok, so i turn the tool onto the 40 and 80 and bin files. All files indeed handle the 06-9a-04 (cpuid) but have different platform ID's , 6 for 0x40 and 7 for 0x80.

The 0x40 only has ucode 2025-07-10 rev 0x000c (single cpuid)
The 0x80 has ucode 2025-10-12 rev 0x043b (which covers two cpuid's)


So, need to verify if the info found in early posts was correct or not, mobile cpu is x80(pf_mask decimal 7) or a x40(pf_mask decimal 6).

Or, the actual cpu is a real 0x40 (not a mobile cpu), but this would not make sense since the installed is a 0x432.

I would start looking at actual cpu make/model/masks, etc etc. From there I would suspect the bios/uefi is blocking cpucontrol?

To be sure what cpu fusing you have (mask 7 or 6), need to read  IA32_PLATFORM_ID

To read IA32_PLATFORM_ID, ....... there's a way with cpuctl klm ........ stay tuned...

ok, update:
if this klm is not there then you need to copy it over from a reg bsd 14.3 OS.
example:
kldload cpuctl
ls /dev/cpuctl*
cpucontrol -m 0x17 /dev/cpuctl0

This will print something like:
MSR 0x17: high=0x00000000 low=0x10000000

make script and run it
#!/usr/local/bin/bash
output=$(cpucontrol -m 0x17 /dev/cpuctl0)
high=$(echo "$output" | awk -F' ' '{for(i=1;i<=NF;i++) if($i ~ /high=/) print $i}' | cut -d= -f2)
low=$(echo "$output" | awk -F' ' '{for(i=1;i<=NF;i++) if($i ~ /low=/) print $i}' | cut -d= -f2)
value=$(( (high << 32) | low ))
platform_id=$(( (value >> 52) & 7 ))
echo "$platform_id"

The final output is a digit 0-7





 


Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: fastboot on June 17, 2026, 08:27:25 AM
Hi,

I checked IA32_PLATFORM_ID:

cpucontrol -m 0x17 /dev/cpuctl0
MSR 0x17: 0x001c0000 0x00000000

Using bits 52:50:

(0x001c000000000000 >> 50) & 7 = 7

So this CPU appears to have platform ID 7, which corresponds to platform mask 0x80.

That means the relevant file should be 06-9a-04.80, not .40.

The .80 file is now present after cpu-microcode-intel-20260512_1, but the system still stays on microcode 0x432 and reports:

CPU microcode: no matching update found
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: Patrick M. Hausen on June 17, 2026, 09:56:05 AM
Are you sure there is a microcode update applicable to your CPU? Is there any way to check this with e.g. Intel docs?
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: fastboot on June 17, 2026, 09:59:24 AM
Quote from: Patrick M. Hausen on June 17, 2026, 09:56:05 AMAre you sure there is a microcode update applicable to your CPU? Is there any way to check this with e.g. Intel docs?


I do not have Intel documentation directly mapping revisions to this specific CPU.

However, there is fairly strong evidence that newer microcode exists for CPUID 06-9a-04:

- Linux systems with the same CPU (Intel i3-1215U) have been observed running microcode 0x43a.
- My system remains on 0x432.
- After upgrading to cpu-microcode-intel-20260512_1, the package now provides both 06-9a-04.40 and 06-9a-04.80 split files.
- Reading IA32_PLATFORM_ID yields platform ID 7, which appears to correspond to platform mask 0x80.

For reference:

# cpucontrol -m 0x17 /dev/cpuctl0
MSR 0x17: 0x001c0000 0x00000000

which decodes to platform ID 7.

So at this point there seems to be strong evidence that a newer microcode should be applicable to this CPU, although I have not yet found Intel documentation explicitly confirming the exact revision mapping.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: Patrick M. Hausen on June 17, 2026, 10:20:01 AM
Quote from: fastboot on June 17, 2026, 09:59:24 AMHowever, there is fairly strong evidence that newer microcode exists for CPUID 06-9a-04:
[...]

OK. That's all I was asking. :-)
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on June 17, 2026, 07:05:19 PM
I agree with fastboot.
Everything points to cpu variant fusing ID 7 (0x80 mask)

The iucode testing I did shows the newer rev code for this cpu(ID 7). It's listed in the bin and in the .80 file.

Here's some new info, please verify.
According to some docs the klm cpuctl needs to be loaded BEFORE a microcode can be installed by cpucontrol utility.

1) boot normally, try kldstat | grep cpuctl , is that klm loaded?
1a) if that klm is not loaded, then kldload cpuctl (it may not actually be loaded at boot time, or in time for cpucontrol)
2) then try cpucontrol -u /dev/cpuctl0 /boot/firmware/intel-ucode.bin
3) then verify it installed on that cpu
cpucontrol -m 0x8B /dev/cpuctl0
expecting to see MSR 0x8B: 0x00000000 0x0000043b
microcode revision = 0x043b

remember, you have /dev/cpuctl0 and /dev/cpuctl1

If this manual process fails, then something else is preventing the install of the code onto the device, bios/uefi is likely culprit.
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on June 17, 2026, 07:18:41 PM
Quote from: fastboot on June 17, 2026, 09:59:24 AMalthough I have not yet found Intel documentation explicitly confirming the exact revision mapping.

100% Intel has it. meyergru was right, that cpu is a 0x80. I was likely provided bad info for the mapping of desktop vs mobile variant (see below).
https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/commit/b24397c3611f5b0a7ccb3071df99ba596721d82b#diff-1dfe853ac13a3d80cb5ef06b3c030342fb367f6f6ad6bdb2328e48c47ec16e08

(https://myimgs.org/storage/images/21511/intelucode.png)

Apparently, the i3-1215U is a "mobile" cpu package, period. However, the fusing is different, notice they call the 0x80 the "desktop" fusing and the 0x40 is the "mobile" fusing.

(for this i3-1215U)
mask = "package"/"fusing"
0x40 = mobile/mobile
0x80 = mobile/desktop

/////////////////////////////////////////
Why there are multiple platform IDs (.40 vs .80)
From Intel microcode layout:
The same CPU model (06-9A-04)
can run in different platform configurations
selected via MSR IA32_PLATFORM_ID (0x17)

So Intel splits microcode into:

Platform ID mask   Meaning
0x40                          mobile / low-power configuration
0x80                          desktop / higher-power configuration

///////////////////////////////////////

A good read
https://www.intel.com/content/www/us/en/developer/articles/technical/software-security-guidance/best-practices/microcode-update-guidance.html
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on June 17, 2026, 08:24:53 PM
Some more reading about alder lake with bios/uefi with freeBSD.
loader.conf may be too early to try and push a ucode update.

as a test, remove the load entries from loader.conf (or change to cpu_microcode_load="NO")

rc.local
#!/bin/sh
sleep 10
/usr/sbin/cpucontrol -m /dev/cpuctl0 /boot/firmware/intel-ucode.bin
/usr/sbin/cpucontrol -m /dev/cpuctl1 /boot/firmware/intel-ucode.bin

chmod +x /etc/rc.local
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: fastboot on June 19, 2026, 08:22:49 AM
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=295351
Quote from: BrandyWine on June 17, 2026, 08:24:53 PMSome more reading about alder lake with bios/uefi with freeBSD.
loader.conf may be too early to try and push a ucode update.

as a test, remove the load entries from loader.conf (or change to cpu_microcode_load="NO")

rc.local
#!/bin/sh
sleep 10
/usr/sbin/cpucontrol -m /dev/cpuctl0 /boot/firmware/intel-ucode.bin
/usr/sbin/cpucontrol -m /dev/cpuctl1 /boot/firmware/intel-ucode.bin

chmod +x /etc/rc.local


Thanks for looking into it.

The IA32_PLATFORM_ID result seems to confirm that 0x80 is indeed the relevant variant for this CPU, which was very helpful.

As for the manual loading tests, I'd rather wait for feedback from the FreeBSD side first. This is a production firewall and microcode loading happens very early in the boot process, so I'm not particularly eager to start experimenting with manual updates, loader changes or alternative loading paths without a recommendation from the maintainer of the FreeBSD microcode package.

At this point the original packaging issue is fixed, the correct .80 file is present, and the remaining question seems to be why the update is still not being applied on this specific platform. I might also get in touch with Protectli, as usually their support is superb.

Ref: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=295351
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on June 20, 2026, 08:35:14 PM
Production firewall?
Then schedule a maintenance window and run the loading from rc.local.
We're only talking about reboot times.
If the manual loading works with rc.local, then it's a ucode timing issue, leave it this way for now.
If the manual loading fails then it's something else more non-trivial.
If the manual test fails, just chmod -x rc.local and change loader.conf cpu_microcode_load back to "YES", then wait for support.

But let's clarify where to put a boot script, OPNsense is a bit "odd".
https://docs.opnsense.org/development/backend/autorun.html

stick the rc.local (or whatever you name it) in the "early" directory. I believe the daemon runs them per #, so name script 50-rc.local, etc.
 /usr/local/etc/rc.syshook.d/early/
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: fastboot on June 21, 2026, 10:11:39 AM
Thanks for the suggestion.

I understand the reasoning behind the test, but there are a couple of reasons why I'm hesitant to try it on this particular system.

First, I am not planning to risk any outage, nor am I willing to accept one at this point. While a reboot itself is not a major issue, the proposed test involves changing the microcode loading path and boot behaviour rather than simply observing the existing system state.

Second, the original issue I reported was a packaging problem in FreeBSD. That issue has now been confirmed and fixed upstream. The remaining question is why this specific platform still does not receive a microcode update even though:

- the correct 06-9a-04.80 split file is now present
- IA32_PLATFORM_ID indicates platform ID 7 (0x80)
- newer microcode revisions appear to exist for this CPU family

At this point I'm not yet convinced that the root cause is a timing issue. The current evidence only shows that the microcode is not being applied, not why.

Before testing alternative loading mechanisms, I would prefer feedback from the FreeBSD maintainer of the microcode package. If there is a specific diagnostic procedure recommended from the FreeBSD side, I'll be happy to follow it.

For now I'd rather avoid changing the microcode loading mechanism on a production system and potentially introducing a second variable while the original issue is still under investigation by the maintainer. => See the Bug Report
Title: Re: cpu-microcode-intel: no matching update found on Intel Core i3-1215U
Post by: BrandyWine on June 22, 2026, 01:22:20 AM
Well,
Try a manual install. Does it take or fail?

I think early ucode loads can be blocked by a bios/eufi ucode process because the 1st loading was still in ioctl which is a kernel operation, and loader.conf was blocked at that point. 100% possible.