mirror of
https://github.com/sickcodes/osx-serial-generator.git
synced 2024-12-28 02:16:12 +00:00
OpenCore-Catalina/OpenCore.qcow2
was moved to OpenCore/OpenCore.qcow2
This commit is contained in:
parent
cbf82140f4
commit
f511145c6f
|
@ -269,7 +269,7 @@ In the case example of why these scripts were written is:
|
||||||
--bootdisks \
|
--bootdisks \
|
||||||
--width "${WIDTH:-1920}" \
|
--width "${WIDTH:-1920}" \
|
||||||
--height "${HEIGHT:-1080}" \
|
--height "${HEIGHT:-1080}" \
|
||||||
--output-bootdisk "${BOOTDISK:=/home/arch/OSX-KVM/OpenCore-Catalina/OpenCore.qcow2}" \
|
--output-bootdisk "${BOOTDISK:=/home/arch/OSX-KVM/OpenCore/OpenCore.qcow2}" \
|
||||||
--output-env "${ENV:=/env}" \
|
--output-env "${ENV:=/env}" \
|
||||||
; } \
|
; } \
|
||||||
; [[ "${GENERATE_SPECIFIC}" == true ]] && { \
|
; [[ "${GENERATE_SPECIFIC}" == true ]] && { \
|
||||||
|
@ -283,12 +283,14 @@ In the case example of why these scripts were written is:
|
||||||
--mac-address "${MAC_ADDRESS}" \
|
--mac-address "${MAC_ADDRESS}" \
|
||||||
--width "${WIDTH:-1920}" \
|
--width "${WIDTH:-1920}" \
|
||||||
--height "${HEIGHT:-1080}" \
|
--height "${HEIGHT:-1080}" \
|
||||||
--output-bootdisk "${BOOTDISK:=/home/arch/OSX-KVM/OpenCore-Catalina/OpenCore.qcow2}"
|
--output-bootdisk "${BOOTDISK:=/home/arch/OSX-KVM/OpenCore/OpenCore.qcow2}"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
# Special Update Notes
|
# Special Update Notes
|
||||||
|
|
||||||
|
2021-10-28 - `OpenCore-Catalina/OpenCore.qcow2` was moved to `OpenCore/OpenCore.qcow2` in [https://github.com/kholia/OSX-KVM/commit/1cc6430f96b452cb78b9a079c34bb9933144ce18](https://github.com/kholia/OSX-KVM/commit/1cc6430f96b452cb78b9a079c34bb9933144ce18)
|
||||||
|
|
||||||
|
|
||||||
2021-06-15 - On June 15th 2021 we updated the config.plist from v12 to v13 via [@thenickdude](https://github.com/thenickdude)'s upstream `config.plist` files from [KVM-Opencore](https://github.com/thenickdude/KVM-Opencore).
|
2021-06-15 - On June 15th 2021 we updated the config.plist from v12 to v13 via [@thenickdude](https://github.com/thenickdude)'s upstream `config.plist` files from [KVM-Opencore](https://github.com/thenickdude/KVM-Opencore).
|
||||||
|
|
||||||
|
|
|
@ -193,12 +193,12 @@ done
|
||||||
|
|
||||||
download_qcow_efi_folder () {
|
download_qcow_efi_folder () {
|
||||||
|
|
||||||
export EFI_FOLDER=./OpenCore-Catalina/EFI
|
export EFI_FOLDER=./OpenCore/EFI
|
||||||
export RESOURCES_FOLDER=./resources/OcBinaryData/Resources
|
export RESOURCES_FOLDER=./resources/OcBinaryData/Resources
|
||||||
|
|
||||||
# check if we are inside OSX-KVM already
|
# check if we are inside OSX-KVM already
|
||||||
# if not, download OSX-KVM locally
|
# if not, download OSX-KVM locally
|
||||||
[ -d ./OpenCore-Catalina/EFI/ ] || {
|
[ -d ./OpenCore/EFI/ ] || {
|
||||||
[ -d ./OSX-KVM/ ] || git clone --recurse-submodules --depth 1 https://github.com/kholia/OSX-KVM.git
|
[ -d ./OSX-KVM/ ] || git clone --recurse-submodules --depth 1 https://github.com/kholia/OSX-KVM.git
|
||||||
export EFI_FOLDER="./OSX-KVM/${EFI_FOLDER}"
|
export EFI_FOLDER="./OSX-KVM/${EFI_FOLDER}"
|
||||||
}
|
}
|
||||||
|
|
|
@ -226,12 +226,12 @@ download_vendor_mac_addresses () {
|
||||||
|
|
||||||
download_qcow_efi_folder () {
|
download_qcow_efi_folder () {
|
||||||
|
|
||||||
export EFI_FOLDER=./OpenCore-Catalina/EFI
|
export EFI_FOLDER=./OpenCore/EFI
|
||||||
export RESOURCES_FOLDER=./resources/OcBinaryData/Resources
|
export RESOURCES_FOLDER=./resources/OcBinaryData/Resources
|
||||||
|
|
||||||
# check if we are inside OSX-KVM already
|
# check if we are inside OSX-KVM already
|
||||||
# if not, download OSX-KVM locally
|
# if not, download OSX-KVM locally
|
||||||
[ -d ./OpenCore-Catalina/EFI/ ] || {
|
[ -d ./OpenCore/EFI/ ] || {
|
||||||
[ -d ./OSX-KVM/ ] || git clone --recurse-submodules --depth 1 https://github.com/kholia/OSX-KVM.git
|
[ -d ./OSX-KVM/ ] || git clone --recurse-submodules --depth 1 https://github.com/kholia/OSX-KVM.git
|
||||||
export EFI_FOLDER="./OSX-KVM/${EFI_FOLDER}"
|
export EFI_FOLDER="./OSX-KVM/${EFI_FOLDER}"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue