This is an automated email from the ASF dual-hosted git repository.
areusch pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 59b204d [microTVM][RVM] Fix clock skew on virtualbox (#8395)
59b204d is described below
commit 59b204d0ecac2dd4b98e75cd50df99f702f71242
Author: Mehrdad Hessar <[email protected]>
AuthorDate: Fri Jul 9 17:11:43 2021 -0700
[microTVM][RVM] Fix clock skew on virtualbox (#8395)
* fix virtualbox clock skew
* address comment
* trigger
---
apps/microtvm/reference-vm/zephyr/Vagrantfile | 1 +
1 file changed, 1 insertion(+)
diff --git a/apps/microtvm/reference-vm/zephyr/Vagrantfile
b/apps/microtvm/reference-vm/zephyr/Vagrantfile
index be41c0b..bd0094f 100644
--- a/apps/microtvm/reference-vm/zephyr/Vagrantfile
+++ b/apps/microtvm/reference-vm/zephyr/Vagrantfile
@@ -57,6 +57,7 @@ Vagrant.configure("2") do |config|
vb.customize ["modifyvm", :id, "--usb", "on"]
vb.customize ["modifyvm", :id, "--usbehci", "on"]
vb.customize ["modifyvm", :id, "--usbxhci", "on"]
+ vb.customize [ "guestproperty", "set", :id,
"/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold", 10000]
dirs_to_mount.each do |d|
overrides.vm.synced_folder d.to_s, d.to_s
end