Skip site navigation (1)Skip section navigation (2)

CVS log for ports/emulators/rtc/files/rtc.c

[BACK] Up to [FreeBSD] / ports / emulators / rtc / files

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.19: download - view: text, markup, annotated - select for diffs
Sun Jan 29 16:09:18 2006 UTC (6 years ago) by netchild
Branches: MAIN
CVS tags: RELEASE_9_0_0, RELEASE_8_2_0, RELEASE_8_1_0, RELEASE_8_0_0, RELEASE_7_4_0, RELEASE_7_3_0, RELEASE_7_2_0, RELEASE_7_1_0, RELEASE_7_0_0, RELEASE_6_EOL, RELEASE_6_4_0, RELEASE_6_3_0, RELEASE_6_2_0, RELEASE_6_1_0, RELEASE_5_EOL, RELEASE_5_5_0, RELEASE_4_EOL, PRE_XORG_7, HEAD
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -2 lines
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

Revision 1.18: download - view: text, markup, annotated - select for diffs
Tue Nov 29 15:43:43 2005 UTC (6 years, 2 months ago) by flz
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +7 -5 lines
- 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 <numisemis@yahoo.com>

Revision 1.17: download - view: text, markup, annotated - select for diffs
Thu Oct 6 06:38:38 2005 UTC (6 years, 4 months ago) by silby
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +3 -3 lines
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.

Revision 1.16: download - view: text, markup, annotated - select for diffs
Thu Jun 24 07:49:45 2004 UTC (7 years, 7 months ago) by silby
Branches: MAIN
CVS tags: RELEASE_6_0_0, RELEASE_5_4_0, RELEASE_5_3_0, RELEASE_4_11_0
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +35 -6 lines
Patch to keep up with the recent cdev changes.  No need for a port
revision bump, the functionality is unchanged.

Revision 1.15: download - view: text, markup, annotated - select for diffs
Sat Mar 13 21:20:03 2004 UTC (7 years, 11 months ago) by silby
Branches: MAIN
CVS tags: RELEASE_4_10_0
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +3 -2 lines
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).

Revision 1.14: download - view: text, markup, annotated - select for diffs
Wed Mar 10 09:44:44 2004 UTC (7 years, 11 months ago) by silby
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -2 lines
Ugh, 502103 is the correct revision, not 502104.

No portrev bump needed.

Revision 1.13: download - view: text, markup, annotated - select for diffs
Wed Mar 10 09:02:02 2004 UTC (7 years, 11 months ago) by silby
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +1 -3 lines
*Actually* make rtc work on post-502104 -CURRENT.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Wed Mar 3 10:15:11 2004 UTC (7 years, 11 months ago) by mbr
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +7 -1 lines
Make rtc module work with FreeBSD 502104.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Tue Feb 24 23:07:48 2004 UTC (7 years, 11 months ago) by silby
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +14 -6 lines
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.

Revision 1.10: download - view: text, markup, annotated - select for diffs
Wed Jan 28 08:15:19 2004 UTC (8 years ago) by silby
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +108 -30 lines
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.

Revision 1.9: download - view: text, markup, annotated - select for diffs
Fri Jan 23 09:07:51 2004 UTC (8 years ago) by silby
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +1 -2 lines
Fix that pesky panic when the rtc module is unloaded.

PR:	ports/57465

Revision 1.8: download - view: text, markup, annotated - select for diffs
Thu May 15 13:06:57 2003 UTC (8 years, 8 months ago) by mbr
Branches: MAIN
CVS tags: RELEASE_5_2_1, RELEASE_5_2_0, RELEASE_5_1_0, RELEASE_4_9_0
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +6 -4 lines
Fix panic if the rtc module gets loaded twice: Make rtc_dev static
and destroy the device on cleanup.

Submitted by:	Orlando Bassotto <orlando.bassotto@ieo-research.it>

Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Mar 23 12:36:58 2003 UTC (8 years, 10 months ago) by nork
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +20 -6 lines
Support post-500104-current.

Submitted by:	Marcin Cielak <saper@sgh.waw.pl>
Tested by:	freebsd-emulation

Revision 1.6: download - view: text, markup, annotated - select for diffs
Sun Sep 16 07:05:18 2001 UTC (10 years, 4 months ago) by knu
Branches: MAIN
CVS tags: RELEASE_5_0_DP1, RELEASE_5_0_0, RELEASE_4_8_0, RELEASE_4_7_0, RELEASE_4_6_2, RELEASE_4_6_1, RELEASE_4_6_0, RELEASE_4_5_0
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +1 -0 lines
Add $FreeBSD$ tags.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Sun Sep 16 07:01:44 2001 UTC (10 years, 4 months ago) by knu
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +6 -1 lines
- Conditionalize bmaj and kqfilter in cdevsw.

Revision 1.4: download - view: text, markup, annotated - select for diffs
Sun Sep 16 06:42:36 2001 UTC (10 years, 4 months ago) by knu
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +20 -0 lines
- Replace ugly perl substitution hacks with #if's.

- Support the post-KSE CURRENT.

Revision 1.3: download - view: text, markup, annotated - select for diffs
Fri Sep 22 11:08:22 2000 UTC (11 years, 4 months ago) by knu
Branches: MAIN
CVS tags: RELEASE_4_4_0, RELEASE_4_3_0, RELEASE_4_2_0
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +1 -1 lines
Update for the latest current. (lminor() -> dev2unit())

Correct the startup script to unload rtc.ko module properly.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Fri May 5 13:08:30 2000 UTC (11 years, 9 months ago) by peter
Branches: MAIN
CVS tags: RELEASE_4_1_1, RELEASE_4_1_0, RELEASE_3_5_0
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +4 -0 lines
The rtc module depends on linux (for -current)

Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Mon Apr 3 15:28:30 2000 UTC (11 years, 10 months ago) by knu
Branches: KNU
CVS tags: v2000_03_28
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0 lines
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.

Revision 1.1: download - view: text, markup, annotated - select for diffs
Mon Apr 3 15:28:30 2000 UTC (11 years, 10 months ago) by knu
Branches: MAIN
Initial revision

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options