├── .github
├── FUNDING.yml
└── workflows
│ └── pages.yml
├── .gitignore
├── .gitmodules
├── DarwinKVM.sh
├── LICENSE
├── README.md
├── docs
├── .gitignore
├── 404.md
├── CNAME
├── Gemfile
├── Gemfile.lock
├── LICENSE
├── README.md
├── _config.yml
├── _host
│ ├── 01-HardwareLimitations.md
│ ├── 02-KnowYourHardware.md
│ ├── 03-CompatibilityCharts
│ │ ├── 01-CPU.md
│ │ ├── 02-GPU
│ │ │ ├── 01-AMD.md
│ │ │ ├── 02-NVIDIA.md
│ │ │ └── index.md
│ │ └── index.md
│ └── 04-PostCheck.md
├── _hypervisor
│ ├── 00-Introduction.md
│ ├── 01-Git-Clone-Recursive.md
│ ├── 02-BIOS-Settings.md
│ ├── 03-Kernel-Parameters
│ │ ├── 01-GRUB.md
│ │ ├── 02-SysDBoot.md
│ │ └── index.md
│ ├── 04-Package-Install
│ │ ├── 01-Arch.md
│ │ ├── 02-Debian.md
│ │ ├── 03-Fedora.md
│ │ ├── 04-Nobara.md
│ │ └── index.md
│ ├── 05-Package-Configuration.md
│ ├── 06-Networking-Configuration.md
│ ├── 07-IOMMU-Viability.md
│ └── 08-Guest-Target-Decision
│ │ ├── 01-x86_64.md
│ │ ├── 02-PowerPC.md
│ │ └── index.md
├── _includes
│ ├── components
│ │ └── sidebar.html
│ ├── footer_custom.html
│ └── head_custom.html
├── _layouts
│ └── default.html
├── _opencore
│ ├── 01-Introduction.md
│ ├── 02-ImageCreation
│ │ ├── 01-Terminal
│ │ │ ├── 01-PackageInstallation.md
│ │ │ ├── 02-CreateAndManagement.md
│ │ │ └── index.md
│ │ ├── 02-DiskProvision
│ │ │ ├── 01-Image-Creation.md
│ │ │ ├── 02-Extended-Usage.md
│ │ │ └── index.md
│ │ └── index.md
│ ├── 03-ImageContents
│ │ ├── 01-OpenCorePkg
│ │ │ ├── 01-SourceOCPKG.md
│ │ │ ├── 02-ConfigurationChanges.md
│ │ │ └── index.md
│ │ ├── 02-DarwinOCPkg.md
│ │ └── index.md
│ ├── 04-FilePlacement
│ │ ├── 01-ACPI.md
│ │ ├── 02-Drivers.md
│ │ ├── 03-Kexts.md
│ │ ├── 04-Resources.md
│ │ ├── 05-Tools.md
│ │ └── index.md
│ ├── 05-ProperTreeUI.md
│ ├── 06-OpenCoreConfigurations
│ │ ├── 01-MacPro71
│ │ │ ├── 00-Introduction.md
│ │ │ ├── 01-ACPI.md
│ │ │ ├── 02-Booter.md
│ │ │ ├── 03-DeviceProperties.md
│ │ │ ├── 04-Kernel.md
│ │ │ ├── 05-Misc.md
│ │ │ ├── 06-NVRAM.md
│ │ │ ├── 07-PlatformInfo.md
│ │ │ ├── 08-UEFI.md
│ │ │ ├── 09-Complete.md
│ │ │ └── index.md
│ │ ├── 02-MacPro51
│ │ │ ├── 00-Introduction.md
│ │ │ ├── 01-ACPI.md
│ │ │ ├── 02-Booter.md
│ │ │ ├── 03-DeviceProperties.md
│ │ │ ├── 04-Kernel.md
│ │ │ ├── 05-Misc.md
│ │ │ ├── 06-NVRAM.md
│ │ │ ├── 07-PlatformInfo.md
│ │ │ ├── 08-UEFI.md
│ │ │ ├── 09-Complete.md
│ │ │ └── index.md
│ │ └── index.md
│ └── 07-FetchingInstaller
│ │ ├── 01-recoveryOS
│ │ ├── 01-Choosing-Target.md
│ │ ├── 02-Add-To-OpenCore.md
│ │ ├── 03-Example-Installation.md
│ │ └── index.md
│ │ ├── 02-Full
│ │ ├── 00-Introduction.md
│ │ └── index.md
│ │ ├── 03-PowerPC.md
│ │ └── index.md
├── _sass
│ ├── color_schemes
│ │ └── custom.scss
│ └── custom
│ │ └── setup.scss
├── _virtman
│ ├── 01-Introduction.md
│ ├── 02-VMM-First-Launch.md
│ ├── 03-XML-Importer.md
│ ├── 04-Initial-Configuration
│ │ ├── 01-MacPro71
│ │ │ ├── 01-ConfigDisplay.md
│ │ │ ├── 02-ConfigDrives.md
│ │ │ ├── 03-ConfigNIC.md
│ │ │ ├── 04-Review.md
│ │ │ └── index.md
│ │ ├── 02-MacPro51
│ │ │ ├── 01-ConfigDisplay.md
│ │ │ ├── 02-ConfigDrives.md
│ │ │ ├── 03-ConfigNIC.md
│ │ │ ├── 04-Review.md
│ │ │ └── index.md
│ │ └── index.md
│ └── 05-GPU-Passthrough
│ │ ├── 01-sGPU
│ │ ├── 01-Installation.md
│ │ ├── 02-HookModification.md
│ │ ├── 03-VirtManConf.md
│ │ ├── 04-Finish.md
│ │ └── index.md
│ │ ├── 02-dGPU
│ │ ├── 01-FindingDevIDs.md
│ │ ├── 02-KernelParameters
│ │ │ ├── 01-GRUB.md
│ │ │ ├── 02-SysDBoot.md
│ │ │ └── index.md
│ │ ├── 03-ModProbeConf.md
│ │ ├── 04-VirtManConf.md
│ │ ├── 05-Finish.md
│ │ └── index.md
│ │ └── index.md
├── _writeups
│ ├── 01-Introduction.md
│ ├── 02-Custom-Memory-Mapping
│ │ ├── 01-Prerequisites.md
│ │ ├── 02-MemoryMaps.md
│ │ ├── 03-AddingToConfig.md
│ │ └── index.md
│ ├── 03-FakeCoreCount
│ │ ├── 01-Prerequisites.md
│ │ ├── 02-XML.md
│ │ └── index.md
│ ├── 04-ThreadPinning
│ │ ├── 01-Prerequisites.md
│ │ ├── 02-XML.md
│ │ └── index.md
│ ├── 05-VirtIOThread
│ │ ├── 01-Prerequisites.md
│ │ └── index.md
│ ├── 06-MotherboardAudio
│ │ ├── 01-FindingALCLayout.md
│ │ ├── 02-AddingToVMan.md
│ │ ├── 03-AddingKext.md
│ │ ├── 04-FinalTouches.md
│ │ └── index.md
│ ├── 07-EvdevKBM
│ │ ├── 01-Prerequisites.md
│ │ ├── 02-EditingConfig.md
│ │ ├── 03-XML.md
│ │ ├── 04-VoodooPS2.md
│ │ └── index.md
│ ├── 08-USB-Mapping
│ │ ├── 01-Prerequisites.md
│ │ └── index.md
│ ├── 09-RestrictEvents
│ │ ├── 01-Prerequisites.md
│ │ └── index.md
│ ├── 10-DeviceProperties
│ │ ├── 01-Prerequisites.md
│ │ └── index.md
│ ├── 11-sPPT
│ │ ├── 01-Prerequisites.md
│ │ └── index.md
│ ├── 12-DisplayOverrides
│ │ ├── 01-Prerequisites.md
│ │ ├── 02-DumpingDisplay.md
│ │ ├── 03-InstallingOverride.md
│ │ ├── 04-DisplayIsTV.md
│ │ ├── 05-HiDPI.md
│ │ └── index.md
│ ├── 13-Bridge
│ │ ├── 01-Overview.md
│ │ ├── 02-DisablingNetworkManager.md
│ │ ├── 03-UsingSysDNetD.md
│ │ ├── 04-FixingPingFailed.md
│ │ ├── 05-Results.md
│ │ └── index.md
│ ├── 14-HostOC
│ │ ├── 01-Prerequisites.md
│ │ └── index.md
│ └── 15-OCLP
│ │ ├── 01-Prerequisites.md
│ │ ├── 02-PatchingTheOS.md
│ │ └── index.md
├── android-chrome-192x192.png
├── android-chrome-512x512.png
├── apple-touch-icon.png
├── assets
│ ├── Acidanthera
│ │ ├── OpenCore-DEBUG-Contents.png
│ │ ├── OpenCore-Example-RootUSB.png
│ │ ├── OpenCore-Release-104-Artifacts.png
│ │ ├── OpenCore-Releases-Tab.png
│ │ ├── OpenCore-SampleToConfig.png
│ │ ├── Sample-Default-Language-Result.png
│ │ ├── Sample-Default-Language.png
│ │ ├── Sample-PCI-Kernel-Patch.png
│ │ ├── Sample-Strip-Commands-Results.png
│ │ ├── Sample-Strip-Commands.png
│ │ └── Sample-Updated-SMBIOS.png
│ ├── Carnations
│ │ ├── Carnations_logo_1000px.png
│ │ ├── HighSierraNoGPUAccel.gif
│ │ ├── SonomaGPUAccel.gif
│ │ └── favicon.ico
│ ├── DarwinFetch
│ │ ├── BaseSystemInstallLegacyScreenshot.png
│ │ ├── BootingRecovery.png
│ │ ├── DarwinFetchDirectoryPowerPC.png
│ │ ├── DarwinFetchDirectoryRecovery.png
│ │ ├── DarwinFetchMainMenu.png
│ │ ├── DarwinFetchPowerPCCheetah.png
│ │ ├── DarwinFetchPowerPCSources.png
│ │ ├── DarwinFetchRecoverySonoma.png
│ │ └── DarwinFetchRecoverySources.png
│ ├── DarwinKVM
│ │ ├── 404.png
│ │ ├── CornerLogo.png
│ │ ├── Dynamic-XML-Internal.png
│ │ ├── Dynamic-XML-MacProModel.png
│ │ ├── Dynamic-XML-Question-UIOpen.png
│ │ ├── Header.psd
│ │ ├── HeaderTextOnly.png
│ │ ├── Host-HTOP-Example.png
│ │ ├── MacPro71-Memory-Configuration-Error.png
│ │ ├── MainMenu.png
│ │ ├── MemoryMapGuestLayout.png
│ │ ├── MemoryMapHostMobo.png
│ │ ├── MemoryMappedMacPro71.png
│ │ ├── PTCustomMemoryConfig.png
│ │ ├── PTMemMap32GBDefault.png
│ │ ├── PTMemMapLayout.png
│ │ ├── PTMemRAMEmptyDIMM.png
│ │ ├── PTMemRAMFake.png
│ │ ├── PTMemRAMReal.png
│ │ ├── Template-README.md
│ │ ├── XML-Importer-UI-MP71.png
│ │ └── favicon.ico
│ ├── DarwinOCPkg
│ │ ├── BOOTRoot.png
│ │ ├── DiskProvisionOCPkgConfigInstall.png
│ │ ├── DiskProvisionOCPkgInstallation.png
│ │ ├── DocsRoot.png
│ │ ├── DriversRoot.png
│ │ ├── EFIRoot.png
│ │ ├── OCRoot.png
│ │ ├── RepositoryRoot.png
│ │ └── X64Root.png
│ ├── Discord
│ │ ├── discord-logo-white.png
│ │ └── discord-mark-white.png
│ ├── DiskProvision
│ │ ├── DiskProvisionAddingOCAlternative.png
│ │ ├── DiskProvisionCreatingOCImage.png
│ │ ├── DiskProvisionCreatingPPCHDD.png
│ │ ├── DiskProvisionHeroImage.png
│ │ ├── DiskProvisionMainMenu.png
│ │ ├── DiskProvisionMountPointsDirectory.png
│ │ ├── DiskProvisionMountingDiskImage.png
│ │ ├── DiskProvisionOCPkgConfigInstall.png
│ │ ├── DiskProvisionOCPkgInstallation.png
│ │ ├── DiskProvisionOCUnmounting.png
│ │ ├── DiskProvisionOpenCoreMounted.png
│ │ └── DiskProvisionPowerPCImagesDB.png
│ ├── GitHub
│ │ ├── GitHub_Logo.png
│ │ └── GitHub_Logo_White.png
│ ├── Headers
│ │ ├── Header-ACPI.png
│ │ ├── Header-ACS-Patches.png
│ │ ├── Header-Add-REOS.png
│ │ ├── Header-Booter.png
│ │ ├── Header-Choosing-Target.png
│ │ ├── Header-Complete.png
│ │ ├── Header-CustomMemoryMapping.png
│ │ ├── Header-DarwinOCPkg.png
│ │ ├── Header-DeviceProperties.png
│ │ ├── Header-DiskImageContents.png
│ │ ├── Header-DiskImageCreation.png
│ │ ├── Header-DiskProvision.png
│ │ ├── Header-Drivers.png
│ │ ├── Header-EFI-Structure-Config.png
│ │ ├── Header-Fake-Core-Count.png
│ │ ├── Header-Fetching-Installer.png
│ │ ├── Header-Full-Installer.png
│ │ ├── Header-GPUPT.png
│ │ ├── Header-Guest-Target-Arch.png
│ │ ├── Header-Guest-Target-Decision.png
│ │ ├── Header-IOMMU-Viability.png
│ │ ├── Header-Importer.png
│ │ ├── Header-Initial-Configuration.png
│ │ ├── Header-Introduction.png
│ │ ├── Header-Kernel.png
│ │ ├── Header-Kexts.png
│ │ ├── Header-MP51.png
│ │ ├── Header-MP51orOlder.png
│ │ ├── Header-MP71.png
│ │ ├── Header-Misc.png
│ │ ├── Header-NVRAM.png
│ │ ├── Header-OC-IMG-Creation.png
│ │ ├── Header-OCC.png
│ │ ├── Header-OCPKGtoDOCPKG.png
│ │ ├── Header-OpenCorePkg.png
│ │ ├── Header-PlatformInfo.png
│ │ ├── Header-PowerPC-Installer.png
│ │ ├── Header-PowerPC.png
│ │ ├── Header-ProperTree.png
│ │ ├── Header-Resources.png
│ │ ├── Header-SourcingOCPKG.png
│ │ ├── Header-Terminal-VDISK.png
│ │ ├── Header-Thread-Pinning.png
│ │ ├── Header-Tools.png
│ │ ├── Header-UEFI.png
│ │ ├── Header-VDISK-CreateManage.png
│ │ ├── Header-VMM.png
│ │ ├── Header-Write-Ups.png
│ │ ├── Header-dGPU-PT.png
│ │ ├── Header-recoveryOS-Example.png
│ │ ├── Header-recoveryOS.png
│ │ ├── Header-sGPU-PT.png
│ │ ├── Header-x86.png
│ │ ├── Header404.png
│ │ ├── HeaderAMDGPUSupport.png
│ │ ├── HeaderAboutThisProject.png
│ │ ├── HeaderAdvancedNetworking.png
│ │ ├── HeaderArchInstall.png
│ │ ├── HeaderBIOSSettings.png
│ │ ├── HeaderCPUSupportCheck.png
│ │ ├── HeaderChangelog.png
│ │ ├── HeaderCompatibilityCharts.png
│ │ ├── HeaderCurrentTasks.png
│ │ ├── HeaderDebianBased.png
│ │ ├── HeaderDocsLayout.png
│ │ ├── HeaderFedoraWorkstation.png
│ │ ├── HeaderGPUSupportCharts.png
│ │ ├── HeaderGRUBBootloader.png
│ │ ├── HeaderGallery.png
│ │ ├── HeaderImportanceOfHW.png
│ │ ├── HeaderKernelParameters.png
│ │ ├── HeaderKnowYourHardware.png
│ │ ├── HeaderNVIDIAGPUSupport.png
│ │ ├── HeaderNetworkingConfiguration.png
│ │ ├── HeaderNobaraProject.png
│ │ ├── HeaderPackageConfiguration.png
│ │ ├── HeaderPackageInstallation.png
│ │ ├── HeaderPostSupportCheck.png
│ │ ├── HeaderRequirements.png
│ │ ├── HeaderSettingExpectations.png
│ │ └── HeaderSysDBoot.png
│ ├── OpenCore
│ │ ├── OpenCanopyChardonnay.png
│ │ ├── OpenCanopyGoldenGate.png
│ │ ├── OpenCanopySyrah.png
│ │ ├── OpenCoreACPIAdd.png
│ │ ├── OpenCoreALCBootArg.png
│ │ ├── OpenCoreBooterQuirks.png
│ │ ├── OpenCoreDeviceProperties.png
│ │ ├── OpenCoreEFIComplete.png
│ │ ├── OpenCoreEFIComplete2.png
│ │ ├── OpenCoreFPAFinished.png
│ │ ├── OpenCoreFPANewDevProp.png
│ │ ├── OpenCoreFPARemoveBoot.png
│ │ ├── OpenCoreKernel.png
│ │ ├── OpenCoreLocalCreation.png
│ │ ├── OpenCoreMacPro21Complete.png
│ │ ├── OpenCoreMacPro41Complete.png
│ │ ├── OpenCoreMisc.png
│ │ ├── OpenCoreNVRAM.png
│ │ ├── OpenCorePkgBase.png
│ │ ├── OpenCorePlatformInfo.png
│ │ ├── OpenCorePlatformInfo21.png
│ │ ├── OpenCorePlatformInfo41.png
│ │ ├── OpenCoreProMacACPI.png
│ │ ├── OpenCoreProMacBooter.png
│ │ ├── OpenCoreProMacComplete.png
│ │ ├── OpenCoreProMacDevProps.png
│ │ ├── OpenCoreProMacKernel.png
│ │ ├── OpenCoreProMacMisc.png
│ │ ├── OpenCoreProMacNVRAM.png
│ │ ├── OpenCoreProMacPlatformInfo.png
│ │ ├── OpenCoreProMacUEFI.png
│ │ ├── OpenCoreProMacUEFI2.png
│ │ ├── OpenCoreProperTree.png
│ │ ├── OpenCoreRGXExample.png
│ │ ├── OpenCoreSonomaInstallationComplete.png
│ │ ├── OpenCoreSonomaRecoveryBoot.png
│ │ ├── OpenCoreSonomaRecoveryInstallation1.png
│ │ ├── OpenCoreSonomaRecoveryInstallation2.png
│ │ ├── OpenCoreSonomaSecondBootPhase.png
│ │ ├── OpenCoreSonomaThirdBootPhase.png
│ │ ├── OpenCoreUEFI.png
│ │ ├── OpenCoreUnmount.png
│ │ └── OpenCoreVMBootRecovery.png
│ ├── ProperTree
│ │ ├── ACPIExpanded.png
│ │ ├── ACPIQuirksExpandedHighlighted.png
│ │ ├── BaseImage.png
│ │ ├── DevicePropertiesExpandedHighlighted.png
│ │ ├── KernelSchemeExpanded.png
│ │ ├── OverviewACPI.png
│ │ ├── OverviewBooter.png
│ │ ├── OverviewDevProps.png
│ │ ├── OverviewKernel.png
│ │ ├── OverviewMisc.png
│ │ ├── OverviewNVRAM.png
│ │ ├── OverviewPlatInfo.png
│ │ ├── OverviewUEFI.png
│ │ ├── ProperTreeFiles.png
│ │ ├── ProperTreePlist.png
│ │ ├── ProperTreeRepo.png
│ │ ├── ProperTreeSnapshot.png
│ │ ├── ProperTreeUntitled1.png
│ │ └── RootExpanded.png
│ ├── Template-InstallGuide
│ │ ├── 00-Introduction.md
│ │ ├── 01-ACPI.md
│ │ ├── 02-Booter.md
│ │ ├── 03-DeviceProperties.md
│ │ ├── 04-Kernel.md
│ │ ├── 05-Misc.md
│ │ ├── 06-NVRAM.md
│ │ ├── 07-PlatformInfo.md
│ │ ├── 08-UEFI.md
│ │ └── 09-Complete.md
│ ├── Virtual-Machine-Manager
│ │ ├── VMMDarwinPPC.png
│ │ ├── VMMemoryError.png
│ │ ├── VManAddBridgeNIC.png
│ │ ├── VManAddFPA.png
│ │ ├── VManAddOpenCore1.png
│ │ ├── VManAddOpenCore2.png
│ │ ├── VManAddRecoveryDisplay1.png
│ │ ├── VManAddRecoveryDisplay2.png
│ │ ├── VManAddVirtIOInstallation.png
│ │ ├── VManAddVirtIOInstallation2.png
│ │ ├── VManAddingEvdevDevices.png
│ │ ├── VManDebuggingSerial.png
│ │ ├── VManDebuggingSerialAddHW.png
│ │ ├── VManDefaultNetworkNIC.png
│ │ ├── VManDualGPUPassthroughAddNVME.png
│ │ ├── VManDualGPUPassthroughAddUSBController1.png
│ │ ├── VManDualGPUPassthroughAddUSBController2.png
│ │ ├── VManEvdevInputDetails.png
│ │ ├── VManEvdevInputXML.png
│ │ ├── VManExampleReadyToInstall.png
│ │ ├── VManFCorePage.png
│ │ ├── VManFPAAfterFix.png
│ │ ├── VManFPAAttempt.png
│ │ ├── VManFPAAttemptError.png
│ │ ├── VManFPAAttemptReason.png
│ │ ├── VManFPABeforeFix.png
│ │ ├── VManGPUPassthroughAddGPU.png
│ │ ├── VManGPUPassthroughAddGPUAudio.png
│ │ ├── VManGPUPassthroughAddMultithreading.png
│ │ ├── VManGPUPassthroughAddNVME.png
│ │ ├── VManGPUPassthroughAddSecondaryGPU.png
│ │ ├── VManGPUPassthroughAddSecondaryGPUAudio.png
│ │ ├── VManGPUPassthroughAddUSBController1.png
│ │ ├── VManGPUPassthroughAddUSBController2.png
│ │ ├── VManGPUPassthroughCompletedExample.png
│ │ ├── VManGPUPassthroughCorrectAudioBusAfter.png
│ │ ├── VManGPUPassthroughCorrectAudioBusBefore.png
│ │ ├── VManGPUPassthroughCorrectedGPUMultifunction.png
│ │ ├── VManGPUPassthroughFindGPUBus.png
│ │ ├── VManGPUPassthroughRemoveRecoveryKBM.png
│ │ ├── VManGPUPassthroughRemoveVirtIODisplay.png
│ │ ├── VManLegacyAddNICe1000.png
│ │ ├── VManLegacyAddNICvmxnet3.png
│ │ ├── VManLegacyKVMAddDisplay1.png
│ │ ├── VManLegacyKVMAddDisplay2.png
│ │ ├── VManLegacyKVMAddSATA.png
│ │ ├── VManLegacyKVMCompleteExample1.png
│ │ ├── VManLegacyKVMSetBootDisk.png
│ │ ├── VManPrefsEnableXMLediting.png
│ │ ├── VManRemoveRecoveryKBM.png
│ │ ├── VManRemoveUSBController.png
│ │ ├── VManTemplateImport.png
│ │ ├── VManTemplateImportLegacy.png
│ │ ├── VManTemplateImportLegacyAlt.png
│ │ ├── VManTemplatePPCImport.png
│ │ └── VManTemplatePPCMapped.png
│ ├── macOS
│ │ ├── macOSACLID.png
│ │ ├── macOSRecoveryDiskUtility.png
│ │ ├── macOSRecoveryFormatInstallTarget.png
│ │ ├── macOSRecoveryFormatInstallTarget2.png
│ │ ├── macOSRecoveryFormatInstallTarget3.png
│ │ ├── macOSSonomaDesktop.png
│ │ ├── macOSSonomaGPUAccel.png
│ │ └── macOSSonomaNoMountEFIneeded.png
│ ├── risingprism
│ │ └── QEMUHookModification.png
│ └── royalgraphx
│ │ ├── DarwinKVMLogo.png
│ │ ├── DarwinKVMLogo.psd
│ │ └── Header.png
├── docs
│ ├── 01-WelcomeArea
│ │ ├── 01-About.md
│ │ ├── 02-Requirements.md
│ │ ├── 03-SettingExpectations.md
│ │ └── 04-DocsExplained.md
│ ├── 02-Gallery
│ │ └── index.md
│ └── 03-Changelog
│ │ └── index.md
├── gallery
│ ├── 1016
│ │ └── 1016CataSurMacPro71.png
│ ├── BigSur
│ │ ├── 110BigSurDP1MacPro71.png
│ │ └── ProMacBigSur.png
│ ├── Catalina
│ │ └── ProMacCatalina.png
│ ├── Cheetah
│ │ └── PowerMacCheetah.png
│ ├── ElCapitan
│ │ └── ProMacTheCaptain.png
│ ├── HighSierra
│ │ ├── HacProKVM10136.png
│ │ └── ProMacHighSierra.png
│ ├── Jaguar
│ │ └── PowerMacJaguar.png
│ ├── Leopard
│ │ ├── MacPro41Leopard1058.png
│ │ ├── MacPro41LeopardServer105.png
│ │ └── PowerMacLeopard.png
│ ├── Lion
│ │ └── ProMacLion.png
│ ├── Mavericks
│ │ └── ProMacMavericks.png
│ ├── Mojave
│ │ └── ProMacMojave.png
│ ├── Monterey
│ │ └── ProMacMonterey.png
│ ├── MountainLion
│ │ └── ProMacMountainLion.png
│ ├── Panther
│ │ └── PowerMacPanther.png
│ ├── Puma
│ │ └── PowerMacPuma.png
│ ├── Sequoia
│ │ ├── HacProKVM15Beta.png
│ │ ├── HacProKVM15BetaAlt.png
│ │ ├── athleticatMacPro71Seq1511.png
│ │ └── f0xb4tMacPro71Seq151.png
│ ├── Sierra
│ │ ├── ProMacSierra.png
│ │ └── ProMacSierraInternal.png
│ ├── SnowLeopard
│ │ ├── MacMini31SnowLeopardFactory1062.png
│ │ ├── PowerMacSnowLeopard.png
│ │ ├── PowerMacSnowLeopardAlt.png
│ │ ├── ProMacSLServer.png
│ │ ├── ProMacSnowLeopard.png
│ │ ├── ProMacSnowLeopardHD5450-2.png
│ │ ├── ProMacSnowLeopardHD5450.png
│ │ ├── ProMacSnowLeopardServer.png
│ │ └── ProMacSnowLeopardServerHD5450.png
│ ├── Sonoma
│ │ ├── HacProKVM140.png
│ │ ├── HacProKVM141.png
│ │ ├── HacProKVM143.png
│ │ ├── HacProKVM144Beta.png
│ │ ├── HacProKVM145.png
│ │ ├── Helio1421.png
│ │ ├── OpenCoreSonomaInstallationComplete.png
│ │ ├── OpenCoreSonomaRecoveryInstallation2.png
│ │ ├── OpenCoreSonomaSecondBootPhase.png
│ │ ├── OpenCoreSonomaThirdBootPhase.png
│ │ ├── haxi0DKVM141.png
│ │ ├── macOSSonomaDesktop.png
│ │ ├── macOSSonomaNoMountEFIneeded.png
│ │ └── naymmmiscoolMacPro71Sonoma147.png
│ ├── Tiger
│ │ ├── ADP21-1041.png
│ │ ├── MacPro11Tiger1047.png
│ │ ├── MacPro11TigerServer10411.png
│ │ ├── MacPro21Tiger10411.png
│ │ └── PowerMacTiger.png
│ ├── Ventura
│ │ ├── HacProKVM134.png
│ │ ├── HacProKVM1351.png
│ │ ├── ZormDKVMnvidia.png
│ │ └── kaggsterDKVM135.png
│ └── Yosemite
│ │ └── ProMacYosemite.png
└── index.md
├── extras
├── DarwinPPC
│ ├── Template-Cheetah.sh
│ ├── Template-Jaguar.sh
│ ├── Template-Leopard.sh
│ ├── Template-Panther.sh
│ ├── Template-Puma.sh
│ ├── Template-SnowLeopard.sh
│ └── Template-Tiger.sh
├── bridged-networking
│ ├── 1-br0-bind.network
│ ├── 2-br0-dhcp.network
│ ├── README.md
│ ├── br.netdev
│ └── init.sh
└── custom-memory-mapping
│ ├── MemInfoGen.sh
│ ├── MemoryMap128GB.plist
│ ├── MemoryMap16GB.plist
│ ├── MemoryMap256GB.plist
│ ├── MemoryMap32GB.plist
│ ├── MemoryMap64GB.plist
│ ├── MemoryMap8GB.plist
│ └── WindowsDMIDecode.txt
├── scripts
├── commit.sh
├── cpupower.sh
├── iommu.sh
├── push.sh
└── rwby.sh
└── xmls
├── DarwinPPC.xml
└── examples
├── DarwinKVM-Debian-Fedora.xml
├── DarwinKVM.xml
└── LegacyDarwinKVM.xml
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | custom: ["https://cash.app/$RoyalGraphX"]
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # General
2 | .DS_Store
3 | .AppleDouble
4 | .LSOverride
5 |
6 | # Icon must end with two \r
7 | Icon
8 |
9 | # Thumbnails
10 | ._*
11 |
12 | # Files that might appear in the root of a volume
13 | .DocumentRevisions-V100
14 | .fseventsd
15 | .Spotlight-V100
16 | .TemporaryItems
17 | .Trashes
18 | .VolumeIcon.icns
19 | .com.apple.timemachine.donotpresent
20 |
21 | # Directories potentially created on remote AFP share
22 | .AppleDB
23 | .AppleDesktop
24 | Network Trash Folder
25 | Temporary Items
26 | .apdisk
27 |
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "extras/DiskProvision"]
2 | path = extras/DiskProvision
3 | url = https://github.com/royalgraphx/DiskProvision.git
4 | [submodule "extras/DarwinFetch"]
5 | path = extras/DarwinFetch
6 | url = https://github.com/royalgraphx/DarwinFetch.git
7 | [submodule "extras/DarwinOCPkg"]
8 | path = extras/DarwinOCPkg
9 | url = https://github.com/royalgraphx/DarwinOCPkg.git
10 | [submodule "extras/DUDK-Firmware"]
11 | path = extras/DUDK-Firmware
12 | url = https://github.com/royalgraphx/DUDK-Firmware.git
13 | [submodule "extras/ProperTree"]
14 | path = extras/ProperTree
15 | url = https://github.com/corpnewt/ProperTree
16 | [submodule "extras/GenSMBIOS"]
17 | path = extras/GenSMBIOS
18 | url = https://github.com/corpnewt/GenSMBIOS
19 | [submodule "extras/vfio-script"]
20 | path = extras/vfio-script
21 | url = https://gitlab.com/akshaycodes/vfio-script.git
22 | [submodule "extras/single-gpu-passthrough"]
23 | path = extras/single-gpu-passthrough
24 | url = https://gitlab.com/risingprismtv/single-gpu-passthrough.git
25 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | BSD 3-Clause License
2 |
3 | Copyright (c) 2023, 2024, 2025 RoyalGraphX
4 | Copyright (c) 2025 Carnations Botanica
5 |
6 | Redistribution and use in source and binary forms, with or without
7 | modification, are permitted provided that the following conditions are met:
8 |
9 | 1. Redistributions of source code must retain the above copyright notice, this
10 | list of conditions and the following disclaimer.
11 |
12 | 2. Redistributions in binary form must reproduce the above copyright notice,
13 | this list of conditions and the following disclaimer in the documentation
14 | and/or other materials provided with the distribution.
15 |
16 | 3. Neither the name of the copyright holder nor the names of its
17 | contributors may be used to endorse or promote products derived from
18 | this software without specific prior written permission.
19 |
20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--------------------------------------------------------------------------------
/docs/.gitignore:
--------------------------------------------------------------------------------
1 | # Copied from https://github.com/github/gitignore/blob/main/Jekyll.gitignore
2 | # Ignore metadata generated by Jekyll
3 | _site/
4 | .sass-cache/
5 | .jekyll-cache/
6 | .jekyll-metadata
7 |
8 | # Ignore folders generated by Bundler
9 | .bundle/
10 | vendor/
11 |
--------------------------------------------------------------------------------
/docs/404.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: 404
4 | nav_exclude: true
5 | ---
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/docs/CNAME:
--------------------------------------------------------------------------------
1 | docs.darwinkvm.com
--------------------------------------------------------------------------------
/docs/Gemfile:
--------------------------------------------------------------------------------
1 | source 'https://rubygems.org'
2 |
3 | gem "jekyll", "~> 4.3.2" # installed by `gem jekyll`
4 | gem "logger" # logger was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0.
5 | gem "ostruct" # ostruct was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0.
6 | gem "csv" # csv was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.4.0.
7 | gem "base64" # base64 was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.4.0.
8 | gem "bigdecimal" # bigdecimal was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.4.0.
9 | # gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2
10 |
11 | gem "just-the-docs", "0.5.3" # pinned to the current release
12 | # gem "just-the-docs" # always download the latest release
13 |
--------------------------------------------------------------------------------
/docs/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2022 just-the-docs
4 | Copyright (c) 2023, 2024, 2025 RoyalGraphX
5 | Copyright (c) 2025 Carnations Botanica
6 |
7 | Permission is hereby granted, free of charge, to any person obtaining a copy
8 | of this software and associated documentation files (the "Software"), to deal
9 | in the Software without restriction, including without limitation the rights
10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 | copies of the Software, and to permit persons to whom the Software is
12 | furnished to do so, subject to the following conditions:
13 |
14 | The above copyright notice and this permission notice shall be included in all
15 | copies or substantial portions of the Software.
16 |
17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 | SOFTWARE.
24 |
--------------------------------------------------------------------------------
/docs/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/docs/_host/03-CompatibilityCharts/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Compatibility Charts
4 | description: "Welcome to the Carnations Support Charts. These are shared for usage in DarwinKVM."
5 | nav_order: 3
6 | has_children: true
7 | has_toc: false
8 | ---
9 |
10 |
22 |
23 |
24 |
25 |
26 |
27 | Time to check compatibility!
28 |
29 |
30 | To continue, you'll need to make sure that the dedicated graphics processing unit you intend to use is supported. You'll also want to double check the CPU extensions available to you, to understand if you are limited by your CPU to a specific OS X or macOS release, such as those lacking AVX2.
31 |
32 |
33 |
41 |
--------------------------------------------------------------------------------
/docs/_hypervisor/01-Git-Clone-Recursive.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Cloning the Repo
4 | description: "How to properly get the DarwinKVM repository, with all of its contents included."
5 | nav_order: 2
6 | has_children: false
7 | has_toc: false
8 | ---
9 |
10 |
22 |
23 |
24 |
25 |
26 |
27 | How to properly Clone the Repository
28 |
29 |
30 | To get started with DarwinKVM, you'll need to recursively clone the repository hosted on GitHub to get access to its submodules like DiskProvision, DarwinFetch, and various others.
31 |
32 | ```bash
33 | git clone --recursive https://github.com/royalgraphx/DarwinKVM.git
34 | ```
35 |
36 | This may take a few minutes depending on your internet connection speeds. If you do not clone the repository recursively, you can later fetch the submodules via the DarwinKVM Main Menu, but doing it initially allows you to update DarwinKVM by using the Main Menu or by issuing git pull
in the root of the repository. Updating/Submodules will not work if you download the repository as a ZIP file.
37 |
38 |
46 |
--------------------------------------------------------------------------------
/docs/_hypervisor/03-Kernel-Parameters/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Kernel Parameters
4 | description: "This central page allows you to quickly set up your Linux kernel parameters to appropriately use as a Hypervisor."
5 | nav_order: 4
6 | has_children: true
7 | has_toc: false
8 | ---
9 |
10 |
30 |
31 |
32 |
33 |
34 |
35 | This section allows various bootloader types to set up the necessary kernel parameters needed for proper virtualization and IOMMU usage, alongside any extra potential GPU related flags when it comes to passthrough and isolation. Please select the bootloader you use to continue.
36 |
37 | We appreciate PRs for this section, as the goal is very simple but can vary wildly across Linux distributions and their respective bootloaders. If you use something other than listed here, please open an Issue or Pull Request with a contribution for others to use.
38 |
39 |
40 |
41 |
44 |
48 |
49 |
--------------------------------------------------------------------------------
/docs/_hypervisor/04-Package-Install/04-Nobara.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Nobara Project
4 | description: "Placeholder"
5 | parent: Package Installation
6 | nav_order: 4
7 | has_children: false
8 | has_toc: false
9 | ---
10 |
11 |
23 |
24 |
25 |
26 |
27 |
28 | {: .headsup }
29 | This page is incomplete! No personal testing has been done yet. Please open a PR to complete this page if you are a user who has completed DKVM on Nobara.
30 |
31 | To get started, we'll use the default package manager
to install varaious packages/software including but not limited to Virt-Manager and QEMU itself.
32 |
33 | | Package | Description |
34 | | ---- | ---- |
35 | | | |
36 |
37 | You can install all the necessary packages using
by running the following command:
38 |
39 | ```bash
40 | sudo
41 | ```
42 |
43 | If you use any other package manager on Nobara, or similarly based distributions, and would like to contribute to this page, please request a PR review for accelerated addition. It's understandable that some people may already be on an existing installation for a while now, and use entirely different package managers.
44 |
45 |
53 |
54 |
--------------------------------------------------------------------------------
/docs/_hypervisor/08-Guest-Target-Decision/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Guest Target Architecture
4 | description: "Placeholder"
5 | nav_order: 9
6 | has_children: true
7 | has_toc: false
8 | ---
9 |
10 |
30 |
31 |
32 |
33 |
34 |
35 | To begin, we'll need to know what type of OS X / macOS Guest you want to create.
36 |
37 | Please select the architecture of the desired guest type.
38 |
39 |
40 |
41 |
44 |
48 |
49 |
--------------------------------------------------------------------------------
/docs/_includes/head_custom.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/docs/_layouts/default.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: table_wrappers
3 | ---
4 |
5 |
6 |
7 |
8 | {% include head.html %}
9 |
10 | Skip to main content
11 | {% include icons/icons.html %}
12 | {% include components/sidebar.html %}
13 |
14 | {% include components/header.html %}
15 |
16 | {% include components/breadcrumbs.html %}
17 |
18 |
19 | {% if site.heading_anchors != false %}
20 | {% include vendor/anchor_headings.html html=content beforeHeading="true" anchorBody=" " anchorClass="anchor-heading" anchorAttrs="aria-labelledby=\"%html_id%\"" %}
21 | {% else %}
22 | {{ content }}
23 | {% endif %}
24 |
25 | {% if page.has_children == true and page.has_toc != false %}
26 | {% include components/children_nav.html %}
27 | {% endif %}
28 |
29 | {% include components/footer.html %}
30 |
31 |
32 | {% if site.search_enabled != false %}
33 | {% include components/search_footer.html %}
34 | {% endif %}
35 |
36 |
37 | {% if site.mermaid %}
38 | {% include components/mermaid.html %}
39 | {% endif %}
40 |
41 |
--------------------------------------------------------------------------------
/docs/_opencore/02-ImageCreation/01-Terminal/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Using Terminal
4 | parent: Disk Image Creation
5 | description: "This page goes over manual disk image creation, management and formatting."
6 | has_children: true
7 | has_toc: false
8 | nav_order: 1
9 | ---
10 |
11 |
24 |
25 |
26 |
27 |
28 |
29 | Why use Terminal manually?
30 |
31 | Most users, would prefer to simply open a Terminal, and begin manually managing their own virtual disk images. This works great for those advanced enough to do such a task, or those who simply prefer a server based version of Linux that does not include a Desktop Environment. This also works for those on Proxmox/Unraid who have SSH access and a portion of storage they can work under.
32 |
33 |
41 |
--------------------------------------------------------------------------------
/docs/_opencore/02-ImageCreation/02-DiskProvision/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Using DiskProvision
4 | parent: Disk Image Creation
5 | description: "This is the overview section of DiskProvision usage and OpenCore .img creation."
6 | has_children: true
7 | has_toc: false
8 | nav_order: 2
9 | ---
10 |
11 |
24 |
25 |
26 |
27 |
28 |
29 | Why DiskProvision?
30 |
31 | Created for DarwinKVM, DiskProvision is a Python script. It's main use in the DarwinKVM process is to simplify the creation of disk images that work with QEMU and display properly in guests. By having the ability to format them as FAT32, mimicking USB Drives allowing us to create an OpenCore disk image for our Virtual Machine to use as an EFI partition. This image will equally appear as a disk on the guest side. This allows for quick changes to be made, and a reboot to apply changes becomes as simple as using ProperTree and hitting reboot.
32 |
33 |
41 |
--------------------------------------------------------------------------------
/docs/_opencore/02-ImageCreation/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Disk Image Creation
4 | Description: "Placeholder"
5 | nav_order: 2
6 | has_children: true
7 | has_toc: false
8 | ---
9 |
10 |
35 |
36 |
37 |
38 |
39 |
40 | Time to create disk images!
41 |
42 |
43 | This section page exists to educate users on the proper way to create, manage, and modify your disk images for usage with Virt-Manager/QEMU. The main purpose of this section right now, is to create a 2GB disk image that we'll format as FAT32, to create an OpenCore type disk image with the proper contents, to build your EFI partition.
44 |
45 |
46 |
47 |
58 |
--------------------------------------------------------------------------------
/docs/_opencore/03-ImageContents/01-OpenCorePkg/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Using OpenCorePkg
4 | parent: Disk Image Contents
5 | description: "This section goes over how Carnations maintains a fork of OpenCorePkg, and how you can use the latest provided by Acidanthera under a KVM solution."
6 | has_children: true
7 | has_toc: false
8 | nav_order: 1
9 | ---
10 |
11 |
24 |
25 |
26 |
27 |
28 |
29 | Why OpenCorePkg?
30 |
31 | Learning how we provide DarwinOCPkg, will allow you to use the latest OpenCore provided by Acidanthera's Github page, and configure it properly for a QEMU Q35 machine with all of its SSDTs/ACPIs needed per MacPro model. Some people may not be using traditional desktop Linux, so we'll be able to assist those on Proxmox/Unraid to create a disk image with its required contents.
32 |
33 | No support is provided for anyone using the following instructions on a non QEMU kernel based virtual machine on a Linux-derived kernel host .
34 |
35 |
43 |
--------------------------------------------------------------------------------
/docs/_opencore/03-ImageContents/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Disk Image Contents
4 | Description: "Placeholder"
5 | nav_order: 3
6 | has_children: true
7 | has_toc: false
8 | ---
9 |
10 |
35 |
36 |
37 |
38 |
39 |
40 | Time to add OpenCore!
41 |
42 |
43 | This page allows you to choose between the Carnations Botanica maintained DarwinOCPkg, or use and configure the latest OpenCorePkg from Acidanthera, the creators/maintainers of the OpenCore bootloader. The recommended route is configuring OpenCorePkg manually from scratch, but for those who would prefer to have the content like SSDTs already created, you can use DarwinOCPkg.
44 |
45 |
46 |
47 |
58 |
--------------------------------------------------------------------------------
/docs/_opencore/04-FilePlacement/05-Tools.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Tools
4 | description: "Placeholder"
5 | parent: EFI Layout Config
6 | nav_order: 5
7 | has_children: false
8 | has_toc: false
9 | ---
10 |
11 |
24 |
25 |
26 |
27 |
28 |
29 | UEFI Shell is already provided by TianoCore / EDK2 UEFI BIOS. No Tools needed, the folder is not included or needed at all. You can now continue to the next page.
30 |
31 |
32 | | Tool | Status | Description |
33 | | ----- | ----- | ----- |
34 | | | | |
35 |
36 |
44 |
45 |
--------------------------------------------------------------------------------
/docs/_opencore/06-OpenCoreConfigurations/01-MacPro71/01-ACPI.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: ACPI
4 | description: "Placeholder"
5 | parent: MacPro7,1
6 | grand_parent: OpenCore Configurations
7 | nav_order: 2
8 | has_children: false
9 | has_toc: false
10 | ---
11 |
12 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 | ## Add
33 |
34 | This section of the config is meant to expose the various ACPI in your OC folder. This along with many of the other sections will be auto-filled by simply going to ``File -> OC Clean Snapshot`` and going to the OC folder in your OpenCore.img mount point.
35 |
36 | ## Delete
37 |
38 | This blocks certain ACPI tables from loading, for us, we can ignore this.
39 |
40 | ## Patch
41 |
42 | This section allows us to dynamically modify parts of the ACPI (DSDT, SSDT, etc.) via OpenCore. For us, our patches are handled by our SSDTs. This is a much cleaner solution as this will allow us to boot Windows and other OSes with OpenCore for dual or multi-boot configurations.
43 |
44 | ## Quirks
45 |
46 | For settings relating to ACPI, leave everything here as default as we have no use for these quirks.
47 |
48 |
56 |
--------------------------------------------------------------------------------
/docs/_opencore/06-OpenCoreConfigurations/01-MacPro71/03-DeviceProperties.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: DeviceProperties
4 | description: "Placeholder"
5 | parent: MacPro7,1
6 | grand_parent: OpenCore Configurations
7 | nav_order: 4
8 | has_children: false
9 | has_toc: false
10 | ---
11 |
12 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 | ## Add
33 |
34 | This allows you to add properties to various devices using its PciRoot address. For now, and in most cases we can ignore this.
35 |
36 | An example would be: overriding an ethernet controller to appear as built-in so that macOS allows iServices to work. This is mainly for baremetal though, and is irrelevent here.
37 |
38 | On Virtual Machines, we only need to override/add properties to passed-through devices, like GPUs or audio controllers. For our initial setup, we will leave this section empty. There are dedicated pages to explaining how to do various overrides, this section doesn't have to include that info right now.
39 |
40 | ## Delete
41 |
42 | This allows you to delete properties of various devices using its PciRoot address. For now, and in most cases we can ignore this.
43 |
44 |
52 |
--------------------------------------------------------------------------------
/docs/_opencore/06-OpenCoreConfigurations/01-MacPro71/09-Complete.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Complete
4 | description: "Placeholder"
5 | parent: MacPro7,1
6 | grand_parent: OpenCore Configurations
7 | nav_order: 10
8 | has_children: false
9 | has_toc: false
10 | ---
11 |
12 |
25 |
26 |
27 |
28 |
29 |
30 | Congratulations! You've configured your config.plist!
31 |
32 |
40 |
--------------------------------------------------------------------------------
/docs/_opencore/06-OpenCoreConfigurations/02-MacPro51/01-ACPI.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: ACPI
4 | description: "Placeholder"
5 | parent: MacPro5,1
6 | grand_parent: OpenCore Configurations
7 | nav_order: 2
8 | has_children: false
9 | has_toc: false
10 | ---
11 |
12 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 | ## Add
33 |
34 | This section of the config is meant to expose the various ACPI in your OC folder. This along with many of the other sections will be auto-filled by simply going to ``File -> OC Clean Snapshot`` and going to the OC folder in your OpenCore.img mount point.
35 |
36 | ## Delete
37 |
38 | This blocks certain ACPI tables from loading, for us, we can ignore this.
39 |
40 | ## Patch
41 |
42 | This section allows us to dynamically modify parts of the ACPI (DSDT, SSDT, etc.) via OpenCore. For us, our patches are handled by our SSDTs. This is a much cleaner solution as this will allow us to boot Windows and other OSes with OpenCore for dual or multi-boot configurations.
43 |
44 | ## Quirks
45 |
46 | For settings relating to ACPI, leave everything here as default as we have no use for these quirks.
47 |
48 |
56 |
--------------------------------------------------------------------------------
/docs/_opencore/06-OpenCoreConfigurations/02-MacPro51/09-Complete.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Complete
4 | description: "Placeholder"
5 | parent: MacPro5,1
6 | grand_parent: OpenCore Configurations
7 | nav_order: 10
8 | has_children: false
9 | has_toc: false
10 | ---
11 |
12 |
25 |
26 |
27 |
28 |
29 |
30 | Congratulations! You've configured your config.plist!
31 |
32 |
40 |
--------------------------------------------------------------------------------
/docs/_opencore/06-OpenCoreConfigurations/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: OpenCore Configurations
4 | Description: "The DarwinKVM Configurations provided to create MacPro7,1 and MacPro5,1 or older machines."
5 | nav_order: 6
6 | has_children: true
7 | has_toc: false
8 | ---
9 |
10 |
35 |
36 |
37 |
38 |
39 |
40 | You can now open ProperTree via Main Menu!
41 |
42 | If you're ready to configure your OpenCore disk image, you can now go ahead and open ProperTree however you'd like, or by using the DarwinKVM Main Menu option. You will still have to navigate to the proper path and open the config.plist that is within your disk image!
43 |
44 | You can now use the Navigation Bar to select the Mac Pro Model you want to use, according to the OS release version you intend to install.
45 |
46 |
57 |
--------------------------------------------------------------------------------
/docs/_opencore/07-FetchingInstaller/01-recoveryOS/01-Choosing-Target.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Choosing a Target
4 | description: "Placehoplder"
5 | parent: recoveryOS
6 | grand_parent: Fetching Installer
7 | nav_order: 1
8 | has_toc: false
9 | has_children: false
10 | ---
11 |
12 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 | Selecting the second option will take you to a submenu to select a version to fetch.
34 |
35 | For this example, we'll be getting macOS Sonoma 14.3 RecoveryOS image.
36 |
37 |
38 |
39 |
40 |
41 | After some time, and a verification of the accompanying chunklist, you will be ready!
42 |
43 |
44 |
45 |
53 |
--------------------------------------------------------------------------------
/docs/_opencore/07-FetchingInstaller/01-recoveryOS/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: recoveryOS
4 | description: "Placehoplder"
5 | parent: Fetching Installer
6 | nav_order: 1
7 | has_children: true
8 | has_toc: false
9 | ---
10 |
11 |
24 |
25 |
26 |
27 |
28 |
29 | We'll be using the python tool DarwinFetch .
30 |
31 | It's included in this repository and can be launched via the DarwinKVM Main Menu.
32 |
33 |
41 |
--------------------------------------------------------------------------------
/docs/_opencore/07-FetchingInstaller/02-Full/00-Introduction.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Introduction
4 | parent: Full / Offline
5 | grand_parent: Fetching Installer
6 | nav_order: 1
7 | ---
8 |
9 |
22 |
23 |
24 |
25 |
26 |
27 | {: .internalnote }
28 | This is basically a placeholder for when this is ready to go public.
29 |
30 |
38 |
--------------------------------------------------------------------------------
/docs/_opencore/07-FetchingInstaller/02-Full/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Full / Offline
4 | description: "Placeholder"
5 | parent: Fetching Installer
6 | nav_order: 2
7 | has_children: true
8 | has_toc: false
9 | ---
10 |
11 |
24 |
25 |
26 |
27 |
28 |
29 | {: .warning }
30 | This section is under construction. It is not finished and not ready to be followed. Wait until this warning is no longer present, to follow the writeup. For now, please use recoveryOS or find legitimate unmodified content on your own. No support given for modified legacy OS X .iso
files.
31 |
32 |
40 |
--------------------------------------------------------------------------------
/docs/_opencore/07-FetchingInstaller/03-PowerPC.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: PowerPC
4 | parent: Fetching Installer
5 | has_children: false
6 | nav_order: 3
7 | ---
8 |
9 |
22 |
23 |
24 |
25 |
26 |
27 | You can now launch DarwinFetch as you'd like.
28 |
29 |
30 |
31 | Selecting the third option will take you to a submenu to select a version to fetch.
32 |
33 | For this example, we'll be getting the OS X Cheetah Install DVD image.
34 |
35 |
36 |
37 |
38 |
39 | After some time, and an automated unzip of the accompanying files, you will be ready!
40 |
41 |
42 |
43 | This page is here for complete-ness of documenting the Fetching abilities of DarwinFetch. You should continue on with the PowerPC configuration page.
44 |
45 |
46 |
47 |
50 |
51 |
52 |
--------------------------------------------------------------------------------
/docs/_sass/custom/setup.scss:
--------------------------------------------------------------------------------
1 | $pink-000: #f77ef1;
2 | $pink-100: #f967f1;
3 | $pink-200: #e94ee1;
4 | $pink-300: #dd2cd4;
5 | $canary-000: #e7e142;
6 | $canary-100: #bcb716;
7 | $canary-200: #ece626;
8 | $canary-300: #fff839;
9 | $teal-000: #008080;
10 | $teal-100: #009688;
11 | $teal-200: #00796B;
12 | $teal-300: #00dfc5;
13 | $reddish-000: #FF4D4D;
14 | $reddish-100: #E63939;
15 | $reddish-200: #C62828;
16 | $reddish-300: #eb2a2a;
17 | $blueish-000: #253746;
18 | $blueish-100: #1E2A37;
19 | $blueish-200: #18222C;
20 | $blueish-300: #72c7ff;
21 | $different-blue-100: #6DA6D2;
22 | $different-blue-200: #519CCB;
23 | $different-blue-300: #368AC2;
24 | $different-blue-400: #1C79BA;
25 | $different-black-100: #595959;
26 | $different-black-200: #242424;
27 | $different-black-300: #1d1d1d;
28 | $different-black-400: #131313;
29 | $heads-up-000: #9f5200;
30 | $heads-up-100: #8c5a25;
31 | $heads-up-200: #ae7435;
32 | $heads-up-300: #ffab52;
33 | $next-gray-000: #a9a9a9;
34 | $next-gray-100: #bfbfbf;
35 | $next-gray-200: #949494;
36 | $next-gray-300: #7f7f7f;
37 | $zorm-hex-000: #8bbde8;
38 | $zorm-hex-100: #a3cff1;
39 | $zorm-hex-200: #77a9db;
40 | $zorm-hex-300: #5e90c5;
41 | $hexley-red-000: #f96093;
42 | $hexley-red-100: #ff84a9;
43 | $hexley-red-200: #e6507f;
44 | $hexley-red-300: #cc4672;
45 | $carnations-pink-000: #ff909f;
46 | $carnations-pink-100: #ffb0b5;
47 | $carnations-pink-200: #ff9aa0;
48 | $carnations-pink-300: #ff9aa0;
49 | $carnations-purple-000: #bfa6ff;
50 | $carnations-purple-100: #d1bbff;
51 | $carnations-purple-200: #c5afff;
52 | $carnations-purple-300: #a890e6;
53 |
--------------------------------------------------------------------------------
/docs/_virtman/04-Initial-Configuration/01-MacPro71/01-ConfigDisplay.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Configuring Display
4 | parent: MacPro7,1
5 | grand_parent: Initial Configuration
6 | nav_order: 1
7 | ---
8 |
9 |
21 |
22 |
23 | Configuring Display
24 |
25 |
26 | 1. Select the Add Hardware
button and navigate to Graphics
.
27 | 2. Select the Listen Type:
to None
then select the Finish
button.
28 |
29 |
30 |
31 | 3. Select the Video tab on the left-hand side, and choose the VirtIO
model.
32 | If you later have issues, please attempt to use the VGA
model instead.
33 |
34 |
35 |
36 |
44 |
--------------------------------------------------------------------------------
/docs/_virtman/04-Initial-Configuration/01-MacPro71/03-ConfigNIC.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Configure NIC
4 | parent: MacPro7,1
5 | grand_parent: Initial Configuration
6 | nav_order: 3
7 | ---
8 |
9 |
21 |
22 |
23 | Configure NIC
24 |
25 |
26 | {: .warning }
27 | This is required to download OS X / macOS via recoveryOS! This is also how you provide Internet Access to the guest machine by sharing.
28 |
29 | Using the Default Network
30 |
31 |
32 | Select the Add Hardware
button and choose the Network
category on the left-hand side.
33 |
34 |
35 |
36 | Choose the correct Network Model for your Guest OS
37 |
38 |
39 |
40 | For macOS Big Sur (11+) and newer: Use virtio
.
41 |
42 | For macOS Catalina (10.15) Use vmxnet3
.
43 |
44 |
45 |
46 | Once you have selected the correct model, you can continue to the next step.
47 |
48 |
56 |
--------------------------------------------------------------------------------
/docs/_virtman/04-Initial-Configuration/02-MacPro51/01-ConfigDisplay.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Configuring Display
4 | parent: MacPro5,1 or Older
5 | grand_parent: Initial Configuration
6 | nav_order: 1
7 | ---
8 |
9 |
21 |
22 |
23 | Configuring Display
24 |
25 |
26 | 1. Select the Add Hardware
button and navigate to Graphics
.
27 | 2. Select the Listen Type:
to None
then select the Finish
button.
28 |
29 |
30 |
31 | 3. Select the Video tab on the left-hand side, and choose the VGA
model.
32 |
33 |
34 |
35 |
43 |
--------------------------------------------------------------------------------
/docs/_virtman/04-Initial-Configuration/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Initial Configuration
4 | description: "Placeholder"
5 | nav_order: 4
6 | has_children: true
7 | has_toc: false
8 | ---
9 |
10 |
35 |
36 |
37 |
38 |
39 |
40 | By default, the XMLs are barebones and do not include any other emulated hardware defined such as graphics, networking, or storage drives. You'll have to finish configuring the VM for the initial installation using VirtIO or VGA Graphics, as well as the correct NIC and Interface Type for the storage disks to install OS X or macOS to reach the desktop, before GPU passthrough is done.
41 |
42 |
53 |
54 |
--------------------------------------------------------------------------------
/docs/_virtman/05-GPU-Passthrough/01-sGPU/02-HookModification.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Hook Modification
4 | parent: Single GPU Passthrough
5 | grand_parent: GPU Passthrough
6 | nav_order: 2
7 | ---
8 |
9 |
21 |
22 |
23 | Hook Modification
24 |
25 |
26 | {: .new }
27 | The DarwinKVM Main Menu now has a quick edit option! This page will be changed sometime soon.
28 |
29 | Modify the following file to add $OBJECT == "DarwinKVM-MP##"
to the if statement.
30 |
31 | This will allow the hook to now pay attention to the DarwinKVM Virtual Machine. If for any reason you need to use the Virtual Machine without GPU passthrough, you should remove this modification to allow proper usage of the VirtIO Display when not doing passthrough willingly or for debugging reasons. You can also duplicate the VM definition and add -NoGPU
to avoid automatic hooking.
32 |
33 | ```bash
34 | sudo nano /etc/libvirt/hooks/qemu
35 | ```
36 |
37 | Example modified file:
38 |
39 |
40 |
41 |
49 |
--------------------------------------------------------------------------------
/docs/_virtman/05-GPU-Passthrough/01-sGPU/04-Finish.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Complete!
4 | parent: Single GPU Passthrough
5 | grand_parent: GPU Passthrough
6 | nav_order: 4
7 | ---
8 |
9 |
21 |
22 |
23 |
24 |
25 |
26 | For further customization, please refer to the write-ups!
27 |
28 | Enjoy a screenshot of Sequoia with an AMD Radeon Pro WX 9100 16GB
29 |
30 |
31 |
32 |
40 |
--------------------------------------------------------------------------------
/docs/_virtman/05-GPU-Passthrough/02-dGPU/02-KernelParameters/01-GRUB.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: GRUB Configuration
4 | parent: Setting Kernel Parameters
5 | grand_parent: Dual GPU Passthrough
6 | nav_order: 1
7 | ---
8 |
9 |
21 |
22 |
23 |
24 |
25 |
26 | {: .internalnote }
27 | This will look better later.
28 |
29 | Start by using your favorite terminal text editor. In this example, we'll be using nano.
30 |
31 | ```bash
32 | sudo nano /etc/default/grub
33 | ```
34 |
35 | We'll need to add our secondary GPU's Device ID's to following flag.
36 |
37 | ```bash
38 | vfio-pci.ids=
39 | ```
40 |
41 | Example usage:
42 |
43 | ```bash
44 | vfio-pci.ids=10de:06cd,10de:0be5
45 | ```
46 |
47 | When you're done make sure you use grub-mkconfig
to update the GRUB Bootloader. Restart Required.
48 |
49 | ```bash
50 | sudo grub-mkconfig -o /boot/grub/grub.cfg
51 | ```
52 |
53 |
61 |
--------------------------------------------------------------------------------
/docs/_virtman/05-GPU-Passthrough/02-dGPU/02-KernelParameters/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Setting Kernel Parameters
4 | parent: Dual GPU Passthrough
5 | grand_parent: GPU Passthrough
6 | has_children: true
7 | has_toc: false
8 | nav_order: 2
9 | ---
10 |
11 |
31 |
32 |
33 |
34 |
35 |
36 | This section will allow various host bootloader types to set up the necessary flags needed for dual GPU passthrough usage. This is very similar to the first time you added kernel parameters. Please select the bootloader you use to continue.
37 |
38 | We appreciate PRs for this section, as the goal is very simple but can vary wildly across Linux distributions and their respective bootloaders. If you use something other than listed here, please open an Issue or Pull Request with a contribution for others to use.
39 |
40 |
41 |
42 |
45 |
49 |
50 |
--------------------------------------------------------------------------------
/docs/_virtman/05-GPU-Passthrough/02-dGPU/05-Finish.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Complete!
4 | parent: Dual GPU Passthrough
5 | grand_parent: GPU Passthrough
6 | nav_order: 5
7 | ---
8 |
9 |
21 |
22 |
23 |
24 |
25 |
26 | For further customization, please refer to the write-ups!
27 |
28 | Enjoy a screenshot of High Sierra with a GTX 470 1280MB!
29 |
30 |
31 |
32 |
40 |
--------------------------------------------------------------------------------
/docs/_writeups/02-Custom-Memory-Mapping/01-Prerequisites.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Preparing VM RAM
4 | parent: Custom Memory Mapping
5 | nav_order: 1
6 | ---
7 |
8 |
20 |
21 | # Preparing VM RAM Configuration
22 | #### Proper CMM requires typical RAM amounts.
23 |
24 | While you can technically modify this to fit your custom RAM amounts, I'd like to first explain how you would properly map typical RAM amounts.
25 |
26 | This will correct Virtual Machines with the following guest amounts to the following setup.
27 |
28 | {: .important }
29 | These are recommended guest sizes by myself, If you have 64GB on your Host machine, it logically makes sense (to me) to create a macOS virtual machine with 32GB of RAM. You can of course customize this and create maps to fix, per say, 52GB of RAM, but that is out of the scope of this write up, and if you read everything, you'll understand how to make your own.
30 |
31 | | Host | Guest |
32 | | ---- | ----- |
33 | | 8GB | 4GB, 4 Sticks of 1GB |
34 | | 16GB | 8GB, 4 Sticks of 2GB |
35 | | 32GB | 16GB, 4 Sticks of 4GB |
36 | | 64GB | 32GB, 4 Sticks of 16GB |
37 | | 128GB | 64GB, 4 Sticks of 32GB |
38 | | 256GB | 128GB, 4 Sticks of 64GB |
39 |
40 |
48 |
--------------------------------------------------------------------------------
/docs/_writeups/02-Custom-Memory-Mapping/03-AddingToConfig.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Adding to config.plist
4 | parent: Custom Memory Mapping
5 | nav_order: 3
6 | ---
7 |
8 |
20 |
21 | # Updating config.plist with Custom Memory
22 | #### Tip: Have both plists open in two different ProperTree windows.
23 |
24 | Now that you've modified or opened the included Memory Map ``.plist`` you can open your OpenCore config.plist to apply the custom memory. Navigate to the ``PlatformInfo`` dictionary. Below ``Generic`` you can copy and paste the ``Memory`` from the Memory Map ``.plist``. Make sure to enable the ``CustomMemory`` boolean to ``True``. Go through the devices and verify that it all looks good and ready to boot. On a reboot, you should no longer have the memory errors! Your About Mac should also now properly report the RAM Speed.
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
46 |
--------------------------------------------------------------------------------
/docs/_writeups/02-Custom-Memory-Mapping/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Custom Memory Mapping
4 | description: "This is most often done to fix the following error shown on Mac Pro machines such as the ones we create here, due to the memory stick layout not being what the Mac Pro model expects."
5 | has_children: true
6 | has_toc: false
7 | nav_order: 2
8 | ---
9 |
10 |
22 |
23 |
24 |
25 |
26 |
27 | This write-up goes over how to use the included Memory Maps for standardized RAM sizes, as well as teaches the reader how to create their own maps from the derived information.
28 |
29 |
30 |
31 |
32 |
33 | This is most often done to fix the following error shown on Mac Pro machines such as the ones we create here, due to the memory stick layout not being what the Mac Pro model expects. If you do not have [RestrictEvents](https://github.com/acidanthera/RestrictEvents) set up to fix PCI, you will still have this error present and must map your memory with the legacy method via the OpenCore config.plist
.
34 |
35 |
43 |
--------------------------------------------------------------------------------
/docs/_writeups/04-ThreadPinning/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Thread Pinning
4 | description: "Placeholder"
5 | has_children: true
6 | has_toc: false
7 | nav_order: 4
8 | ---
9 |
10 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 | This is a written guide based on the video mentioned above, if you have further questions or run into any issues, you can ask for help in the DarwinKVM Discord. This guide will help people reserve 1 core for Linux, and pin the other threads to a respective thread on the host system. Adjust according to your needs.
30 |
31 | {: .important }
32 | > The following guide makes the following assumptions:
33 | > - You have the ``hwloc`` package installed.
34 | > - You understand the difference between cores and threads.
35 | > - You want to reserve a core for the host, and map the rest for full potential.
36 | > - You have already done Fake Core Count to maximize core count.
37 |
38 |
46 |
--------------------------------------------------------------------------------
/docs/_writeups/05-VirtIOThread/01-Prerequisites.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: XML Changes
4 | parent: Virtio IO Threads
5 | nav_order: 1
6 | ---
7 |
8 | # Adding and utilizing IO Threads
9 | #### Can speed up virtual disk performance.
10 |
11 | {: .note }
12 | You'll need to have the ``hwloc`` package installed.
13 |
14 | To start, you can run ``lstopo`` in your terminal to view your CPU configuration. You'll want to note your first core (Core L#0), which will then have two threads inside (PU L##, and PU L##). What we need, are the numbers in P##. In my system, the top value is 0, and the bottom value is 8. That means my iothread will target (0,8).
15 |
16 |
17 |
18 |
19 |
20 | On a different system, such as a 6 core systems youll find that the top value is 0, and the bottom value is 6.
21 |
22 | In this case, the io thread would be to (0,6).
23 |
24 |
25 |
26 |
27 |
28 | To add this to the XML, you'll need to add the following line above the `` `` codeblock.
29 |
30 | ```xml
31 | 1
32 | ```
33 |
34 | Then, within the CPU Tune codeblock, add the following
35 |
36 | ```xml
37 |
38 | ...
39 |
40 |
41 |
42 | ```
43 |
44 | Of course, replace the values of (#,#) to what you derived from the earlier information.
45 |
46 | #### Thanks for reading!
47 |
--------------------------------------------------------------------------------
/docs/_writeups/05-VirtIOThread/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Virtio IO Threads
4 | description: "Placeholder"
5 | has_children: true
6 | has_toc: true
7 | nav_order: 5
8 | ---
9 |
10 |
11 |
12 |
13 |
14 | This simple guide explains how to find your first core and utilize it as an IO Thread! This is useful for those who do not pass through an NVMe drive and want to feel some overall speed improvement when using Virtio virtual disks. Install the ``hwloc`` package to be able to use ``lstopo`` to identify pins.
15 |
--------------------------------------------------------------------------------
/docs/_writeups/06-MotherboardAudio/01-FindingALCLayout.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Finding ALC Layout
4 | parent: Motherboard Audio
5 | nav_order: 1
6 | ---
7 |
8 | # Finding ALC Layout
9 | #### Used later when adding aclid to boot-args
10 |
11 | We'll need to have ``alsa-utils`` (On Arch) package installed to be able to use the following command.
12 |
13 | Other distributions can find the equivalent package that holds the ``aplay`` command.
14 |
15 | Ensure you're using the audio device and/or it's active.
16 |
17 | Let's go ahead and issue the following command into a terminal:
18 |
19 | ```
20 | aplay -l
21 | ```
22 |
23 | Here is an example of what it will look like:
24 |
25 |
26 |
27 |
28 |
29 | As you can see, my audio codec is ``ALC1220``. Take note of this somewhere, as it will be needed later.
30 |
31 | ## You can now continue to the next page .
32 |
--------------------------------------------------------------------------------
/docs/_writeups/06-MotherboardAudio/03-AddingKext.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Adding Kext + Finding Layout ID
4 | parent: Motherboard Audio
5 | nav_order: 3
6 | ---
7 |
8 | # Adding/Using AppleALC Kext
9 | #### Includes a chart for finding ALCID
10 |
11 |
12 |
13 |
14 |
15 | We'll now go ahead and add the ``AppleALC.kext`` into our OpenCore image. To use it properly, we must first ``OC Snapshot`` to make sure it's added to our config.plist kexts. Next, we must go to the boot arguments and add the following:
16 |
17 | ```
18 | alcid=xxx
19 | ```
20 | Where, ``xxx`` is the Layout ID that corresponds with your ALC Codec from the previous page.
21 |
22 | In the screenshot above, you can see the use of ``alcid=1``. This was determined from the following chart:
23 |
24 | [Acidanthera, AppleALC Supported Codecs](https://github.com/acidanthera/AppleALC/wiki/Supported-codecs)
25 |
26 | {: .warning }
27 | If your Audio Codec was not in the chart above, you may not have compatible hardware. USB 3.5mm Adapters and USB Mics are great quick alternatives when facing compatibility issues.
28 |
29 | The chart is always changing to support more codecs, which is why it is not hardcoded here. Based on my ALC1220, you can see when referencing the guide I can try these various layouts until my audio is working as expected. You may or may not have to test multiple layouts. I was lucky and was able to simply use ``aclid=1``.
30 |
31 |
32 |
33 |
34 |
35 | Eventually, when you've gotten the right setup, your audio should work as expected!
36 |
37 |
38 |
39 |
40 |
41 | ## You can now continue to the next page .
42 |
--------------------------------------------------------------------------------
/docs/_writeups/06-MotherboardAudio/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Motherboard Audio
4 | description: "Placeholder"
5 | has_children: true
6 | has_toc: true
7 | nav_order: 6
8 | ---
9 |
10 |
11 |
12 |
13 |
14 | {: .important }
15 | This section is dependent on your host hardware! While we may be able to spoof things such as CPU, if you're planning to use your Front Panel or Rear Panel audio on macOS, it is subject to compatibility just as it would be on baremetal! With that being said, the first page will allow you to fetch your hardware information, then the third will help you check if it's compatible.
16 |
--------------------------------------------------------------------------------
/docs/_writeups/07-EvdevKBM/02-EditingConfig.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Editing config files
4 | parent: KB/M sharing with Evdev
5 | nav_order: 2
6 | ---
7 |
8 | ## Editing Config Files
9 |
10 | Use your favorite text editor to make the following changes to:
11 |
12 | ```bash
13 | /etc/libvirt/qemu.conf
14 | ```
15 |
16 | ``Security - uncomment the following line of code and change the value:``
17 | ```bash
18 | security_default_confined = 0
19 | ```
20 |
21 | ``Add these lines to the bottom of the file:``
22 | ```bash
23 | cgroup_device_acl = [
24 | "/dev/null", "/dev/full", "/dev/zero",
25 | "/dev/random", "/dev/urandom",
26 | "/dev/ptmx", "/dev/kvm", "/dev/kqemu",
27 | "/dev/rtc", "/dev/hpet", "/dev/vfio/vfio",
28 | # Your devices go here
29 | ]
30 |
31 | clear_emulator_capabilities = 0
32 | ```
33 |
34 | **Inside ``cgroup_device_acl``**, add the paths to your keyboard and mouse.
35 |
36 | #### Sample configuration:
37 |
38 | ```bash
39 | cgroup_device_acl = [
40 | "/dev/null", "/dev/full", "/dev/zero",
41 | "/dev/random", "/dev/urandom",
42 | "/dev/ptmx", "/dev/kvm", "/dev/kqemu",
43 | "/dev/rtc","/dev/hpet", "/dev/vfio/vfio",
44 | # Your devices go here
45 | "/dev/input/by-id/usb-30fa_USB_Optical_Mouse-event-mouse",
46 | "/dev/input/by-id/usb-EVGA_Z12_Gaming_Keyboard-event-kbd",
47 | ]
48 |
49 | clear_emulator_capabilities = 0
50 | ```
51 |
52 | Save the file, then restart the libvirtd service.
53 | ```bash
54 | systemctl restart libvirtd
55 | ```
56 |
57 | ## You can now continue to the next page .
58 |
--------------------------------------------------------------------------------
/docs/_writeups/07-EvdevKBM/04-VoodooPS2.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Adding VoodooPS2
4 | parent: KB/M sharing with Evdev
5 | nav_order: 4
6 | ---
7 | ## Adding VoodooPS2
8 |
9 | > This is only for MacOS 10.14 (Mojave) And Older! For **OS X 10.11** (El Capitan) and lower, you will instead need to download the original PS2 driver by **RehabMan** here . Note that these older drivers are built for x64 systems, but you can manually build the x32 versions in Xcode with the source code here .
10 | {: .headsup }
11 | Start by downloading the latest release version of ``VoodooPS2`` from here (for macOS 10.12 Sierra and higher).
12 |
13 | Add the kext to the Kexts folder in your OpenCore disk image, and remember to ``OC Snapshot`` the ``config.plist`` when finished. The necessary kexts (``VoodooPS2Keyboard, VoodooPS2Mouse``) will be added automatically for you by ProperTree.
14 |
15 | Now, boot up macOS, and enjoy switching your keyboard and mouse from macOS to Linux!
16 |
17 | {: .note }
18 | > Usually, the **Option (⌥)** and **Command (⌘)** keys on the keyboard maps to the **Alt** and the **Windows (⊞)** keys respectively. The original PS2 driver (by RehabMan) will swap these keymaps, however.
19 | >
20 | > You can change this behavior is to go to **Settings > Keyboard > Keyboard Shortcuts > Modifier Keys** (or something equivalent) in macOS, and swap the action keys for Option (⌥) and Command (⌘).
21 |
22 | #### Thanks for reading!
23 |
--------------------------------------------------------------------------------
/docs/_writeups/07-EvdevKBM/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: KB/M sharing with Evdev
4 | description: "Placeholder"
5 | has_children: true
6 | has_toc: true
7 | nav_order: 7
8 | ---
9 |
10 |
11 |
12 |
13 |
14 | This guide will show you how to configure Evdev to allow the host (Linux) and the guest (OS X / macOS) to share a mouse and keyboard with a simple keyboard shortcut!
15 |
--------------------------------------------------------------------------------
/docs/_writeups/08-USB-Mapping/01-Prerequisites.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Prerequisites
4 | parent: USB Mapping
5 | nav_order: 1
6 | ---
7 |
8 | # Prerequisites
9 | #### Placeholder caption
10 |
--------------------------------------------------------------------------------
/docs/_writeups/08-USB-Mapping/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: USB Mapping
4 | description: "Placeholder"
5 | has_children: true
6 | has_toc: true
7 | nav_order: 8
8 | ---
9 |
10 |
11 |
12 |
13 |
14 | {: .warning }
15 | This section is under construction. It may have missing or incomplete information! Wait until this warning is no longer present, to follow the writeup.
16 |
--------------------------------------------------------------------------------
/docs/_writeups/09-RestrictEvents/01-Prerequisites.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Prerequisites
4 | parent: RestrictEvents Usage
5 | nav_order: 1
6 | ---
7 |
8 | # Prerequisites
9 | #### Placeholder caption
10 |
--------------------------------------------------------------------------------
/docs/_writeups/09-RestrictEvents/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: RestrictEvents Usage
4 | description: "Placeholder"
5 | has_children: true
6 | has_toc: true
7 | nav_order: 9
8 | ---
9 |
10 |
11 |
12 |
13 |
14 | {: .warning }
15 | This section is under construction. It may have missing or incomplete information! Wait until this warning is no longer present, to follow the writeup.
16 |
--------------------------------------------------------------------------------
/docs/_writeups/10-DeviceProperties/01-Prerequisites.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Prerequisites
4 | parent: DeviceProperties Guides
5 | nav_order: 1
6 | ---
7 |
8 |
--------------------------------------------------------------------------------
/docs/_writeups/10-DeviceProperties/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: DeviceProperties Guides
4 | description: "Placeholder"
5 | has_children: true
6 | has_toc: true
7 | nav_order: 10
8 | ---
9 |
10 |
11 |
12 |
13 |
14 | {: .warning }
15 | This section is under construction. It may have missing or incomplete information! Wait until this warning is no longer present, to follow the writeup.
16 |
17 | This writeup goes over the basics of adding Device Properties to a PCIe Object within macOS via OpenCore.
--------------------------------------------------------------------------------
/docs/_writeups/11-sPPT/01-Prerequisites.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Prerequisites
4 | parent: sPPT / Zero-RPM Disable
5 | nav_order: 1
6 | ---
7 |
8 | # Prerequisites
9 | #### Placeholder caption
10 |
--------------------------------------------------------------------------------
/docs/_writeups/11-sPPT/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: sPPT / Zero-RPM Disable
4 | description: "Placeholder"
5 | has_children: true
6 | has_toc: true
7 | nav_order: 11
8 | ---
9 |
10 |
11 |
12 |
13 |
14 | {: .warning }
15 | This section is under construction. It may have missing or incomplete information! Wait until this warning is no longer present, to follow the writeup.
16 |
--------------------------------------------------------------------------------
/docs/_writeups/12-DisplayOverrides/01-Prerequisites.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Fetching Hackintool
4 | parent: Display Overrides
5 | nav_order: 1
6 | ---
7 |
8 | # Fetching Hackintool
9 | #### We can leverage existing tools to dump EDID information
10 |
11 | Lets begin by getting [Hackintool](https://github.com/benbaker76/Hackintool/releases) onto our system. Choosing the latest release, we can then unzip and move the Hackintool.app to the Applications folder. Go ahead and launch the application.
12 |
13 |
14 |
15 |
16 |
17 | ## You can now continue to the next page .
18 |
--------------------------------------------------------------------------------
/docs/_writeups/12-DisplayOverrides/02-DumpingDisplay.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Dumping Display Configuration
4 | parent: Display Overrides
5 | nav_order: 2
6 | ---
7 |
8 | # Dumping Display Configuration
9 | #### We can leverage existing tools to dump current display information
10 |
11 | We'll use the Displays tab in Hackintool to dump all the detected Displays configuration files. Essentially plist files which hold the attributes for our displays. This will generate a few things on our desktop. What we care about, is the folder named our Display Vendor ID of the problematic display.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | Be sure to remove the injected EDID included in the plist by Hackintool.
26 |
27 |
28 |
29 |
30 |
31 | ## You can now continue to the next page .
32 |
--------------------------------------------------------------------------------
/docs/_writeups/12-DisplayOverrides/03-InstallingOverride.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Installing Overrides
4 | parent: Display Overrides
5 | nav_order: 3
6 | ---
7 |
8 | # Installing Overrides
9 | #### macOS provides a native method for overriding Display data.
10 |
11 | We'll need to navigate to ``/Library`` with Finder or a Terminal, to create a new folder titled "Displays". With that done, navigate within that folder and proceed to make folders until you get the following path. As far as I know, the path is case-sensitive.
12 |
13 | ```
14 | /Library/Displays/Contents/Resources/Overrides
15 | ```
16 |
17 | In here, you can drag in the folder created by Hackintool with the Vendor ID of our problematic display. You can add more than one, as many as you need.
18 |
19 | Example of properly installed overrride
20 |
21 | ```
22 | /Library/Displays/Contents/Resources/Overrides/DisplayVendorID-593a/DisplayProductID-1006
23 | ```
24 |
25 |
26 |
27 |
28 |
29 | Available Overrides
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/docs/_writeups/12-DisplayOverrides/04-DisplayIsTV.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: DisplayIsTV
4 | parent: Display Overrides
5 | nav_order: 4
6 | ---
7 |
8 | # DisplayIsTV
9 | #### Disabling isTelevision detection.
10 |
11 | Open up the installed Override plist file, you can do this via TextEdit or ProperTree.
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | As you can see, you will have to add the following section to the plist.
22 |
23 | ```
24 | DisplayIsTV
25 |
26 | ```
27 | After a reboot, you can open System Information and check Graphics/Displays.
28 |
29 | ## Before
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 | ## After
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 | ## You can now return to the Display Overrides Table of Contents.
50 |
--------------------------------------------------------------------------------
/docs/_writeups/12-DisplayOverrides/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Display Overrides
4 | description: "Placeholder"
5 | has_children: true
6 | has_toc: true
7 | nav_order: 12
8 | ---
9 |
10 |
11 |
12 |
13 |
14 | {: .important }
15 | This information is thanks to mafredri and the macos-display-overrides repository on Github, you can cd to the directory included in this repo for more in depth information!
16 |
17 | This guide will cover the basics of using macOS's Display Overrides ability to fix some issues with incompatible displays when using a hac. You'll first need to determine what is wrong with your current display. Possible fixes that are covered in this write-up are below.
18 |
19 | | Issue | Fix |
20 | | ---- | ----- |
21 | | Display is recognized as a TV in System Information, thus does not allow a user to use Night Shift | Can use DisplayIsTV False override |
22 | | HiDPI modes are not supported or do not appear | Possible to make them appear in settings by overriding supported resolutions list. |
23 |
--------------------------------------------------------------------------------
/docs/_writeups/13-Bridge/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Bridge Networking
4 | description: "Placeholder"
5 | has_children: true
6 | has_toc: true
7 | nav_order: 13
8 | ---
9 |
10 |
11 |
12 |
13 |
14 | {: .warning }
15 | This is for Desktops, using ethernet. If you are on a laptop, or using WI-FI on your hypervisor please note this method will not work. There may be other sources but it's not this one.
16 |
17 |
18 |
19 | This write-up is a texted based guide based on this video. If you'd like more information on the inner workings of libvirtd's default manager, as well as how to manually set things up, you can refer to the video below. It also includes the references for the automation files used with systemd-networkd.
20 |
21 | {: .important }
22 | > The following guide makes the following assumptions:
23 | > - You have systemd, and have the ability to use systemd-networkd
24 | > - You are using NetworkManager, so the steps include how to disable it.
25 | > - Can solve route tables, and you know your routers default gateway.
26 | >
27 | > These assumptions will also allow you to use the submodules automated script.
28 |
--------------------------------------------------------------------------------
/docs/_writeups/14-HostOC/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Host OS Overclocking
4 | description: "Placeholder"
5 | has_children: true
6 | has_toc: true
7 | nav_order: 14
8 | ---
9 |
10 |
11 |
12 |
13 |
14 | {: .new }
15 | This write up utilizes ``linux-tools`` to quickly apply Scaling Governors via ``cpupower``! There is a script that will walk through applying a governor! Simply execute ``./cpuOC.sh``!
16 |
--------------------------------------------------------------------------------
/docs/_writeups/15-OCLP/01-Prerequisites.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Prerequisites
4 | parent: Legacy NVIDIA Patching
5 | nav_order: 1
6 | ---
7 |
8 | # Prerequisites
9 |
10 | {: .warning }
11 | Be advised, that going through with this will result in your macOS experience being worse than if you stick to High Sierra and that using OCLP will break several macOS security features.
12 |
13 | Start by opening up config.plist and navigating to the section where ``boot-args`` is located.
14 | Edit the key ``csr-active-status`` to ``<03 08 00 00 00>``, this will disable parts of System Integrity Protection.
15 |
16 | Next, you'll want to add WhateverGreen to your Kexts (Requires Lilu if it isn't already installed) and append the following to your boot arguments:
17 | - ``ngfxgl=1``
18 | - ``ngfxcompat=1``
19 | - ``amfi_get_out_of_my_way=1``, this disables AMFI.
20 | - ``ipc_control_port_options=0``, this can fix some Electron apps crashing due to AMFI being disabled
21 |
22 | Dortania's AMFIPass can be used in some cases, however this hasn't been tested
23 |
24 | ## You can now continue to the next page .
25 |
--------------------------------------------------------------------------------
/docs/_writeups/15-OCLP/02-PatchingTheOS.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Patching The OS
4 | parent: Legacy NVIDIA Patching
5 | nav_order: 2
6 | ---
7 |
8 | # Patching the OS
9 |
10 | To get started, download a copy of [OpenCore Legacy Patcher](https://github.com/dortania/OpenCore-Legacy-Patcher), move this to your Applications folder and run the app.
11 |
12 | Once it loads, you should be greeted with several options, click ``Post-Install Root patch`` and OCLP should start working its magic.
13 |
14 | When it's all done, it should prompt you to reboot and in no time you'll be up and running!
15 |
--------------------------------------------------------------------------------
/docs/_writeups/15-OCLP/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Legacy NVIDIA Patching
4 | description: "Placeholder"
5 | has_children: true
6 | has_toc: true
7 | nav_order: 15
8 | ---
9 |
10 |
11 |
12 |
13 |
14 | This writeup goes over how to get NVIDIA GPUs working on newer macOS versions via OpenCore Legacy Patcher.
15 |
--------------------------------------------------------------------------------
/docs/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/android-chrome-192x192.png
--------------------------------------------------------------------------------
/docs/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/android-chrome-512x512.png
--------------------------------------------------------------------------------
/docs/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/apple-touch-icon.png
--------------------------------------------------------------------------------
/docs/assets/Acidanthera/OpenCore-DEBUG-Contents.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Acidanthera/OpenCore-DEBUG-Contents.png
--------------------------------------------------------------------------------
/docs/assets/Acidanthera/OpenCore-Example-RootUSB.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Acidanthera/OpenCore-Example-RootUSB.png
--------------------------------------------------------------------------------
/docs/assets/Acidanthera/OpenCore-Release-104-Artifacts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Acidanthera/OpenCore-Release-104-Artifacts.png
--------------------------------------------------------------------------------
/docs/assets/Acidanthera/OpenCore-Releases-Tab.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Acidanthera/OpenCore-Releases-Tab.png
--------------------------------------------------------------------------------
/docs/assets/Acidanthera/OpenCore-SampleToConfig.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Acidanthera/OpenCore-SampleToConfig.png
--------------------------------------------------------------------------------
/docs/assets/Acidanthera/Sample-Default-Language-Result.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Acidanthera/Sample-Default-Language-Result.png
--------------------------------------------------------------------------------
/docs/assets/Acidanthera/Sample-Default-Language.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Acidanthera/Sample-Default-Language.png
--------------------------------------------------------------------------------
/docs/assets/Acidanthera/Sample-PCI-Kernel-Patch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Acidanthera/Sample-PCI-Kernel-Patch.png
--------------------------------------------------------------------------------
/docs/assets/Acidanthera/Sample-Strip-Commands-Results.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Acidanthera/Sample-Strip-Commands-Results.png
--------------------------------------------------------------------------------
/docs/assets/Acidanthera/Sample-Strip-Commands.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Acidanthera/Sample-Strip-Commands.png
--------------------------------------------------------------------------------
/docs/assets/Acidanthera/Sample-Updated-SMBIOS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Acidanthera/Sample-Updated-SMBIOS.png
--------------------------------------------------------------------------------
/docs/assets/Carnations/Carnations_logo_1000px.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Carnations/Carnations_logo_1000px.png
--------------------------------------------------------------------------------
/docs/assets/Carnations/HighSierraNoGPUAccel.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Carnations/HighSierraNoGPUAccel.gif
--------------------------------------------------------------------------------
/docs/assets/Carnations/SonomaGPUAccel.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Carnations/SonomaGPUAccel.gif
--------------------------------------------------------------------------------
/docs/assets/Carnations/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Carnations/favicon.ico
--------------------------------------------------------------------------------
/docs/assets/DarwinFetch/BaseSystemInstallLegacyScreenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinFetch/BaseSystemInstallLegacyScreenshot.png
--------------------------------------------------------------------------------
/docs/assets/DarwinFetch/BootingRecovery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinFetch/BootingRecovery.png
--------------------------------------------------------------------------------
/docs/assets/DarwinFetch/DarwinFetchDirectoryPowerPC.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinFetch/DarwinFetchDirectoryPowerPC.png
--------------------------------------------------------------------------------
/docs/assets/DarwinFetch/DarwinFetchDirectoryRecovery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinFetch/DarwinFetchDirectoryRecovery.png
--------------------------------------------------------------------------------
/docs/assets/DarwinFetch/DarwinFetchMainMenu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinFetch/DarwinFetchMainMenu.png
--------------------------------------------------------------------------------
/docs/assets/DarwinFetch/DarwinFetchPowerPCCheetah.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinFetch/DarwinFetchPowerPCCheetah.png
--------------------------------------------------------------------------------
/docs/assets/DarwinFetch/DarwinFetchPowerPCSources.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinFetch/DarwinFetchPowerPCSources.png
--------------------------------------------------------------------------------
/docs/assets/DarwinFetch/DarwinFetchRecoverySonoma.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinFetch/DarwinFetchRecoverySonoma.png
--------------------------------------------------------------------------------
/docs/assets/DarwinFetch/DarwinFetchRecoverySources.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinFetch/DarwinFetchRecoverySources.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/404.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/404.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/CornerLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/CornerLogo.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/Dynamic-XML-Internal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/Dynamic-XML-Internal.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/Dynamic-XML-MacProModel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/Dynamic-XML-MacProModel.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/Dynamic-XML-Question-UIOpen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/Dynamic-XML-Question-UIOpen.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/Header.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/Header.psd
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/HeaderTextOnly.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/HeaderTextOnly.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/Host-HTOP-Example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/Host-HTOP-Example.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/MacPro71-Memory-Configuration-Error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/MacPro71-Memory-Configuration-Error.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/MainMenu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/MainMenu.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/MemoryMapGuestLayout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/MemoryMapGuestLayout.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/MemoryMapHostMobo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/MemoryMapHostMobo.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/MemoryMappedMacPro71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/MemoryMappedMacPro71.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/PTCustomMemoryConfig.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/PTCustomMemoryConfig.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/PTMemMap32GBDefault.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/PTMemMap32GBDefault.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/PTMemMapLayout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/PTMemMapLayout.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/PTMemRAMEmptyDIMM.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/PTMemRAMEmptyDIMM.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/PTMemRAMFake.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/PTMemRAMFake.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/PTMemRAMReal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/PTMemRAMReal.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/Template-README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | DKVM --- ---
6 | Allows --- for your DKVM.
7 |
8 | ## About
9 |
10 | This tool --- for use with ---. It performs the following actions:
11 |
12 | -
13 | -
14 | -
15 | -
16 | -
17 | -
18 |
19 | ## Requirements
20 |
21 | * --- :
22 | * ---
23 | * ---
24 | * ---
25 | * ---
26 |
27 | ## Usage
28 |
29 |
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/XML-Importer-UI-MP71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/XML-Importer-UI-MP71.png
--------------------------------------------------------------------------------
/docs/assets/DarwinKVM/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinKVM/favicon.ico
--------------------------------------------------------------------------------
/docs/assets/DarwinOCPkg/BOOTRoot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinOCPkg/BOOTRoot.png
--------------------------------------------------------------------------------
/docs/assets/DarwinOCPkg/DiskProvisionOCPkgConfigInstall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinOCPkg/DiskProvisionOCPkgConfigInstall.png
--------------------------------------------------------------------------------
/docs/assets/DarwinOCPkg/DiskProvisionOCPkgInstallation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinOCPkg/DiskProvisionOCPkgInstallation.png
--------------------------------------------------------------------------------
/docs/assets/DarwinOCPkg/DocsRoot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinOCPkg/DocsRoot.png
--------------------------------------------------------------------------------
/docs/assets/DarwinOCPkg/DriversRoot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinOCPkg/DriversRoot.png
--------------------------------------------------------------------------------
/docs/assets/DarwinOCPkg/EFIRoot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinOCPkg/EFIRoot.png
--------------------------------------------------------------------------------
/docs/assets/DarwinOCPkg/OCRoot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinOCPkg/OCRoot.png
--------------------------------------------------------------------------------
/docs/assets/DarwinOCPkg/RepositoryRoot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinOCPkg/RepositoryRoot.png
--------------------------------------------------------------------------------
/docs/assets/DarwinOCPkg/X64Root.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DarwinOCPkg/X64Root.png
--------------------------------------------------------------------------------
/docs/assets/Discord/discord-logo-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Discord/discord-logo-white.png
--------------------------------------------------------------------------------
/docs/assets/Discord/discord-mark-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Discord/discord-mark-white.png
--------------------------------------------------------------------------------
/docs/assets/DiskProvision/DiskProvisionAddingOCAlternative.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DiskProvision/DiskProvisionAddingOCAlternative.png
--------------------------------------------------------------------------------
/docs/assets/DiskProvision/DiskProvisionCreatingOCImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DiskProvision/DiskProvisionCreatingOCImage.png
--------------------------------------------------------------------------------
/docs/assets/DiskProvision/DiskProvisionCreatingPPCHDD.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DiskProvision/DiskProvisionCreatingPPCHDD.png
--------------------------------------------------------------------------------
/docs/assets/DiskProvision/DiskProvisionHeroImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DiskProvision/DiskProvisionHeroImage.png
--------------------------------------------------------------------------------
/docs/assets/DiskProvision/DiskProvisionMainMenu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DiskProvision/DiskProvisionMainMenu.png
--------------------------------------------------------------------------------
/docs/assets/DiskProvision/DiskProvisionMountPointsDirectory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DiskProvision/DiskProvisionMountPointsDirectory.png
--------------------------------------------------------------------------------
/docs/assets/DiskProvision/DiskProvisionMountingDiskImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DiskProvision/DiskProvisionMountingDiskImage.png
--------------------------------------------------------------------------------
/docs/assets/DiskProvision/DiskProvisionOCPkgConfigInstall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DiskProvision/DiskProvisionOCPkgConfigInstall.png
--------------------------------------------------------------------------------
/docs/assets/DiskProvision/DiskProvisionOCPkgInstallation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DiskProvision/DiskProvisionOCPkgInstallation.png
--------------------------------------------------------------------------------
/docs/assets/DiskProvision/DiskProvisionOCUnmounting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DiskProvision/DiskProvisionOCUnmounting.png
--------------------------------------------------------------------------------
/docs/assets/DiskProvision/DiskProvisionOpenCoreMounted.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DiskProvision/DiskProvisionOpenCoreMounted.png
--------------------------------------------------------------------------------
/docs/assets/DiskProvision/DiskProvisionPowerPCImagesDB.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/DiskProvision/DiskProvisionPowerPCImagesDB.png
--------------------------------------------------------------------------------
/docs/assets/GitHub/GitHub_Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/GitHub/GitHub_Logo.png
--------------------------------------------------------------------------------
/docs/assets/GitHub/GitHub_Logo_White.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/GitHub/GitHub_Logo_White.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-ACPI.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-ACPI.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-ACS-Patches.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-ACS-Patches.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Add-REOS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Add-REOS.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Booter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Booter.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Choosing-Target.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Choosing-Target.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Complete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Complete.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-CustomMemoryMapping.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-CustomMemoryMapping.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-DarwinOCPkg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-DarwinOCPkg.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-DeviceProperties.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-DeviceProperties.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-DiskImageContents.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-DiskImageContents.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-DiskImageCreation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-DiskImageCreation.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-DiskProvision.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-DiskProvision.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Drivers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Drivers.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-EFI-Structure-Config.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-EFI-Structure-Config.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Fake-Core-Count.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Fake-Core-Count.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Fetching-Installer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Fetching-Installer.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Full-Installer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Full-Installer.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-GPUPT.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-GPUPT.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Guest-Target-Arch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Guest-Target-Arch.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Guest-Target-Decision.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Guest-Target-Decision.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-IOMMU-Viability.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-IOMMU-Viability.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Importer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Importer.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Initial-Configuration.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Initial-Configuration.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Introduction.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Introduction.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Kernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Kernel.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Kexts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Kexts.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-MP51.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-MP51.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-MP51orOlder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-MP51orOlder.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-MP71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-MP71.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Misc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Misc.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-NVRAM.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-NVRAM.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-OC-IMG-Creation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-OC-IMG-Creation.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-OCC.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-OCC.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-OCPKGtoDOCPKG.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-OCPKGtoDOCPKG.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-OpenCorePkg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-OpenCorePkg.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-PlatformInfo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-PlatformInfo.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-PowerPC-Installer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-PowerPC-Installer.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-PowerPC.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-PowerPC.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-ProperTree.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-ProperTree.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Resources.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Resources.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-SourcingOCPKG.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-SourcingOCPKG.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Terminal-VDISK.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Terminal-VDISK.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Thread-Pinning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Thread-Pinning.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Tools.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-UEFI.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-UEFI.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-VDISK-CreateManage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-VDISK-CreateManage.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-VMM.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-VMM.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-Write-Ups.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-Write-Ups.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-dGPU-PT.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-dGPU-PT.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-recoveryOS-Example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-recoveryOS-Example.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-recoveryOS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-recoveryOS.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-sGPU-PT.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-sGPU-PT.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header-x86.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header-x86.png
--------------------------------------------------------------------------------
/docs/assets/Headers/Header404.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/Header404.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderAMDGPUSupport.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderAMDGPUSupport.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderAboutThisProject.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderAboutThisProject.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderAdvancedNetworking.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderAdvancedNetworking.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderArchInstall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderArchInstall.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderBIOSSettings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderBIOSSettings.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderCPUSupportCheck.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderCPUSupportCheck.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderChangelog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderChangelog.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderCompatibilityCharts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderCompatibilityCharts.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderCurrentTasks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderCurrentTasks.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderDebianBased.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderDebianBased.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderDocsLayout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderDocsLayout.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderFedoraWorkstation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderFedoraWorkstation.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderGPUSupportCharts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderGPUSupportCharts.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderGRUBBootloader.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderGRUBBootloader.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderGallery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderGallery.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderImportanceOfHW.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderImportanceOfHW.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderKernelParameters.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderKernelParameters.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderKnowYourHardware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderKnowYourHardware.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderNVIDIAGPUSupport.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderNVIDIAGPUSupport.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderNetworkingConfiguration.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderNetworkingConfiguration.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderNobaraProject.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderNobaraProject.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderPackageConfiguration.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderPackageConfiguration.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderPackageInstallation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderPackageInstallation.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderPostSupportCheck.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderPostSupportCheck.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderRequirements.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderRequirements.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderSettingExpectations.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderSettingExpectations.png
--------------------------------------------------------------------------------
/docs/assets/Headers/HeaderSysDBoot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Headers/HeaderSysDBoot.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCanopyChardonnay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCanopyChardonnay.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCanopyGoldenGate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCanopyGoldenGate.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCanopySyrah.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCanopySyrah.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreACPIAdd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreACPIAdd.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreALCBootArg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreALCBootArg.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreBooterQuirks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreBooterQuirks.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreDeviceProperties.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreDeviceProperties.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreEFIComplete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreEFIComplete.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreEFIComplete2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreEFIComplete2.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreFPAFinished.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreFPAFinished.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreFPANewDevProp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreFPANewDevProp.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreFPARemoveBoot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreFPARemoveBoot.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreKernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreKernel.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreLocalCreation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreLocalCreation.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreMacPro21Complete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreMacPro21Complete.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreMacPro41Complete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreMacPro41Complete.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreMisc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreMisc.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreNVRAM.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreNVRAM.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCorePkgBase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCorePkgBase.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCorePlatformInfo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCorePlatformInfo.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCorePlatformInfo21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCorePlatformInfo21.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCorePlatformInfo41.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCorePlatformInfo41.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreProMacACPI.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreProMacACPI.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreProMacBooter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreProMacBooter.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreProMacComplete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreProMacComplete.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreProMacDevProps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreProMacDevProps.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreProMacKernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreProMacKernel.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreProMacMisc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreProMacMisc.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreProMacNVRAM.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreProMacNVRAM.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreProMacPlatformInfo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreProMacPlatformInfo.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreProMacUEFI.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreProMacUEFI.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreProMacUEFI2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreProMacUEFI2.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreProperTree.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreProperTree.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreRGXExample.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreRGXExample.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreSonomaInstallationComplete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreSonomaInstallationComplete.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreSonomaRecoveryBoot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreSonomaRecoveryBoot.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreSonomaRecoveryInstallation1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreSonomaRecoveryInstallation1.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreSonomaRecoveryInstallation2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreSonomaRecoveryInstallation2.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreSonomaSecondBootPhase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreSonomaSecondBootPhase.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreSonomaThirdBootPhase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreSonomaThirdBootPhase.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreUEFI.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreUEFI.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreUnmount.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreUnmount.png
--------------------------------------------------------------------------------
/docs/assets/OpenCore/OpenCoreVMBootRecovery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/OpenCore/OpenCoreVMBootRecovery.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/ACPIExpanded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/ACPIExpanded.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/ACPIQuirksExpandedHighlighted.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/ACPIQuirksExpandedHighlighted.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/BaseImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/BaseImage.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/DevicePropertiesExpandedHighlighted.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/DevicePropertiesExpandedHighlighted.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/KernelSchemeExpanded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/KernelSchemeExpanded.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/OverviewACPI.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/OverviewACPI.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/OverviewBooter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/OverviewBooter.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/OverviewDevProps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/OverviewDevProps.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/OverviewKernel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/OverviewKernel.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/OverviewMisc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/OverviewMisc.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/OverviewNVRAM.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/OverviewNVRAM.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/OverviewPlatInfo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/OverviewPlatInfo.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/OverviewUEFI.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/OverviewUEFI.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/ProperTreeFiles.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/ProperTreeFiles.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/ProperTreePlist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/ProperTreePlist.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/ProperTreeRepo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/ProperTreeRepo.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/ProperTreeSnapshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/ProperTreeSnapshot.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/ProperTreeUntitled1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/ProperTreeUntitled1.png
--------------------------------------------------------------------------------
/docs/assets/ProperTree/RootExpanded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/ProperTree/RootExpanded.png
--------------------------------------------------------------------------------
/docs/assets/Template-InstallGuide/00-Introduction.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Introduction
4 | parent: -----
5 | nav_order: 1
6 | ---
7 |
8 | ----- Configuration Guide
9 | Download the following tools required for modifications.
10 |
11 | | Tool | Status | Description |
12 | | ----- | ----- | ----- |
13 | | [Python](https://www.python.org/downloads/) | Required | Needed as a dependency. |
14 | | [ProperTree](https://github.com/corpnewt/ProperTree) | Required | Software that required Python, provides GUI and Tools for config.plist |
15 | | [GenSMBIOS](https://github.com/corpnewt/GenSMBIOS) | Required | Must generate clean SMBIOS information for iServices |
16 | | [DarwinOCPkg](https://github.com/royalgraphx/DarwinOCPkg/blob/main/Docs/Sample.plist) | Required | Need Docs/Sample.plist renamed to config.plist in OC folder. |
17 |
18 | Be sure you meet the following requirements to begin configuring your OC.
19 |
20 | **1. Valid Python Install**
21 | - Required as a dependency for ProperTree.
22 |
23 | **2. ProperTree:**
24 | - This will allow you to use tools like "OC Clean Snapshot" which will scan your OC folder and add the various files to your config.plist automatically and in the correct order.
25 |
26 | **3. GenSMBIOS**
27 | - Required to generate a serial number, you cannot log into iServices until you properly generate SMBIOS information and use that on your config.plist
28 |
29 | **4. [Sample.plist](https://github.com/royalgraphx/DarwinOCPkg/blob/main/Docs/Sample.plist)**
30 | - Base that you change to config.plist, and begin to modify.
31 |
32 | ## You can now continue to the next page .
33 |
--------------------------------------------------------------------------------
/docs/assets/Template-InstallGuide/01-ACPI.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: ACPI
4 | parent: -----
5 | nav_order: 2
6 | ---
7 |
8 | # ACPI
9 |
10 |
11 |
12 | ## Add
13 |
14 | This section of the config is meant to expose the various ACPI in your OC folder. This along with many of the other sections will be auto-filled by simply going to ``File -> OC Clean Snapshot`` and going to the OC folder in your OpenCore.img mount point.
15 |
16 | ## Delete
17 |
18 | This blocks certain ACPI tables from loading, for us, we can ignore this.
19 |
20 | ## Patch
21 |
22 | This section allows us to dynamically modify parts of the ACPI (DSDT, SSDT, etc.) via OpenCore. For us, our patches are handled by our SSDTs. This is a much cleaner solution as this will allow us to boot Windows and other OSes with OpenCore for dual or multi-boot configurations.
23 |
24 | ## Quirks
25 |
26 | For settings relating to ACPI, leave everything here as default as we have no use for these quirks.
27 |
28 | ## You can now continue to the next page .
29 |
--------------------------------------------------------------------------------
/docs/assets/Template-InstallGuide/02-Booter.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Booter
4 | parent: -----
5 | nav_order: 3
6 | ---
7 |
8 | # Booter
9 |
10 |
11 |
12 | ## MmioWhitelist
13 |
14 | This section is allowing spaces to be passthrough to macOS that are generally ignored, useful when paired with DevirtualiseMmio. We can ignore this for our Virtual Machine use cases generally.
15 |
16 | ## Patch
17 |
18 | This contains general patches, for us, we can ignore this.
19 |
20 | ## Quirks
21 |
22 | Don't skip over this section, we'll be changing the following:
23 |
24 | | Quirk | Value | Description |
25 | | ----- | ----- | -----. |
26 | | ----- | ----- | -----. |
27 | | ----- | ----- | -----. |
28 | | ----- | ----- | -----. |
29 | | ----- | ----- | -----. |
30 |
31 | ## You can now continue to the next page .
32 |
--------------------------------------------------------------------------------
/docs/assets/Template-InstallGuide/03-DeviceProperties.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Device Properties
4 | parent: -----
5 | nav_order: 4
6 | ---
7 |
8 | # Device Properties
9 |
10 |
11 |
12 | ## Add
13 |
14 | This allows you to add properties to various devices using its PciRoot address. For now, and in most cases we can ignore this. An example would be: overriding an ethernet controller to appear as built-in so that macOS allows iServices to work. On Virtual Machines, we only need to override/add properties to passed-through devices, like GPUs or audio controllers. For our initial setup, we will leave this section empty.
15 |
16 | ## Delete
17 |
18 | This allows you to delete properties of various devices using its PciRoot address. For now, and in most cases we can ignore this.
19 |
20 | ## You can now continue to the next page .
21 |
--------------------------------------------------------------------------------
/docs/assets/Template-InstallGuide/09-Complete.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | title: Completion
4 | parent: -----
5 | nav_order: 10
6 | ---
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Congratulations! You've configured your config.plist!
15 |
16 |
17 |
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VMMDarwinPPC.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VMMDarwinPPC.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VMMemoryError.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VMMemoryError.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManAddBridgeNIC.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManAddBridgeNIC.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManAddFPA.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManAddFPA.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManAddOpenCore1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManAddOpenCore1.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManAddOpenCore2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManAddOpenCore2.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManAddRecoveryDisplay1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManAddRecoveryDisplay1.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManAddRecoveryDisplay2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManAddRecoveryDisplay2.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManAddVirtIOInstallation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManAddVirtIOInstallation.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManAddVirtIOInstallation2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManAddVirtIOInstallation2.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManAddingEvdevDevices.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManAddingEvdevDevices.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManDebuggingSerial.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManDebuggingSerial.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManDebuggingSerialAddHW.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManDebuggingSerialAddHW.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManDefaultNetworkNIC.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManDefaultNetworkNIC.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManDualGPUPassthroughAddNVME.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManDualGPUPassthroughAddNVME.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManDualGPUPassthroughAddUSBController1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManDualGPUPassthroughAddUSBController1.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManDualGPUPassthroughAddUSBController2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManDualGPUPassthroughAddUSBController2.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManEvdevInputDetails.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManEvdevInputDetails.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManEvdevInputXML.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManEvdevInputXML.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManExampleReadyToInstall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManExampleReadyToInstall.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManFCorePage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManFCorePage.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManFPAAfterFix.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManFPAAfterFix.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManFPAAttempt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManFPAAttempt.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManFPAAttemptError.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManFPAAttemptError.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManFPAAttemptReason.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManFPAAttemptReason.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManFPABeforeFix.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManFPABeforeFix.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddGPU.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddGPU.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddGPUAudio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddGPUAudio.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddMultithreading.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddMultithreading.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddNVME.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddNVME.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddSecondaryGPU.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddSecondaryGPU.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddSecondaryGPUAudio.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddSecondaryGPUAudio.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddUSBController1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddUSBController1.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddUSBController2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughAddUSBController2.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughCompletedExample.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughCompletedExample.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughCorrectAudioBusAfter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughCorrectAudioBusAfter.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughCorrectAudioBusBefore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughCorrectAudioBusBefore.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughCorrectedGPUMultifunction.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughCorrectedGPUMultifunction.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughFindGPUBus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughFindGPUBus.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughRemoveRecoveryKBM.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughRemoveRecoveryKBM.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughRemoveVirtIODisplay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManGPUPassthroughRemoveVirtIODisplay.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManLegacyAddNICe1000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManLegacyAddNICe1000.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManLegacyAddNICvmxnet3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManLegacyAddNICvmxnet3.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManLegacyKVMAddDisplay1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManLegacyKVMAddDisplay1.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManLegacyKVMAddDisplay2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManLegacyKVMAddDisplay2.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManLegacyKVMAddSATA.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManLegacyKVMAddSATA.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManLegacyKVMCompleteExample1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManLegacyKVMCompleteExample1.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManLegacyKVMSetBootDisk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManLegacyKVMSetBootDisk.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManPrefsEnableXMLediting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManPrefsEnableXMLediting.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManRemoveRecoveryKBM.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManRemoveRecoveryKBM.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManRemoveUSBController.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManRemoveUSBController.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManTemplateImport.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManTemplateImport.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManTemplateImportLegacy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManTemplateImportLegacy.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManTemplateImportLegacyAlt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManTemplateImportLegacyAlt.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManTemplatePPCImport.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManTemplatePPCImport.png
--------------------------------------------------------------------------------
/docs/assets/Virtual-Machine-Manager/VManTemplatePPCMapped.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/Virtual-Machine-Manager/VManTemplatePPCMapped.png
--------------------------------------------------------------------------------
/docs/assets/macOS/macOSACLID.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/macOS/macOSACLID.png
--------------------------------------------------------------------------------
/docs/assets/macOS/macOSRecoveryDiskUtility.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/macOS/macOSRecoveryDiskUtility.png
--------------------------------------------------------------------------------
/docs/assets/macOS/macOSRecoveryFormatInstallTarget.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/macOS/macOSRecoveryFormatInstallTarget.png
--------------------------------------------------------------------------------
/docs/assets/macOS/macOSRecoveryFormatInstallTarget2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/macOS/macOSRecoveryFormatInstallTarget2.png
--------------------------------------------------------------------------------
/docs/assets/macOS/macOSRecoveryFormatInstallTarget3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/macOS/macOSRecoveryFormatInstallTarget3.png
--------------------------------------------------------------------------------
/docs/assets/macOS/macOSSonomaDesktop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/macOS/macOSSonomaDesktop.png
--------------------------------------------------------------------------------
/docs/assets/macOS/macOSSonomaGPUAccel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/macOS/macOSSonomaGPUAccel.png
--------------------------------------------------------------------------------
/docs/assets/macOS/macOSSonomaNoMountEFIneeded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/macOS/macOSSonomaNoMountEFIneeded.png
--------------------------------------------------------------------------------
/docs/assets/risingprism/QEMUHookModification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/risingprism/QEMUHookModification.png
--------------------------------------------------------------------------------
/docs/assets/royalgraphx/DarwinKVMLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/royalgraphx/DarwinKVMLogo.png
--------------------------------------------------------------------------------
/docs/assets/royalgraphx/DarwinKVMLogo.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/royalgraphx/DarwinKVMLogo.psd
--------------------------------------------------------------------------------
/docs/assets/royalgraphx/Header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/assets/royalgraphx/Header.png
--------------------------------------------------------------------------------
/docs/gallery/1016/1016CataSurMacPro71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/1016/1016CataSurMacPro71.png
--------------------------------------------------------------------------------
/docs/gallery/BigSur/110BigSurDP1MacPro71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/BigSur/110BigSurDP1MacPro71.png
--------------------------------------------------------------------------------
/docs/gallery/BigSur/ProMacBigSur.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/BigSur/ProMacBigSur.png
--------------------------------------------------------------------------------
/docs/gallery/Catalina/ProMacCatalina.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Catalina/ProMacCatalina.png
--------------------------------------------------------------------------------
/docs/gallery/Cheetah/PowerMacCheetah.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Cheetah/PowerMacCheetah.png
--------------------------------------------------------------------------------
/docs/gallery/ElCapitan/ProMacTheCaptain.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/ElCapitan/ProMacTheCaptain.png
--------------------------------------------------------------------------------
/docs/gallery/HighSierra/HacProKVM10136.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/HighSierra/HacProKVM10136.png
--------------------------------------------------------------------------------
/docs/gallery/HighSierra/ProMacHighSierra.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/HighSierra/ProMacHighSierra.png
--------------------------------------------------------------------------------
/docs/gallery/Jaguar/PowerMacJaguar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Jaguar/PowerMacJaguar.png
--------------------------------------------------------------------------------
/docs/gallery/Leopard/MacPro41Leopard1058.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Leopard/MacPro41Leopard1058.png
--------------------------------------------------------------------------------
/docs/gallery/Leopard/MacPro41LeopardServer105.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Leopard/MacPro41LeopardServer105.png
--------------------------------------------------------------------------------
/docs/gallery/Leopard/PowerMacLeopard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Leopard/PowerMacLeopard.png
--------------------------------------------------------------------------------
/docs/gallery/Lion/ProMacLion.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Lion/ProMacLion.png
--------------------------------------------------------------------------------
/docs/gallery/Mavericks/ProMacMavericks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Mavericks/ProMacMavericks.png
--------------------------------------------------------------------------------
/docs/gallery/Mojave/ProMacMojave.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Mojave/ProMacMojave.png
--------------------------------------------------------------------------------
/docs/gallery/Monterey/ProMacMonterey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Monterey/ProMacMonterey.png
--------------------------------------------------------------------------------
/docs/gallery/MountainLion/ProMacMountainLion.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/MountainLion/ProMacMountainLion.png
--------------------------------------------------------------------------------
/docs/gallery/Panther/PowerMacPanther.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Panther/PowerMacPanther.png
--------------------------------------------------------------------------------
/docs/gallery/Puma/PowerMacPuma.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Puma/PowerMacPuma.png
--------------------------------------------------------------------------------
/docs/gallery/Sequoia/HacProKVM15Beta.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sequoia/HacProKVM15Beta.png
--------------------------------------------------------------------------------
/docs/gallery/Sequoia/HacProKVM15BetaAlt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sequoia/HacProKVM15BetaAlt.png
--------------------------------------------------------------------------------
/docs/gallery/Sequoia/athleticatMacPro71Seq1511.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sequoia/athleticatMacPro71Seq1511.png
--------------------------------------------------------------------------------
/docs/gallery/Sequoia/f0xb4tMacPro71Seq151.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sequoia/f0xb4tMacPro71Seq151.png
--------------------------------------------------------------------------------
/docs/gallery/Sierra/ProMacSierra.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sierra/ProMacSierra.png
--------------------------------------------------------------------------------
/docs/gallery/Sierra/ProMacSierraInternal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sierra/ProMacSierraInternal.png
--------------------------------------------------------------------------------
/docs/gallery/SnowLeopard/MacMini31SnowLeopardFactory1062.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/SnowLeopard/MacMini31SnowLeopardFactory1062.png
--------------------------------------------------------------------------------
/docs/gallery/SnowLeopard/PowerMacSnowLeopard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/SnowLeopard/PowerMacSnowLeopard.png
--------------------------------------------------------------------------------
/docs/gallery/SnowLeopard/PowerMacSnowLeopardAlt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/SnowLeopard/PowerMacSnowLeopardAlt.png
--------------------------------------------------------------------------------
/docs/gallery/SnowLeopard/ProMacSLServer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/SnowLeopard/ProMacSLServer.png
--------------------------------------------------------------------------------
/docs/gallery/SnowLeopard/ProMacSnowLeopard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/SnowLeopard/ProMacSnowLeopard.png
--------------------------------------------------------------------------------
/docs/gallery/SnowLeopard/ProMacSnowLeopardHD5450-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/SnowLeopard/ProMacSnowLeopardHD5450-2.png
--------------------------------------------------------------------------------
/docs/gallery/SnowLeopard/ProMacSnowLeopardHD5450.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/SnowLeopard/ProMacSnowLeopardHD5450.png
--------------------------------------------------------------------------------
/docs/gallery/SnowLeopard/ProMacSnowLeopardServer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/SnowLeopard/ProMacSnowLeopardServer.png
--------------------------------------------------------------------------------
/docs/gallery/SnowLeopard/ProMacSnowLeopardServerHD5450.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/SnowLeopard/ProMacSnowLeopardServerHD5450.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/HacProKVM140.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/HacProKVM140.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/HacProKVM141.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/HacProKVM141.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/HacProKVM143.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/HacProKVM143.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/HacProKVM144Beta.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/HacProKVM144Beta.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/HacProKVM145.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/HacProKVM145.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/Helio1421.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/Helio1421.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/OpenCoreSonomaInstallationComplete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/OpenCoreSonomaInstallationComplete.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/OpenCoreSonomaRecoveryInstallation2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/OpenCoreSonomaRecoveryInstallation2.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/OpenCoreSonomaSecondBootPhase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/OpenCoreSonomaSecondBootPhase.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/OpenCoreSonomaThirdBootPhase.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/OpenCoreSonomaThirdBootPhase.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/haxi0DKVM141.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/haxi0DKVM141.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/macOSSonomaDesktop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/macOSSonomaDesktop.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/macOSSonomaNoMountEFIneeded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/macOSSonomaNoMountEFIneeded.png
--------------------------------------------------------------------------------
/docs/gallery/Sonoma/naymmmiscoolMacPro71Sonoma147.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Sonoma/naymmmiscoolMacPro71Sonoma147.png
--------------------------------------------------------------------------------
/docs/gallery/Tiger/ADP21-1041.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Tiger/ADP21-1041.png
--------------------------------------------------------------------------------
/docs/gallery/Tiger/MacPro11Tiger1047.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Tiger/MacPro11Tiger1047.png
--------------------------------------------------------------------------------
/docs/gallery/Tiger/MacPro11TigerServer10411.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Tiger/MacPro11TigerServer10411.png
--------------------------------------------------------------------------------
/docs/gallery/Tiger/MacPro21Tiger10411.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Tiger/MacPro21Tiger10411.png
--------------------------------------------------------------------------------
/docs/gallery/Tiger/PowerMacTiger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Tiger/PowerMacTiger.png
--------------------------------------------------------------------------------
/docs/gallery/Ventura/HacProKVM134.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Ventura/HacProKVM134.png
--------------------------------------------------------------------------------
/docs/gallery/Ventura/HacProKVM1351.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Ventura/HacProKVM1351.png
--------------------------------------------------------------------------------
/docs/gallery/Ventura/ZormDKVMnvidia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Ventura/ZormDKVMnvidia.png
--------------------------------------------------------------------------------
/docs/gallery/Ventura/kaggsterDKVM135.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Ventura/kaggsterDKVM135.png
--------------------------------------------------------------------------------
/docs/gallery/Yosemite/ProMacYosemite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/royalgraphx/DarwinKVM/3cc0d8c743a3c7cfbf2b183dacd311f482b5a43b/docs/gallery/Yosemite/ProMacYosemite.png
--------------------------------------------------------------------------------
/extras/DarwinPPC/Template-Cheetah.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | #
4 | # Copyright (c) 2024, 2025 RoyalGraphX.
5 | # GNU General Public License v3.0
6 | #
7 |
8 | hdd_path="../DiskProvision/images/Macintosh.img"
9 | iso_path="../DarwinFetch/downloads/10.0.3_4P130/Mac OS X 10.0.3/Mac OS X 10.0.3.iso"
10 |
11 | # echo "HDD path is: $hdd_path"
12 | # echo "ISO path is: $iso_path"
13 |
14 | # Check if the HDD image exists
15 | if [ ! -f "$hdd_path" ]; then
16 | echo "Could not open '$hdd_path': No such file or directory"
17 | exit 1
18 | fi
19 |
20 | # Check if the ISO file exists
21 | if [ ! -f "$iso_path" ]; then
22 | echo "Could not open '$iso_path': No such file or directory"
23 | exit 1
24 | fi
25 |
26 | qemu-system-ppc -name guest="running Mac OS X Cheetah on DarwinPPC" \
27 | -M mac99,usb=off \
28 | -accel tcg \
29 | -m 2G \
30 | -smp 1,sockets=1,cores=1,threads=1 \
31 | -uuid D01F8C04-BB01-4A3B-9ACA-6D22994D7E6F \
32 | -no-user-config \
33 | -nodefaults \
34 | -rtc base=utc \
35 | -no-shutdown \
36 | -boot menu=on,strict=on \
37 | -device ide-hd,bus=ide.0,drive=Macintosh \
38 | -drive if=none,format=raw,media=disk,id=Macintosh,file="$hdd_path",discard=unmap,detect-zeroes=unmap \
39 | -device ide-cd,bus=ide.0,drive=Installer \
40 | -drive if=none,format=raw,media=disk,id=Installer,file="$iso_path",discard=unmap,detect-zeroes=unmap \
41 | -device sungem,mac=2A:84:84:06:3E:78,netdev=net0 \
42 | -netdev user,id=net0 \
43 | -device VGA,edid=on \
44 | -prom-env boot-args=-v \
45 | -prom-env 'vga-ndrv?=true' \
46 | -prom-env 'auto-boot?=true' \
47 | -g 1280x720x32 \
48 | -boot c \
--------------------------------------------------------------------------------
/extras/DarwinPPC/Template-Leopard.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | #
4 | # Copyright (c) 2024, 2025 RoyalGraphX.
5 | # GNU General Public License v3.0
6 | #
7 |
8 | hdd_path="../DiskProvision/images/Macintosh.img"
9 | iso_path="../DarwinFetch/downloads/10.5.6_00000/Mac OS X 10.5.6/Mac OS X 10.5.6.iso"
10 |
11 | # echo "HDD path is: $hdd_path"
12 | # echo "ISO path is: $iso_path"
13 |
14 | # Check if the HDD image exists
15 | if [ ! -f "$hdd_path" ]; then
16 | echo "Could not open '$hdd_path': No such file or directory"
17 | exit 1
18 | fi
19 |
20 | # Check if the ISO file exists
21 | if [ ! -f "$iso_path" ]; then
22 | echo "Could not open '$iso_path': No such file or directory"
23 | exit 1
24 | fi
25 |
26 | qemu-system-ppc -name guest="running Mac OS X Leopard on DarwinPPC" \
27 | -M mac99,via=pmu,usb=on \
28 | -accel tcg \
29 | -m 2G \
30 | -smp 1,sockets=1,cores=1,threads=1 \
31 | -uuid CE0BC759-0FE9-4918-B6C1-5A1E17A27857 \
32 | -no-user-config \
33 | -nodefaults \
34 | -rtc base=utc \
35 | -no-shutdown \
36 | -boot menu=on,strict=on \
37 | -device ide-hd,bus=ide.0,drive=Macintosh \
38 | -drive if=none,format=raw,media=disk,id=Macintosh,file="$hdd_path",discard=unmap,detect-zeroes=unmap \
39 | -device ide-cd,bus=ide.0,drive=Installer \
40 | -drive if=none,format=raw,media=disk,id=Installer,file="$iso_path",discard=unmap,detect-zeroes=unmap \
41 | -device sungem,mac=2A:84:84:06:3E:78,netdev=net0 \
42 | -netdev user,id=net0 \
43 | -device VGA,edid=on \
44 | -prom-env boot-args=-v \
45 | -prom-env 'vga-ndrv?=true' \
46 | -prom-env 'auto-boot?=true' \
47 | -g 1280x720x32 \
48 | -boot c \
49 | -device \
50 | usb-tablet \
51 | -device \
52 | usb-kbd \
--------------------------------------------------------------------------------
/extras/DarwinPPC/Template-Puma.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | #
4 | # Copyright (c) 2024, 2025 RoyalGraphX.
5 | # GNU General Public License v3.0
6 | #
7 |
8 | hdd_path="../DiskProvision/images/Macintosh.img"
9 | iso_path="../DarwinFetch/downloads/10.1.0_5G640/Apple Mac OS X 10.1 (10.1.5J34)/Mac OS X Install CD.iso"
10 |
11 | # echo "HDD path is: $hdd_path"
12 | # echo "ISO path is: $iso_path"
13 |
14 | # Check if the HDD image exists
15 | if [ ! -f "$hdd_path" ]; then
16 | echo "Could not open '$hdd_path': No such file or directory"
17 | exit 1
18 | fi
19 |
20 | # Check if the ISO file exists
21 | if [ ! -f "$iso_path" ]; then
22 | echo "Could not open '$iso_path': No such file or directory"
23 | exit 1
24 | fi
25 |
26 | qemu-system-ppc -name guest="running Mac OS X Puma on DarwinPPC" \
27 | -M mac99,usb=off \
28 | -accel tcg \
29 | -m 2G \
30 | -smp 1,sockets=1,cores=1,threads=1 \
31 | -uuid 41FFD3E4-19EE-49A0-AE22-79C678056D62 \
32 | -no-user-config \
33 | -nodefaults \
34 | -rtc base=utc \
35 | -no-shutdown \
36 | -boot menu=on,strict=on \
37 | -device ide-hd,bus=ide.0,drive=Macintosh \
38 | -drive if=none,format=raw,media=disk,id=Macintosh,file="$hdd_path",discard=unmap,detect-zeroes=unmap \
39 | -device ide-cd,bus=ide.0,drive=Installer \
40 | -drive if=none,format=raw,media=disk,id=Installer,file="$iso_path",discard=unmap,detect-zeroes=unmap \
41 | -device sungem,mac=2A:84:84:06:3E:78,netdev=net0 \
42 | -netdev user,id=net0 \
43 | -device VGA,edid=on \
44 | -prom-env boot-args=-v \
45 | -prom-env 'vga-ndrv?=true' \
46 | -prom-env 'auto-boot?=true' \
47 | -g 1280x720x32 \
48 | -boot c \
49 | -device pci-testdev \
--------------------------------------------------------------------------------
/extras/DarwinPPC/Template-SnowLeopard.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | #
4 | # Copyright (c) 2024, 2025 RoyalGraphX.
5 | # GNU General Public License v3.0
6 | #
7 |
8 | hdd_path="../DiskProvision/images/Macintosh.img"
9 | iso_path="../DarwinFetch/downloads/"
10 |
11 | # echo "HDD path is: $hdd_path"
12 | # echo "ISO path is: $iso_path"
13 |
14 | # Check if the HDD image exists
15 | if [ ! -f "$hdd_path" ]; then
16 | echo "Could not open '$hdd_path': No such file or directory"
17 | exit 1
18 | fi
19 |
20 | # Check if the ISO file exists
21 | if [ ! -f "$iso_path" ]; then
22 | echo "Could not open '$iso_path': No such file or directory"
23 | exit 1
24 | fi
25 |
26 | qemu-system-ppc -name guest="running Mac OS X Snow Leopard on DarwinPPC" \
27 | -M mac99,via=pmu,usb=on \
28 | -accel tcg \
29 | -m 2G \
30 | -smp 1,sockets=1,cores=1,threads=1 \
31 | -uuid 1D67808F-E8AB-43B8-A77E-6CE3B815EFDB \
32 | -no-user-config \
33 | -nodefaults \
34 | -rtc base=utc \
35 | -no-shutdown \
36 | -boot menu=on,strict=on \
37 | -device ide-hd,bus=ide.0,drive=Macintosh \
38 | -drive if=none,format=raw,media=disk,id=Macintosh,file="$hdd_path",discard=unmap,detect-zeroes=unmap \
39 | -device ide-cd,bus=ide.0,drive=Installer \
40 | -drive if=none,format=raw,media=disk,id=Installer,file="$iso_path",discard=unmap,detect-zeroes=unmap \
41 | -device sungem,mac=2A:84:84:06:3E:78,netdev=net0 \
42 | -netdev user,id=net0 \
43 | -device VGA,edid=on \
44 | -prom-env boot-args=-v \
45 | -prom-env 'vga-ndrv?=true' \
46 | -prom-env 'auto-boot?=true' \
47 | -g 1280x720x32 \
48 | -boot c \
49 | -device \
50 | usb-tablet \
51 | -device \
52 | usb-kbd \
--------------------------------------------------------------------------------
/extras/DarwinPPC/Template-Tiger.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | #
4 | # Copyright (c) 2024, 2025 RoyalGraphX.
5 | # GNU General Public License v3.0
6 | #
7 |
8 | hdd_path="../DiskProvision/images/Macintosh.img"
9 | iso_path="../DarwinFetch/downloads/10.4.8_8L127/Mac OS X 10.4.8/Mac OS X 10.4.8.iso"
10 |
11 | # echo "HDD path is: $hdd_path"
12 | # echo "ISO path is: $iso_path"
13 |
14 | # Check if the HDD image exists
15 | if [ ! -f "$hdd_path" ]; then
16 | echo "Could not open '$hdd_path': No such file or directory"
17 | exit 1
18 | fi
19 |
20 | # Check if the ISO file exists
21 | if [ ! -f "$iso_path" ]; then
22 | echo "Could not open '$iso_path': No such file or directory"
23 | exit 1
24 | fi
25 |
26 | qemu-system-ppc -name guest="running Mac OS X Tiger on DarwinPPC" \
27 | -machine mac99,usb=off \
28 | -accel tcg \
29 | -m 2G \
30 | -smp 1,sockets=1,cores=1,threads=1 \
31 | -uuid 85C21FCE-FC40-403D-83A4-0CC914C916D9 \
32 | -no-user-config \
33 | -nodefaults \
34 | -rtc base=utc \
35 | -no-shutdown \
36 | -boot menu=on,strict=on \
37 | -M mac99 \
38 | -device ide-hd,bus=ide.0,drive=Macintosh \
39 | -drive if=none,format=raw,media=disk,id=Macintosh,file="$hdd_path",discard=unmap,detect-zeroes=unmap \
40 | -device ide-cd,bus=ide.0,drive=Installer \
41 | -drive if=none,format=raw,media=disk,id=Installer,file="$iso_path",discard=unmap,detect-zeroes=unmap \
42 | -device sungem,mac=2A:84:84:06:3E:78,netdev=net0 \
43 | -netdev user,id=net0 \
44 | -device VGA,edid=on \
45 | -prom-env boot-args=-v \
46 | -prom-env 'vga-ndrv?=true' \
47 | -prom-env 'auto-boot?=true' \
48 | -g 1280x720x32 \
49 | -boot c \
50 | -device pci-testdev \
51 |
--------------------------------------------------------------------------------
/extras/bridged-networking/1-br0-bind.network:
--------------------------------------------------------------------------------
1 | [Match]
2 | Name=en*
3 |
4 | [Network]
5 | Bridge=br0
--------------------------------------------------------------------------------
/extras/bridged-networking/2-br0-dhcp.network:
--------------------------------------------------------------------------------
1 | [Match]
2 | Name=br0
3 |
4 | [Network]
5 | DHCP=ipv4
--------------------------------------------------------------------------------
/extras/bridged-networking/br.netdev:
--------------------------------------------------------------------------------
1 | [NetDev]
2 | Name=br0
3 | Kind=bridge
--------------------------------------------------------------------------------
/extras/custom-memory-mapping/MemInfoGen.sh:
--------------------------------------------------------------------------------
1 | #
2 | # MemInfoGen, script to parse Windows Host DMI Decode
3 | # Output for Custom Memory Mapping in macOS Guests.
4 | #
5 | # Copyright (c) 2023, 2024, 2025 RoyalGraphX
6 | # BSD 3-Clause License
7 | #
8 |
9 | printf "Data Width\n"
10 | cat WindowsDMIDecode.txt | grep "Data Width:"
11 | printf "Error Correction Type\n"
12 | cat WindowsDMIDecode.txt | grep "Error Correction Type:"
13 | printf "Form Factor\n"
14 | cat WindowsDMIDecode.txt | grep "Form Factor:"
15 | printf "Total Width\n"
16 | cat WindowsDMIDecode.txt | grep "Total Width:"
17 | printf "Type\n"
18 | cat WindowsDMIDecode.txt | grep "Type:"
19 | printf "Type Detail\n"
20 | cat WindowsDMIDecode.txt | grep "Type Detail:"
21 | printf "\n"
22 | printf "Device Properties\n"
23 | printf "\n"
24 | printf "Asset Tag\n"
25 | cat WindowsDMIDecode.txt | grep "Asset Tag:"
26 | printf "Bank Locator\n"
27 | cat WindowsDMIDecode.txt | grep "Bank Locator:"
28 | printf "Device Locator\n"
29 | cat WindowsDMIDecode.txt | grep "Locator:"
30 | printf "Manufacturer\n"
31 | cat WindowsDMIDecode.txt | grep "Manufacturer:"
32 | printf "Part Number\n"
33 | cat WindowsDMIDecode.txt | grep "Part Number:"
34 | printf "Serial Number\n"
35 | cat WindowsDMIDecode.txt | grep "Serial Number:"
36 | printf "Size\n"
37 | cat WindowsDMIDecode.txt | grep "Size:"
38 | printf "Speed\n"
39 | cat WindowsDMIDecode.txt | grep "Speed:"
--------------------------------------------------------------------------------
/scripts/commit.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # Stage all changes
4 | git add --all
5 |
6 | # Read commit message
7 | echo "Enter Commit Details:"
8 | read varcommit
9 |
10 | # Function to add co-authors
11 | coauthors=()
12 | add_coauthor() {
13 | echo "Do you want to add a Co-Author? (yes/no)"
14 | read response
15 |
16 | if [ "$response" = "yes" ]; then
17 | echo "Enter Co-Author's Name:"
18 | read author_name
19 | echo "Enter Co-Author's Email:"
20 | read author_email
21 |
22 | coauthors+=("Co-authored-by: $author_name <$author_email>")
23 |
24 | add_coauthor # Recursive call for adding more co-authors
25 | fi
26 | }
27 |
28 | add_coauthor
29 |
30 | # Construct the commit message with co-authors
31 | commit_message="$varcommit"
32 | for coauthor in "${coauthors[@]}"; do
33 | commit_message+=$'\n\n'"$coauthor"
34 | done
35 |
36 | # Make the commit
37 | git commit -m "$commit_message"
38 |
39 | # Confirm commit
40 | if [ "${#coauthors[@]}" -gt 0 ]; then
41 | echo "Commit \"$varcommit\" with co-authors created successfully."
42 | else
43 | echo "Commit \"$varcommit\" created successfully."
44 | fi
45 |
--------------------------------------------------------------------------------
/scripts/cpupower.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # CPU Governor OC Script. Can be automatically applied on boot.
4 | #
5 | # Copyright (c) 2024 RoyalGraphX
6 | # BSD 3-Clause License
7 | #
8 |
9 | echo "Available CPU Governors:"
10 | available_governors=$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors)
11 | IFS=' ' read -r -a governors <<< "$available_governors"
12 | for ((i=0; i<${#governors[@]}; i++)); do
13 | echo "$i. ${governors[$i]}"
14 | done
15 |
16 | read -p "Enter the number corresponding to the desired governor: " selected_governor
17 |
18 | if [[ $selected_governor -lt 0 || $selected_governor -ge ${#governors[@]} ]]; then
19 | echo "Invalid selection. Exiting..."
20 | exit 1
21 | fi
22 |
23 | selected_governor_name="${governors[$selected_governor]}"
24 |
25 | echo "Applying $selected_governor_name governor..."
26 | sudo cpupower frequency-set -g "$selected_governor_name"
27 | echo "Waiting for changes to take effect..."
28 | sleep 3
29 |
30 | sudo cpupower monitor
31 |
32 | echo "Thanks for using the CPU Governor OC Script!"
--------------------------------------------------------------------------------
/scripts/iommu.sh:
--------------------------------------------------------------------------------
1 | # Derived from Arch Wiki
2 |
3 | #!/bin/bash
4 | shopt -s nullglob
5 | for g in /sys/kernel/iommu_groups/*; do
6 | echo "IOMMU Group ${g##*/}:"
7 | for d in $g/devices/*; do
8 | echo -e "\t$(lspci -nns ${d##*/})"
9 | done;
10 | done;
11 |
--------------------------------------------------------------------------------
/scripts/push.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # Function to check if the current branch tracks a remote branch
4 | check_tracking() {
5 | if git rev-parse --abbrev-ref --symbolic-full-name @{u} &> /dev/null; then
6 | return 0
7 | else
8 | echo "The current branch does not track a remote branch. Please set the upstream branch using:"
9 | echo "git branch --set-upstream-to=/ "
10 | exit 1
11 | fi
12 | }
13 |
14 | # Function to check if there are uncommitted changes
15 | check_uncommitted_changes() {
16 | if ! git diff-index --quiet HEAD --; then
17 | echo "You have uncommitted changes. Please commit them before pushing."
18 | exit 1
19 | fi
20 | }
21 |
22 | # Function to attempt to push changes
23 | attempt_push() {
24 | if git push; then
25 | echo "Changes pushed to the remote repository successfully."
26 | else
27 | echo "Failed to push changes. Please check your connection and remote repository status."
28 | exit 1
29 | fi
30 | }
31 |
32 | # Check if the current branch tracks a remote branch
33 | check_tracking
34 |
35 | # Check for uncommitted changes
36 | check_uncommitted_changes
37 |
38 | # Attempt to push changes
39 | attempt_push
40 |
--------------------------------------------------------------------------------