Skip to content
Snippets Groups Projects
Commit d1630c26 authored by John-Paul Robinson's avatar John-Paul Robinson
Browse files

Fix the nic virtual device used by the VM

The default device abstraction caused the network comm to fail during
the load of the kernel image from master.  Changing to the nic type
82540EM fixes the issue.
parent 4cc95d62
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ nodename="$1"
VBoxManage createvm --name "$nodename" --register
VBoxManage modifyvm "$nodename" --memory 2048 --nic1 intnet --intnet1 compute --rtcuseutc on
VBoxManage modifyvm "$nodename" --memory 2048 --nic1 intnet --intnet1 compute --nictype1=82540EM --rtcuseutc on
VBoxManage storagectl "$nodename" --name IDE --add ide --controller PIIX4 --bootable on
VBoxManage storageattach "$nodename" --storagectl IDE --type dvddrive --device 0 --port 1 --medium ~/iso/ipxe.iso
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment