The FreeBSD Ports Archive

Freebsd | Contact
Welcome to FreeBSD Software


FreeBSD emulators : rtc

Kernel module which provides /dev/rtc device support

 This is a kernel module for /dev/rtc device support.
Some apps such as VMware for Linux would be happy with it.

The code was originally written by Vladimir N. Silyaev.
 

#



rtc history


v. 1.33
date: 2007/10/03 23:00:29;  author: edwin;  state: Exp;  lines: +0 -4
Remove support for OSVERSION < 5

v. 1.32 date: 2007/01/06 15:02:19; author: netchild; state: Exp; lines: +3 -0 Only mknod where appropriate (!devfs case).
v. 1.31 date: 2006/02/25 23:39:06; author: netchild; state: Exp; lines: +9 -6 Unbreak port and make it a little bit more package friendly. Approved by: portmgr (kris)
v. 1.30 date: 2006/02/20 01:44:59; author: kris; state: Exp; lines: +2 -0 BROKEN: Incomplete pkg-plist
v. 1.29 date: 2006/01/29 16:09:17; author: netchild; state: Exp; lines: +1 -1 Users are confused by a diagnostic message more than they are helped because it is printing the -current- value of HZ, not the value requested. This is fixed be rearranging the order of changing the value and printing the message (they are in adjacent lines). Submitted by: rgrimes
v. 1.28 date: 2005/11/29 15:43:43; author: flz; state: Exp; lines: +3 -3 - Fix rtc on systems where sizeof(int) != sizeof(long). - Clean pkg-plist a bit. - Re-word IGNORE lines and remove quotes. PR: ports/87546 Submitted by: Simun Mikecin
v. 1.27 date: 2005/10/06 06:39:58; author: silby; state: Exp; lines: +1 -1 Change the hz warning so that it doesn't bother you if hz is already set to 1000 or greater, and take out the check to see if hz is greater than the requested tick rate. Inspired by PR: 71536
v. 1.26 date: 2005/06/17 22:59:08; author: netchild; state: Exp; lines: +1 -1 Mega-patch to cleanup the ports infrastructure regarding our linux bits: - USE_LINUX now implies NO_FILTER_SHLIBS=yes. It also doesn't use FreeBSD tools to strip binaries anymore, so it's not neccesary anymore to override STRIP and STRIP_CMD. - USE_LINUX_PREFIX implies NO_MTREE now. - In the USE_LINUX case, USE_XLIB now depends upon the linux X11 libraries instead upon the native FreeBSD libraries. - The variable LINUX_BASE_PORT contains a string which is suitable as an item in *_DEPENDS, so if a port BATCH_DEPENDS or FETCH_DEPENDS upon the default (or overriden) linux base, ${LINUX_BASE_PORT} should be used instead of a hardcoded reference. - Change all ports to comply to the "new world order". - The Ports Collection now allows to override the default linux_base port. Specify e.g. OVERRIDE_LINUX_BASE_PORT=rh-9 in /etc/make.conf to use ${PORTSDIR}/emulators/linux_base-rh-9 (the logic is to use ${PORTSDIR}/emulators/linux_base-${OVERRIDE_LINUX_BASE_PORT}). - If USE_LINUX or OVERRIDE_LINUX_BASE doesn't point to an existing linux_base port and if USE_LINUX isn't set to "yes" (case insensitive), the port will be marked as IGNORE. [1] - Readd USE_LINUX knobs into several ports and make several uses of a conditional dependency ("USE_LINUX?=") into an unconditional one ("USE_LINUX=") which where removed/changed by Trevor to allow the use of alternative linux_base ports. While this is a nice goal, the implementation resulted in missing dependencies. The OVERRIDE_LINUX_BASE_PORT knob in this commit is supposed to fix the problem while keeping the feature. Basicaly this includes a backout of Trevor's commit, to prevent confusion I mention it here explicitely. - Use the correct prefix (X11- instead of LOCAL- or LINUX-) for some ports. Chase dependencies for this. - Changes to make linux_devtools installable on amd64, remove some stray device nodes (they don't work on recent OS versions and aren't really needed). - Make linux_base-8 PREFIX clean and remove some stray device nodes. Additionally tell a little bit more about how to setup NIS/YP [2]. - Update the PGSQL dependency in the linux-opengroupware port to a recent version (the old one isn't available anymore), I don't know if this works (at least it isn't more broken than before). - Use PREFIX/usr/share/doc instead of PREFIX/usr/doc in the divx4linux ports, the former path exists already and gets populated by other packages too (PREFIX=LINUXPREFIX!). - Fix some obvious (non-linuxolator) bugs in some linux ports while being there. - Bump PORTREVISION where neccesary. Requested by: portmgr (linimon) [1] Submittted by: Gerrit Kuehn v. 1.25 date: 2005/03/01 21:51:29; author: trevor; state: Exp; lines: +1 -1 Respect the user's USE_LINUX setting.
v. 1.24 date: 2004/12/27 21:28:43; author: kris; state: Exp; lines: +1 -3 Use NO_FETCH instead of a gratuitous do-fetch target.
v. 1.23 date: 2004/03/13 21:20:03; author: silby; state: Exp; lines: +2 -3 Update the rtc device to use dynamic numbering on -current. In order to accomdate this change, stop using device nodes in /usr/compat/linux/dev and instead rely on the linuxalator passing through requests to the real /dev. (This second change also applies to 4.x).
v. 1.22 date: 2004/03/10 09:35:29; author: silby; state: Exp; lines: +1 -1 Bump portrev for last change. Reminded by: kris
v. 1.21 date: 2004/03/10 09:02:02; author: silby; state: Exp; lines: +0 -2 *Actually* make rtc work on post-502104 -CURRENT.
v. 1.20 date: 2004/03/03 10:15:10; author: mbr; state: Exp; lines: +3 -1 Make rtc module work with FreeBSD 502104.
v. 1.19 date: 2004/02/24 23:07:48; author: silby; state: Exp; lines: +1 -1 Update the rtc driver once again. As of this revision, I believe that the linux rtc device is being emulated as accurately as possible, at least in terms of its behavior. Further improvements to its accuracy will require much more precise measurement. Device cloning is not yet implemented.
v. 1.18 date: 2004/01/28 08:15:18; author: silby; state: Exp; lines: +2 -2 Replace rtc with a revamped version that I've been working on. This version uses tsleep / selrecord and a worker thread to provide a much better emulation of the rtc driver, as well as greatly decreased processor usage. Device cloning as well as a few more tweaks to the emulation are still pending.
v. 1.17 date: 2004/01/10 07:18:54; author: marcus; state: Exp; lines: +2 -2 Substitute BROKEN with IGNORE in cases where the port requires the src tree to be present, or does not compile on certain versions of FreeBSD. This will potentially avoid needless compilations on bento, and has the added benefit of improving certain reporting tools. To most users, this change is a no-op. PR: 61090 Submitted by: linimon
v. 1.16 date: 2003/05/15 13:07:42; author: mbr; state: Exp; lines: +1 -1 Bump portrevision
v. 1.15 date: 2003/04/04 22:09:04; author: nork; state: Exp; lines: +1 -0 [Forced commit] Correct dependency on linux.ko and Bump PORTREVISION. PR: ports/37992, ports/40973 Submitted by: Alexandr Kovalenko Vladimir B. Grebenschikov
v. 1.14 date: 2003/03/23 12:36:58; author: nork; state: Exp; lines: +1 -1 Support post-500104-current. Submitted by: Marcin Cielak Tested by: freebsd-emulation
v. 1.13 date: 2003/03/07 06:01:17; author: ade; state: Exp; lines: +2 -1 Clear moonlight beckons. Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti.
v. 1.12 date: 2001/09/16 07:01:44; author: knu; state: Exp; lines: +2 -2 - Conditionalize bmaj and kqfilter in cdevsw.
v. 1.11 date: 2001/09/16 06:42:36; author: knu; state: Exp; lines: +2 -13 - Replace ugly perl substitution hacks with #if's. - Support the post-KSE CURRENT.
v. 1.10 date: 2001/03/14 11:03:40; author: knu; state: Exp; lines: +4 -2 Define USE_LINUX, as linux_base must be installed prior to this port.
v. 1.9 date: 2001/01/16 17:30:28; author: sobomax; state: Exp; lines: +3 -3 Massive style enforcement - use ^I instead of spaces for variables identation.
v. 1.8 date: 2000/09/22 17:22:22; author: knu; state: Exp; lines: +2 -3 Use LINUXBASE/USE_LINUX variables. This is only a cosmetic change, so there's no need to reinstall your installation(s).
v. 1.7 date: 2000/09/22 11:08:22; author: knu; state: Exp; lines: +11 -4 Update for the latest current. (lminor() -> dev2unit()) Correct the startup script to unload rtc.ko module properly.
v. 1.6 date: 2000/09/10 15:06:54; author: knu; state: Exp; lines: +2 -2 Set KMODDEPS=linux in Makefile. Add $FreeBSD$ tag. Submitted by: Boris Popov
v. 1.5 date: 2000/08/24 14:51:20; author: knu; state: Exp; lines: +8 -2 Chase the recent moving of linux_ioctl.h. PR: ports/20818 Submitted by: Sean-Paul Rees
v. 1.4 date: 2000/05/06 12:49:51; author: knu; state: Exp; lines: +2 -2 Bump the version number corresponding to Peter's previous commit.
v. 1.3 date: 2000/04/14 20:13:54; author: knu; state: Exp; lines: +6 -5 Move /dev/rtc to ${LINUX_DIR}/dev/rtc, since we don't need rtc except for running Linux stuff. Suggested by: Nick Sayer
v. 1.2 date: 2000/04/12 04:55:42; author: mharo; state: Exp; lines: +3 -3 PORTNAME/VERSION stuff
v. 1.1 date: 2000/04/03 15:28:29; author: knu; state: Exp; branches: 1.1.1; Initial revision
v. 1.1.1.1 date: 2000/04/03 15:28:29; author: knu; state: Exp; lines: +0 -0 This is rtc, a kernel module for /dev/rtc device support. Some apps such as VMware for Linux would be happy with it. The code was originally written by Vladimir N. Silyaev. Note: It _includes_ Linux ioctl support, but basically it's FreeBSD native stuff. I'm importing this into emulators category for convevience' sake. Check it out. ============================================================================= v. 1.33 date: 2007/10/03 23:00:29; author: edwin; state: Exp; lines: +0 -4 Remove support for OSVERSION < 5
v. 1.32 date: 2007/01/06 15:02:19; author: netchild; state: Exp; lines: +3 -0 Only mknod where appropriate (!devfs case).
v. 1.31 date: 2006/02/25 23:39:06; author: netchild; state: Exp; lines: +9 -6 Unbreak port and make it a little bit more package friendly. Approved by: portmgr (kris)
v. 1.30 date: 2006/02/20 01:44:59; author: kris; state: Exp; lines: +2 -0 BROKEN: Incomplete pkg-plist
v. 1.29 date: 2006/01/29 16:09:17; author: netchild; state: Exp; lines: +1 -1 Users are confused by a diagnostic message more than they are helped because it is printing the -current- value of HZ, not the value requested. This is fixed be rearranging the order of changing the value and printing the message (they are in adjacent lines). Submitted by: rgrimes
v. 1.28 date: 2005/11/29 15:43:43; author: flz; state: Exp; lines: +3 -3 - Fix rtc on systems where sizeof(int) != sizeof(long). - Clean pkg-plist a bit. - Re-word IGNORE lines and remove quotes. PR: ports/87546 Submitted by: Simun Mikecin
v. 1.27 date: 2005/10/06 06:39:58; author: silby; state: Exp; lines: +1 -1 Change the hz warning so that it doesn't bother you if hz is already set to 1000 or greater, and take out the check to see if hz is greater than the requested tick rate. Inspired by PR: 71536
v. 1.26 date: 2005/06/17 22:59:08; author: netchild; state: Exp; lines: +1 -1 Mega-patch to cleanup the ports infrastructure regarding our linux bits: - USE_LINUX now implies NO_FILTER_SHLIBS=yes. It also doesn't use FreeBSD tools to strip binaries anymore, so it's not neccesary anymore to override STRIP and STRIP_CMD. - USE_LINUX_PREFIX implies NO_MTREE now. - In the USE_LINUX case, USE_XLIB now depends upon the linux X11 libraries instead upon the native FreeBSD libraries. - The variable LINUX_BASE_PORT contains a string which is suitable as an item in *_DEPENDS, so if a port BATCH_DEPENDS or FETCH_DEPENDS upon the default (or overriden) linux base, ${LINUX_BASE_PORT} should be used instead of a hardcoded reference. - Change all ports to comply to the "new world order". - The Ports Collection now allows to override the default linux_base port. Specify e.g. OVERRIDE_LINUX_BASE_PORT=rh-9 in /etc/make.conf to use ${PORTSDIR}/emulators/linux_base-rh-9 (the logic is to use ${PORTSDIR}/emulators/linux_base-${OVERRIDE_LINUX_BASE_PORT}). - If USE_LINUX or OVERRIDE_LINUX_BASE doesn't point to an existing linux_base port and if USE_LINUX isn't set to "yes" (case insensitive), the port will be marked as IGNORE. [1] - Readd USE_LINUX knobs into several ports and make several uses of a conditional dependency ("USE_LINUX?=") into an unconditional one ("USE_LINUX=") which where removed/changed by Trevor to allow the use of alternative linux_base ports. While this is a nice goal, the implementation resulted in missing dependencies. The OVERRIDE_LINUX_BASE_PORT knob in this commit is supposed to fix the problem while keeping the feature. Basicaly this includes a backout of Trevor's commit, to prevent confusion I mention it here explicitely. - Use the correct prefix (X11- instead of LOCAL- or LINUX-) for some ports. Chase dependencies for this. - Changes to make linux_devtools installable on amd64, remove some stray device nodes (they don't work on recent OS versions and aren't really needed). - Make linux_base-8 PREFIX clean and remove some stray device nodes. Additionally tell a little bit more about how to setup NIS/YP [2]. - Update the PGSQL dependency in the linux-opengroupware port to a recent version (the old one isn't available anymore), I don't know if this works (at least it isn't more broken than before). - Use PREFIX/usr/share/doc instead of PREFIX/usr/doc in the divx4linux ports, the former path exists already and gets populated by other packages too (PREFIX=LINUXPREFIX!). - Fix some obvious (non-linuxolator) bugs in some linux ports while being there. - Bump PORTREVISION where neccesary. Requested by: portmgr (linimon) [1] Submittted by: Gerrit Kuehn v. 1.25 date: 2005/03/01 21:51:29; author: trevor; state: Exp; lines: +1 -1 Respect the user's USE_LINUX setting.
v. 1.24 date: 2004/12/27 21:28:43; author: kris; state: Exp; lines: +1 -3 Use NO_FETCH instead of a gratuitous do-fetch target.
v. 1.23 date: 2004/03/13 21:20:03; author: silby; state: Exp; lines: +2 -3 Update the rtc device to use dynamic numbering on -current. In order to accomdate this change, stop using device nodes in /usr/compat/linux/dev and instead rely on the linuxalator passing through requests to the real /dev. (This second change also applies to 4.x).
v. 1.22 date: 2004/03/10 09:35:29; author: silby; state: Exp; lines: +1 -1 Bump portrev for last change. Reminded by: kris
v. 1.21 date: 2004/03/10 09:02:02; author: silby; state: Exp; lines: +0 -2 *Actually* make rtc work on post-502104 -CURRENT.
v. 1.20 date: 2004/03/03 10:15:10; author: mbr; state: Exp; lines: +3 -1 Make rtc module work with FreeBSD 502104.
v. 1.19 date: 2004/02/24 23:07:48; author: silby; state: Exp; lines: +1 -1 Update the rtc driver once again. As of this revision, I believe that the linux rtc device is being emulated as accurately as possible, at least in terms of its behavior. Further improvements to its accuracy will require much more precise measurement. Device cloning is not yet implemented.
v. 1.18 date: 2004/01/28 08:15:18; author: silby; state: Exp; lines: +2 -2 Replace rtc with a revamped version that I've been working on. This version uses tsleep / selrecord and a worker thread to provide a much better emulation of the rtc driver, as well as greatly decreased processor usage. Device cloning as well as a few more tweaks to the emulation are still pending.
v. 1.17 date: 2004/01/10 07:18:54; author: marcus; state: Exp; lines: +2 -2 Substitute BROKEN with IGNORE in cases where the port requires the src tree to be present, or does not compile on certain versions of FreeBSD. This will potentially avoid needless compilations on bento, and has the added benefit of improving certain reporting tools. To most users, this change is a no-op. PR: 61090 Submitted by: linimon
v. 1.16 date: 2003/05/15 13:07:42; author: mbr; state: Exp; lines: +1 -1 Bump portrevision
v. 1.15 date: 2003/04/04 22:09:04; author: nork; state: Exp; lines: +1 -0 [Forced commit] Correct dependency on linux.ko and Bump PORTREVISION. PR: ports/37992, ports/40973 Submitted by: Alexandr Kovalenko Vladimir B. Grebenschikov
v. 1.14 date: 2003/03/23 12:36:58; author: nork; state: Exp; lines: +1 -1 Support post-500104-current. Submitted by: Marcin Cielak Tested by: freebsd-emulation
v. 1.13 date: 2003/03/07 06:01:17; author: ade; state: Exp; lines: +2 -1 Clear moonlight beckons. Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti.
v. 1.12 date: 2001/09/16 07:01:44; author: knu; state: Exp; lines: +2 -2 - Conditionalize bmaj and kqfilter in cdevsw.
v. 1.11 date: 2001/09/16 06:42:36; author: knu; state: Exp; lines: +2 -13 - Replace ugly perl substitution hacks with #if's. - Support the post-KSE CURRENT.
v. 1.10 date: 2001/03/14 11:03:40; author: knu; state: Exp; lines: +4 -2 Define USE_LINUX, as linux_base must be installed prior to this port.
v. 1.9 date: 2001/01/16 17:30:28; author: sobomax; state: Exp; lines: +3 -3 Massive style enforcement - use ^I instead of spaces for variables identation.
v. 1.8 date: 2000/09/22 17:22:22; author: knu; state: Exp; lines: +2 -3 Use LINUXBASE/USE_LINUX variables. This is only a cosmetic change, so there's no need to reinstall your installation(s).
v. 1.7 date: 2000/09/22 11:08:22; author: knu; state: Exp; lines: +11 -4 Update for the latest current. (lminor() -> dev2unit()) Correct the startup script to unload rtc.ko module properly.
v. 1.6 date: 2000/09/10 15:06:54; author: knu; state: Exp; lines: +2 -2 Set KMODDEPS=linux in Makefile. Add $FreeBSD$ tag. Submitted by: Boris Popov
v. 1.5 date: 2000/08/24 14:51:20; author: knu; state: Exp; lines: +8 -2 Chase the recent moving of linux_ioctl.h. PR: ports/20818 Submitted by: Sean-Paul Rees
v. 1.4 date: 2000/05/06 12:49:51; author: knu; state: Exp; lines: +2 -2 Bump the version number corresponding to Peter's previous commit.
v. 1.3 date: 2000/04/14 20:13:54; author: knu; state: Exp; lines: +6 -5 Move /dev/rtc to ${LINUX_DIR}/dev/rtc, since we don't need rtc except for running Linux stuff. Suggested by: Nick Sayer
v. 1.2 date: 2000/04/12 04:55:42; author: mharo; state: Exp; lines: +3 -3 PORTNAME/VERSION stuff
v. 1.1 date: 2000/04/03 15:28:29; author: knu; state: Exp; branches: 1.1.1; Initial revision
v. 1.1.1.1 date: 2000/04/03 15:28:29; author: knu; state: Exp; lines: +0 -0 This is rtc, a kernel module for /dev/rtc device support. Some apps such as VMware for Linux would be happy with it. The code was originally written by Vladimir N. Silyaev. Note: It _includes_ Linux ioctl support, but basically it's FreeBSD native stuff. I'm importing this into emulators category for convevience' sake. Check it out. ============================================================================= v. 1.33 date: 2007/10/03 23:00:29; author: edwin; state: Exp; lines: +0 -4 Remove support for OSVERSION < 5
v. 1.32 date: 2007/01/06 15:02:19; author: netchild; state: Exp; lines: +3 -0 Only mknod where appropriate (!devfs case).
v. 1.31 date: 2006/02/25 23:39:06; author: netchild; state: Exp; lines: +9 -6 Unbreak port and make it a little bit more package friendly. Approved by: portmgr (kris)
v. 1.30 date: 2006/02/20 01:44:59; author: kris; state: Exp; lines: +2 -0 BROKEN: Incomplete pkg-plist
v. 1.29 date: 2006/01/29 16:09:17; author: netchild; state: Exp; lines: +1 -1 Users are confused by a diagnostic message more than they are helped because it is printing the -current- value of HZ, not the value requested. This is fixed be rearranging the order of changing the value and printing the message (they are in adjacent lines). Submitted by: rgrimes
v. 1.28 date: 2005/11/29 15:43:43; author: flz; state: Exp; lines: +3 -3 - Fix rtc on systems where sizeof(int) != sizeof(long). - Clean pkg-plist a bit. - Re-word IGNORE lines and remove quotes. PR: ports/87546 Submitted by: Simun Mikecin
v. 1.27 date: 2005/10/06 06:39:58; author: silby; state: Exp; lines: +1 -1 Change the hz warning so that it doesn't bother you if hz is already set to 1000 or greater, and take out the check to see if hz is greater than the requested tick rate. Inspired by PR: 71536
v. 1.26 date: 2005/06/17 22:59:08; author: netchild; state: Exp; lines: +1 -1 Mega-patch to cleanup the ports infrastructure regarding our linux bits: - USE_LINUX now implies NO_FILTER_SHLIBS=yes. It also doesn't use FreeBSD tools to strip binaries anymore, so it's not neccesary anymore to override STRIP and STRIP_CMD. - USE_LINUX_PREFIX implies NO_MTREE now. - In the USE_LINUX case, USE_XLIB now depends upon the linux X11 libraries instead upon the native FreeBSD libraries. - The variable LINUX_BASE_PORT contains a string which is suitable as an item in *_DEPENDS, so if a port BATCH_DEPENDS or FETCH_DEPENDS upon the default (or overriden) linux base, ${LINUX_BASE_PORT} should be used instead of a hardcoded reference. - Change all ports to comply to the "new world order". - The Ports Collection now allows to override the default linux_base port. Specify e.g. OVERRIDE_LINUX_BASE_PORT=rh-9 in /etc/make.conf to use ${PORTSDIR}/emulators/linux_base-rh-9 (the logic is to use ${PORTSDIR}/emulators/linux_base-${OVERRIDE_LINUX_BASE_PORT}). - If USE_LINUX or OVERRIDE_LINUX_BASE doesn't point to an existing linux_base port and if USE_LINUX isn't set to "yes" (case insensitive), the port will be marked as IGNORE. [1] - Readd USE_LINUX knobs into several ports and make several uses of a conditional dependency ("USE_LINUX?=") into an unconditional one ("USE_LINUX=") which where removed/changed by Trevor to allow the use of alternative linux_base ports. While this is a nice goal, the implementation resulted in missing dependencies. The OVERRIDE_LINUX_BASE_PORT knob in this commit is supposed to fix the problem while keeping the feature. Basicaly this includes a backout of Trevor's commit, to prevent confusion I mention it here explicitely. - Use the correct prefix (X11- instead of LOCAL- or LINUX-) for some ports. Chase dependencies for this. - Changes to make linux_devtools installable on amd64, remove some stray device nodes (they don't work on recent OS versions and aren't really needed). - Make linux_base-8 PREFIX clean and remove some stray device nodes. Additionally tell a little bit more about how to setup NIS/YP [2]. - Update the PGSQL dependency in the linux-opengroupware port to a recent version (the old one isn't available anymore), I don't know if this works (at least it isn't more broken than before). - Use PREFIX/usr/share/doc instead of PREFIX/usr/doc in the divx4linux ports, the former path exists already and gets populated by other packages too (PREFIX=LINUXPREFIX!). - Fix some obvious (non-linuxolator) bugs in some linux ports while being there. - Bump PORTREVISION where neccesary. Requested by: portmgr (linimon) [1] Submittted by: Gerrit Kuehn v. 1.25 date: 2005/03/01 21:51:29; author: trevor; state: Exp; lines: +1 -1 Respect the user's USE_LINUX setting.
v. 1.24 date: 2004/12/27 21:28:43; author: kris; state: Exp; lines: +1 -3 Use NO_FETCH instead of a gratuitous do-fetch target.
v. 1.23 date: 2004/03/13 21:20:03; author: silby; state: Exp; lines: +2 -3 Update the rtc device to use dynamic numbering on -current. In order to accomdate this change, stop using device nodes in /usr/compat/linux/dev and instead rely on the linuxalator passing through requests to the real /dev. (This second change also applies to 4.x).
v. 1.22 date: 2004/03/10 09:35:29; author: silby; state: Exp; lines: +1 -1 Bump portrev for last change. Reminded by: kris
v. 1.21 date: 2004/03/10 09:02:02; author: silby; state: Exp; lines: +0 -2 *Actually* make rtc work on post-502104 -CURRENT.
v. 1.20 date: 2004/03/03 10:15:10; author: mbr; state: Exp; lines: +3 -1 Make rtc module work with FreeBSD 502104.
v. 1.19 date: 2004/02/24 23:07:48; author: silby; state: Exp; lines: +1 -1 Update the rtc driver once again. As of this revision, I believe that the linux rtc device is being emulated as accurately as possible, at least in terms of its behavior. Further improvements to its accuracy will require much more precise measurement. Device cloning is not yet implemented.
v. 1.18 date: 2004/01/28 08:15:18; author: silby; state: Exp; lines: +2 -2 Replace rtc with a revamped version that I've been working on. This version uses tsleep / selrecord and a worker thread to provide a much better emulation of the rtc driver, as well as greatly decreased processor usage. Device cloning as well as a few more tweaks to the emulation are still pending.
v. 1.17 date: 2004/01/10 07:18:54; author: marcus; state: Exp; lines: +2 -2 Substitute BROKEN with IGNORE in cases where the port requires the src tree to be present, or does not compile on certain versions of FreeBSD. This will potentially avoid needless compilations on bento, and has the added benefit of improving certain reporting tools. To most users, this change is a no-op. PR: 61090 Submitted by: linimon
v. 1.16 date: 2003/05/15 13:07:42; author: mbr; state: Exp; lines: +1 -1 Bump portrevision
v. 1.15 date: 2003/04/04 22:09:04; author: nork; state: Exp; lines: +1 -0 [Forced commit] Correct dependency on linux.ko and Bump PORTREVISION. PR: ports/37992, ports/40973 Submitted by: Alexandr Kovalenko Vladimir B. Grebenschikov
v. 1.14 date: 2003/03/23 12:36:58; author: nork; state: Exp; lines: +1 -1 Support post-500104-current. Submitted by: Marcin Cielak Tested by: freebsd-emulation
v. 1.13 date: 2003/03/07 06:01:17; author: ade; state: Exp; lines: +2 -1 Clear moonlight beckons. Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti.
v. 1.12 date: 2001/09/16 07:01:44; author: knu; state: Exp; lines: +2 -2 - Conditionalize bmaj and kqfilter in cdevsw.
v. 1.11 date: 2001/09/16 06:42:36; author: knu; state: Exp; lines: +2 -13 - Replace ugly perl substitution hacks with #if's. - Support the post-KSE CURRENT.
v. 1.10 date: 2001/03/14 11:03:40; author: knu; state: Exp; lines: +4 -2 Define USE_LINUX, as linux_base must be installed prior to this port.
v. 1.9 date: 2001/01/16 17:30:28; author: sobomax; state: Exp; lines: +3 -3 Massive style enforcement - use ^I instead of spaces for variables identation.
v. 1.8 date: 2000/09/22 17:22:22; author: knu; state: Exp; lines: +2 -3 Use LINUXBASE/USE_LINUX variables. This is only a cosmetic change, so there's no need to reinstall your installation(s).
v. 1.7 date: 2000/09/22 11:08:22; author: knu; state: Exp; lines: +11 -4 Update for the latest current. (lminor() -> dev2unit()) Correct the startup script to unload rtc.ko module properly.
v. 1.6 date: 2000/09/10 15:06:54; author: knu; state: Exp; lines: +2 -2 Set KMODDEPS=linux in Makefile. Add $FreeBSD$ tag. Submitted by: Boris Popov
v. 1.5 date: 2000/08/24 14:51:20; author: knu; state: Exp; lines: +8 -2 Chase the recent moving of linux_ioctl.h. PR: ports/20818 Submitted by: Sean-Paul Rees
v. 1.4 date: 2000/05/06 12:49:51; author: knu; state: Exp; lines: +2 -2 Bump the version number corresponding to Peter's previous commit.
v. 1.3 date: 2000/04/14 20:13:54; author: knu; state: Exp; lines: +6 -5 Move /dev/rtc to ${LINUX_DIR}/dev/rtc, since we don't need rtc except for running Linux stuff. Suggested by: Nick Sayer
v. 1.2 date: 2000/04/12 04:55:42; author: mharo; state: Exp; lines: +3 -3 PORTNAME/VERSION stuff
v. 1.1 date: 2000/04/03 15:28:29; author: knu; state: Exp; branches: 1.1.1; Initial revision
v. 1.1.1.1 date: 2000/04/03 15:28:29; author: knu; state: Exp; lines: +0 -0 This is rtc, a kernel module for /dev/rtc device support. Some apps such as VMware for Linux would be happy with it. The code was originally written by Vladimir N. Silyaev. Note: It _includes_ Linux ioctl support, but basically it's FreeBSD native stuff. I'm importing this into emulators category for convevience' sake. Check it out. =============================================================================



