Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.

Commit 5ef6e80

Browse files
Changed cpu_profile default to host and added comments
1 parent dce4f64 commit 5ef6e80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

macos-guest-virtualbox.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ vm_name="macOS" # name of the VirtualBox virtual machine
1919
macOS_release_name="Catalina" # install "HighSierra" "Mojave" or "Catalina"
2020
storage_size=80000 # VM disk image size in MB, minimum 22000
2121
storage_format="vdi" # VM disk image file format, "vdi" or "vmdk"
22-
cpu_profile="Intel Xeon X5482 3.20GHz"
22+
cpu_profile="host" # VM CPU profile, "host" or one of the models listed in documentation
2323
cpu_count=2 # VM CPU cores, minimum 2
2424
memory_size=4096 # VM RAM in MB, minimum 2048
2525
gpu_vram=128 # VM video RAM in MB, minimum 34, maximum 128
@@ -116,7 +116,7 @@ echo -e "\nvm_name=\"${vm_name}\""
116116
pad_to_33_chars "macOS_release_name=\"${macOS_release_name}\"" "# install \"HighSierra\" \"Mojave\" \"Catalina\""
117117
pad_to_33_chars "storage_size=${storage_size}" "# VM disk image size in MB, minimum 22000"
118118
pad_to_33_chars "storage_format=\"${storage_format}\"" "# VM disk image file format, \"vdi\" or \"vmdk\""
119-
pad_to_33_chars "cpu_profile\"${cpu_profile}\""
119+
pad_to_33_chars "cpu_profile\"${cpu_profile}\"" '# VM CPU profile, \"host\" or one of the models listed in documentation"
120120
pad_to_33_chars "cpu_count=${cpu_count}" "# VM CPU cores, minimum 2"
121121
pad_to_33_chars "memory_size=${memory_size}" "# VM RAM in MB, minimum 2048"
122122
pad_to_33_chars "gpu_vram=${gpu_vram}" "# VM video RAM in MB, minimum 34, maximum 128"

0 commit comments

Comments
 (0)