Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Just added 3 more CPU IDs
home-assistant#3692
  • Loading branch information
MYF540 authored Jan 11, 2025
1 parent c7e21c0 commit a4568b7
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ pre-2.12 GRUB anyway.
[4] https://github.com/home-assistant/operating-system/issues/3305#issuecomment-2360633688

Signed-off-by: Jan Čermák <[email protected]>

----

Just added exceptions for Ryzen 5 2400GE, AMD Ryzen Embedded R1505G and AMD G-T56N as mentioned in [5].

[5] https://github.com/home-assistant/operating-system/issues/3692

---
grub-core/loader/efi/linux.c | 67 +++++++++++++++++++++++++++++++++++-
1 file changed, 66 insertions(+), 1 deletion(-)
Expand Down Expand Up @@ -107,7 +114,10 @@ index bfbd95a..98ac99c 100644
+ return (processor_id == 0xbfebfbff00030661 // D2xxx/N2xxx
+ || processor_id == 0xbfebfbff000106ca // D525
+ || processor_id == 0x00730f01178bfbff // AMD GX-212JC (HP t520)
+ || processor_id == 0xbfebfbff000206a7); // Intel i5-2xxx (Macbook Air A1370)
+ || processor_id == 0xbfebfbff000206a7) // Intel i5-2xxx (Macbook Air A1370)
+ || processor_id == 0x178bfbff00730f00 // AMD Ryzen 5 2400GE
+ || processor_id == 0x178bfbff00730f81 // AMD Ryzen Embedded R1505G
+ || processor_id == 0x500f01007ffffff); // AMD G-T56N
+ }
+ else
+ {
Expand Down

0 comments on commit a4568b7

Please sign in to comment.