Main menu

FreeBSD

Program categories

Freebsd accessibility
Freebsd archivers
Freebsd astro
Freebsd audio
Freebsd benchmarks
Freebsd biology
Freebsd cad
Freebsd chinese
Freebsd comms
Freebsd converters
Freebsd databases
Freebsd deskutils
Freebsd devel
Freebsd dns
Freebsd editors
Freebsd emulators
Freebsd finance
Freebsd french
Freebsd ftp
Freebsd games
Freebsd german
Freebsd graphics
Freebsd hebrew
Freebsd hungarian
Freebsd irc
Freebsd japanese
Freebsd java
Freebsd korean
Freebsd lang
Freebsd mail
Freebsd math
Freebsd mbone
Freebsd misc
Freebsd multimedia
Freebsd net
Freebsd net-im
Freebsd net-mgmt
Freebsd net-p2p
Freebsd news
Freebsd palm
Freebsd polish
Freebsd ports-mgmt
Freebsd portuguese
Freebsd print
Freebsd russian
Freebsd science
Freebsd security
Freebsd shells
Freebsd sysutils
Freebsd textproc
Freebsd ukrainian
Freebsd vietnamese
Freebsd www
Freebsd x11
Freebsd x11-clocks
Freebsd x11-drivers
Freebsd x11-fm
Freebsd x11-fonts
Freebsd x11-servers
Freebsd x11-themes
Freebsd x11-toolkits
Freebsd x11-wm