{"id":15951957,"url":"https://github.com/shchuko/ovmfdarwinpkg","last_synced_at":"2025-04-04T07:43:25.541Z","repository":{"id":126850099,"uuid":"317609881","full_name":"shchuko/OvmfDarwinPkg","owner":"shchuko","description":"OVMF clone with macOS guests support and free HFS+ driver","archived":false,"fork":false,"pushed_at":"2021-10-19T15:48:15.000Z","size":3410,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-09T18:51:34.538Z","etag":null,"topics":["edk","edk2","hfs-filesystem","macos-vm","ovmf","qemu","uefi","vm"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shchuko.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-12-01T16:58:41.000Z","updated_at":"2023-07-07T19:07:49.000Z","dependencies_parsed_at":"2023-03-13T11:36:02.003Z","dependency_job_id":null,"html_url":"https://github.com/shchuko/OvmfDarwinPkg","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shchuko%2FOvmfDarwinPkg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shchuko%2FOvmfDarwinPkg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shchuko%2FOvmfDarwinPkg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shchuko%2FOvmfDarwinPkg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shchuko","download_url":"https://codeload.github.com/shchuko/OvmfDarwinPkg/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247142042,"owners_count":20890652,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["edk","edk2","hfs-filesystem","macos-vm","ovmf","qemu","uefi","vm"],"created_at":"2024-10-07T13:05:19.719Z","updated_at":"2025-04-04T07:43:25.521Z","avatar_url":"https://github.com/shchuko.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Build](https://github.com/shchuko/OvmfDarwinPkg/workflows/Build/badge.svg?branch=master)\n# OvmfDarwinPkg\n\n[OVMF](https://github.com/tianocore/edk2/tree/master/OvmfDarwinPkg) clone that provides macOS guests support \nwith no third-party bootloaders\n\n## Build notes\n\nCheck EDK II documentation to prepare the environment (iasl, nasm required). All the OVMF manuals are \ncompatible with this package. Build tested on `edk2-stable202105` version. \n\nRun this script to perform everything in one command:\n\n```bash\n# Build defaults - DEBUG,X64,XCODE5(macOS)/GCC5(Linux)\n$ ./builduefi.sh \n```\n\nOr use Docker container as build environment:\n\n```bash\n# Just a 'builduefi.sh' wrapper\n$ ./dockerbuild.sh \n```\n\nMore examples:\n\n```bash\n# Show help\n$ ./builduefi.sh -help\n\n# Switch target to RELEASE\n$ ./builduefi.sh -buildRelease\n\n# How to pass other build arguments \n$ ./builduefi.sh -D DEBUG_ON_SERIAL_PORT\n```\n\nBinaries will be placed in `Build/` directory. The script is a wrapper for EDK `build`: \n\n```bash\n# Simplified './builduefi.sh'\n# PWD - ../../OvmfDarwinPkg\n\n# Setup EDK II\ngit clone https://github.com/tianocore/edk2.git edk2\ncd edk2\ngit checkout edk2-stable202008\ngit submodule update --init\nmake -C BaseTools\ncd -\n\n# Create symbolic links to packages\nln -s $PWD edk2/OvmfDarwinPkg\nln -s $PWD/LegacyPackages/IntelFrameworkPkg edk2/IntelFrameworkPkg\nln -s $PWD/LegacyPackages/IntelFrameworkModulePkg edk2/IntelFrameworkModulePkg\n\n# Build\ncd edk2\nsource edksetup.sh\n\n# macOS\nbuild -a X64 -t XCODE5 -p OvmfDarwinPkg/OvmfDarwinPkgX64.dsc -b DEBUG\n\n# Linux\nbuild -a X64 -t GCC5 -p OvmfDarwinPkg/OvmfDarwinPkgX64.dsc -b DEBUG\n```\n\n## Added components\n\n- [OpenHfsPlus](OpenHfsPlus), based on https://github.com/gsomlo/edk2/tree/gls-hfsplus/OvmfDarwinPkg/FswHfsPlus\n\n- [AppleSupportLib](Library/AppleSupportLib), based on https://github.com/fishman/edk2/tree/apple63/OvmfDarwinPkg/Library/AppleSupportLib\n\n- [IntelFrameworkPkg](LegacyPackages/IntelFrameworkPkg), from [UDK2018](https://github.com/tianocore/edk2/tree/UDK2018/IntelFrameworkPkg)\n\n- [IntelFrameworkModulePkg](LegacyPackages/IntelFrameworkModulePkg), from [UDK2018](https://github.com/tianocore/edk2/tree/UDK2018/IntelFrameworkModulePkg)\n\n- [UefiBootManagerLib](Library/UefiBootManagerLib) from [edk2-stable202008 MdeModulePkg](https://github.com/tianocore/edk2/tree/edk2-stable202008/MdeModulePkg/Library/UefiBootManagerLib)\n  \n- Required [Protocols](Include/Protocol/Darwin) and [GUIDes](Include/Guid/Darwin)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshchuko%2Fovmfdarwinpkg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshchuko%2Fovmfdarwinpkg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshchuko%2Fovmfdarwinpkg/lists"}