This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Author: tihmstar <[email protected]> | |
| Date: Fri Sep 19 09:39:17 2025 +0200 | |
| enable pvh dom0 to use tpm2 in acpi tables | |
| diff --git a/xen/arch/x86/hvm/dom0_build.c b/xen/arch/x86/hvm/dom0_build.c | |
| index 7551cbe167..509a8a61d3 100644 | |
| --- a/xen/arch/x86/hvm/dom0_build.c | |
| +++ b/xen/arch/x86/hvm/dom0_build.c | |
| @@ -1014,7 +1014,7 @@ static bool __init pvh_acpi_table_allowed(const char *sig, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| commit cc9f67f9190d8d873ea2d10d36a3ee442680d5b4 | |
| Author: tihmstar <[email protected]> | |
| Date: Fri Aug 29 17:51:12 2025 +0200 | |
| forward amd caching info cpuid(0x8000001d) to DomU guests | |
| diff --git a/xen/arch/x86/cpu-policy.c b/xen/arch/x86/cpu-policy.c | |
| index 42dccdce52..6bff44180d 100644 | |
| --- a/xen/arch/x86/cpu-policy.c | |
| +++ b/xen/arch/x86/cpu-policy.c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| feC7TgoAAKLjn/KU8JAKFA DeviceSupportsExternalHDR | |
| XEzIXVPlevxuEIpZrMY+8A Skey | |
| fGpT09KNGDBjFXnqcVbgbw RearFacingCameraHFRCapability | |
| LeSRsiLoJCMhjn6nd6GWbQ FirmwareVersion | |
| H5HW20mJr/djc40tAehkww BasebandKeyHashInformation | |
| FkD7K642S082lnfw/ohHzg BasebandFirmwareManifestData | |
| LUy+wqFiBmou5hwM5OWbmA OceanComputeCarrierSlot | |
| fkWvcjYnYzGRhVKiBoYzgA HasPKA | |
| fu+4kyf8VcMBtgbMyJlLtg WorkoutUltraMode | |
| jxx29Cq5bGHDnkcha4y/Rw SpeakerCalibrationMiGa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <FastLED.h> | |
| /* | |
| Using "Gelid Solutions Codi6 ARGB-Controller-Kit", controll Fans and LEDS | |
| On socket PWM9, bridge LED "D" pin with the rightmost FAN pin (the one without description) | |
| Using serial (baud 115200) | |
| echo "200" > /dev/ttyUSB1 #write value 0-255 for fan speed | |
| echo "r" > /dev/ttyUSB1 #make LEDs do colorful rainbow | |
| echo "d" > /dev/ttyUSB1 #turn off LEDs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| iPhone8 15.1 19B74 | |
| iBoot: 0x1800309c0 : 000080d2 | |
| iBoot: 0x180038744 : af070094 | |
| iBoot: 0x18003a844 : 9386ff17 | |
| iBoot: 0x18001c290 : a1000058df0301eb40000054202080d2c0035fd6 | |
| iBoot: 0x18001c2a4 : 4887038001000000 | |
| iBoot: 0x1800325dc : 200080d2 | |
| iBoot: 0x18009127f : 7261316e736e3077206d6f6465 | |
| iBoot: 0x180038f04 : 1f2003d5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extern "C" | |
| void initKernRw(mach_port_t dstTask, uint64_t dstTaskAddr, uint64_t (*kread64)(uint64_t addr), void (*write_20)(uint64_t addr, const void *buf)){ | |
| KernelRW *newKrw = new KernelRW; | |
| auto p = newKrw->getPrimitivepatches(kread64,dstTaskAddr); | |
| { | |
| uint8_t buf[20]; | |
| for (int i=0; i<sizeof(buf); i+=8) { | |
| *((uint64_t*)&buf[i]) = kread64(p.where-20+8+4+i); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * The MIT License (MIT) | |
| * | |
| * Copyright (c) 2016 Pupyshev Nikita | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| * this software and associated documentation files (the "Software"), to deal in | |
| * the Software without restriction, including without limitation the rights to | |
| * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
| * the Software, and to permit persons to whom the Software is furnished to do so, |