https://github.com/kamadak/vboxtime-netbsd
VirtualBox time synchronization driver for NetBSD
https://github.com/kamadak/vboxtime-netbsd
c netbsd virtualbox
Last synced: about 1 year ago
JSON representation
VirtualBox time synchronization driver for NetBSD
- Host: GitHub
- URL: https://github.com/kamadak/vboxtime-netbsd
- Owner: kamadak
- License: bsd-2-clause
- Created: 2014-11-03T09:53:12.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2019-06-28T14:48:58.000Z (almost 7 years ago)
- Last Synced: 2023-02-26T07:46:38.780Z (over 3 years ago)
- Topics: c, netbsd, virtualbox
- Language: C
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: COPYING.BSD
Awesome Lists containing this project
README
VirtualBox time synchronization driver for NetBSD
-------------------------------------------------
The vboxtime driver periodically synchronize the kernel clock
with the host.
Supported Platforms
-------------------
Guest: NetBSD/{i386,amd64} 6.x and later
Host: VirtualBox 4.x
Build and Install
-----------------
Extract the NetBSD source code into /usr/src.
Compile the vboxtime kernel module. If the kernel source is not in
the default location, specify the path with S=/path/to/src/sys
parameter.
% make
Test.
# modload ./vboxtime.kmod
# modunload vboxtime
Install the kernel module into /stand/machine/release/modules.
# make install
Install the manual page.
# install -d /usr/local/man/man4
# install -c -m 644 vboxtime.4 /usr/local/man/man4
Add the following line to /boot.cfg.
load=vboxtime
--
KAMADA Ken'ichi