CVS log for ports/emulators/rtc/Makefile
Up to [FreeBSD] / ports / emulators / rtc
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.36: download - view: text, markup, annotated - select for diffs
Mon Mar 7 15:08:19 2011 UTC (11 months ago) by ehaupt
Branches: MAIN
CVS tags: RELEASE_9_0_0, HEAD
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +1 -1 lines
Unify maintainer address for emulation ports. (freebsd-emulation@FreeBSD.org -> emulation@FreeBSD.org) Discussed with: netchild (emulation)
Revision 1.35: download - view: text, markup, annotated - select for diffs
Wed Aug 26 04:40:45 2009 UTC (2 years, 5 months ago) by bland
Branches: MAIN
CVS tags: RELEASE_8_2_0, RELEASE_8_1_0, RELEASE_8_0_0, RELEASE_7_4_0, RELEASE_7_3_0, RELEASE_6_EOL
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +1 -1 lines
Add ports with kernel modules to 'kld' virtual category. PR: 137823
Revision 1.34: download - view: text, markup, annotated - select for diffs
Mon Jan 5 19:43:59 2009 UTC (3 years, 1 month ago) by pav
Branches: MAIN
CVS tags: RELEASE_7_2_0
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +0 -9 lines
- Remove conditional checks for FreeBSD 5.x and older
Revision 1.33: download - view: text, markup, annotated - select for diffs
Wed Oct 3 23:00:29 2007 UTC (4 years, 4 months ago) by edwin
Branches: MAIN
CVS tags: RELEASE_7_1_0, RELEASE_7_0_0, RELEASE_6_4_0, RELEASE_6_3_0, RELEASE_5_EOL
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +0 -4 lines
Remove support for OSVERSION < 5
Revision 1.32: download - view: text, markup, annotated - select for diffs
Sat Jan 6 15:02:19 2007 UTC (5 years, 1 month ago) by netchild
Branches: MAIN
CVS tags: RELEASE_4_EOL, PRE_XORG_7
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +3 -0 lines
Only mknod where appropriate (!devfs case).
Revision 1.31: download - view: text, markup, annotated - select for diffs
Sat Feb 25 23:39:06 2006 UTC (5 years, 11 months ago) by netchild
Branches: MAIN
CVS tags: RELEASE_6_2_0, RELEASE_6_1_0, RELEASE_5_5_0
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +9 -6 lines
Unbreak port and make it a little bit more package friendly. Approved by: portmgr (kris)
Revision 1.30: download - view: text, markup, annotated - select for diffs
Mon Feb 20 01:44:59 2006 UTC (5 years, 11 months ago) by kris
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +2 -0 lines
BROKEN: Incomplete pkg-plist
Revision 1.29: download - view: text, markup, annotated - select for diffs
Sun Jan 29 16:09:17 2006 UTC (6 years ago) by netchild
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +1 -1 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.28: 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.27: preferred, colored
Changes since revision 1.27: +3 -3 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.27: download - view: text, markup, annotated - select for diffs
Thu Oct 6 06:39:58 2005 UTC (6 years, 4 months ago) by silby
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +1 -1 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. Inspired by PR: 71536
Revision 1.26: download - view: text, markup, annotated - select for diffs
Fri Jun 17 22:59:08 2005 UTC (6 years, 7 months ago) by netchild
Branches: MAIN
CVS tags: RELEASE_6_0_0
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +1 -1 lines
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 <gerrit_huehn@gruft.fido.de [2]
Approved by: portmgr (kris, linimon), maintainers (or maintainer timeout)
Tested on: ports cluster (kris)
Reviewed by: silence on emulation@
Superseedes PR: 69997
Maintainer approval from:
chris@chrisburkert.de
cracauer@cons.org
des
girgen
jamie@bishopston.net
mezz
mi
nivit@users.sf.net
pat
simond@irrelevant.org
riggs@rrr.de
Udo.Schweigert@Siemens.com
Revision 1.25: download - view: text, markup, annotated - select for diffs
Tue Mar 1 21:51:29 2005 UTC (6 years, 11 months ago) by trevor
Branches: MAIN
CVS tags: RELEASE_5_4_0
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +1 -1 lines
Respect the user's USE_LINUX setting.
Revision 1.24: download - view: text, markup, annotated - select for diffs
Mon Dec 27 21:28:43 2004 UTC (7 years, 1 month ago) by kris
Branches: MAIN
CVS tags: RELEASE_4_11_0
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +1 -3 lines
Use NO_FETCH instead of a gratuitous do-fetch target.
Revision 1.23: 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_5_3_0, RELEASE_4_10_0
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -3 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.22: download - view: text, markup, annotated - select for diffs
Wed Mar 10 09:35:29 2004 UTC (7 years, 11 months ago) by silby
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +1 -1 lines
Bump portrev for last change. Reminded by: kris
Revision 1.21: 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.20: preferred, colored
Changes since revision 1.20: +0 -2 lines
*Actually* make rtc work on post-502104 -CURRENT.
Revision 1.20: download - view: text, markup, annotated - select for diffs
Wed Mar 3 10:15:10 2004 UTC (7 years, 11 months ago) by mbr
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +3 -1 lines
Make rtc module work with FreeBSD 502104.
Revision 1.19: 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.18: preferred, colored
Changes since revision 1.18: +1 -1 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.18: download - view: text, markup, annotated - select for diffs
Wed Jan 28 08:15:18 2004 UTC (8 years ago) by silby
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -2 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.17: download - view: text, markup, annotated - select for diffs
Sat Jan 10 07:18:54 2004 UTC (8 years, 1 month ago) by marcus
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +2 -2 lines
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
Revision 1.16: download - view: text, markup, annotated - select for diffs
Thu May 15 13:07:42 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.15: preferred, colored
Changes since revision 1.15: +1 -1 lines
Bump portrevision
Revision 1.15: download - view: text, markup, annotated - select for diffs
Fri Apr 4 22:09:04 2003 UTC (8 years, 10 months ago) by nork
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +1 -0 lines
[Forced commit] Correct dependency on linux.ko and Bump PORTREVISION. PR: ports/37992, ports/40973 Submitted by: Alexandr Kovalenko <never@nevermind.kiev.ua> Vladimir B. Grebenschikov <vova@sw.ru>
Revision 1.14: 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.13: preferred, colored
Changes since revision 1.13: +1 -1 lines
Support post-500104-current. Submitted by: Marcin Cielak <saper@sgh.waw.pl> Tested by: freebsd-emulation
Revision 1.13: download - view: text, markup, annotated - select for diffs
Fri Mar 7 06:01:17 2003 UTC (8 years, 11 months ago) by ade
Branches: MAIN
CVS tags: RELEASE_4_8_0
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +2 -1 lines
Clear moonlight beckons. Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti.
Revision 1.12: 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
CVS tags: RELEASE_5_0_DP1, RELEASE_5_0_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.11: preferred, colored
Changes since revision 1.11: +2 -2 lines
- Conditionalize bmaj and kqfilter in cdevsw.
Revision 1.11: 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.10: preferred, colored
Changes since revision 1.10: +2 -13 lines
- Replace ugly perl substitution hacks with #if's. - Support the post-KSE CURRENT.
Revision 1.10: download - view: text, markup, annotated - select for diffs
Wed Mar 14 11:03:40 2001 UTC (10 years, 11 months ago) by knu
Branches: MAIN
CVS tags: RELEASE_4_4_0, RELEASE_4_3_0
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +4 -2 lines
Define USE_LINUX, as linux_base must be installed prior to this port.
Revision 1.9: download - view: text, markup, annotated - select for diffs
Tue Jan 16 17:30:28 2001 UTC (11 years ago) by sobomax
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -3 lines
Massive style enforcement - use ^I instead of spaces for variables identation.
Revision 1.8: download - view: text, markup, annotated - select for diffs
Fri Sep 22 17:22:22 2000 UTC (11 years, 4 months ago) by knu
Branches: MAIN
CVS tags: RELEASE_4_2_0
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -3 lines
Use LINUXBASE/USE_LINUX variables. This is only a cosmetic change, so there's no need to reinstall your installation(s).
Revision 1.7: 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
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +11 -4 lines
Update for the latest current. (lminor() -> dev2unit()) Correct the startup script to unload rtc.ko module properly.
Revision 1.6: download - view: text, markup, annotated - select for diffs
Sun Sep 10 15:06:54 2000 UTC (11 years, 5 months ago) by knu
Branches: MAIN
CVS tags: RELEASE_4_1_1
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -2 lines
Set KMODDEPS=linux in Makefile. Add $FreeBSD$ tag. Submitted by: Boris Popov <bp@FreeBSD.org>
Revision 1.5: download - view: text, markup, annotated - select for diffs
Thu Aug 24 14:51:20 2000 UTC (11 years, 5 months ago) by knu
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +8 -2 lines
Chase the recent moving of linux_ioctl.h. PR: ports/20818 Submitted by: Sean-Paul Rees <sean@dreamfire.net>
Revision 1.4: download - view: text, markup, annotated - select for diffs
Sat May 6 12:49:51 2000 UTC (11 years, 9 months ago) by knu
Branches: MAIN
CVS tags: RELEASE_4_1_0, RELEASE_3_5_0
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -2 lines
Bump the version number corresponding to Peter's previous commit.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Fri Apr 14 20:13:54 2000 UTC (11 years, 10 months ago) by knu
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +6 -5 lines
Move /dev/rtc to ${LINUX_DIR}/dev/rtc, since we don't need rtc except
for running Linux stuff.
Suggested by: Nick Sayer
Revision 1.2: download - view: text, markup, annotated - select for diffs
Wed Apr 12 04:55:42 2000 UTC (11 years, 10 months ago) by mharo
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +3 -3 lines
PORTNAME/VERSION stuff
Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Mon Apr 3 15:28:29 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:29 2000 UTC (11 years, 10 months ago) by knu
Branches: MAIN
Initial revision
