summaryrefslogtreecommitdiff
path: root/emulators/rtc/files (follow)
Commit message (Collapse)AuthorAgeFilesLines
* cleanup: drop support for EOL FreeBSD 11.XRene Ladan2021-09-301-18/+0
| | | | | | | | | | | | | | | | | Search criteria used: - 11.4 - OSREL* - OSVER* - *_FreeBSD_11 Input from: - adridg: devel/qca-legacy - jbeich: _WITH_DPRINTF, _WITH_GETLINE, GNU bfd workarounds - sunpoet: security/p5-*OpenSSL* Reviewed by: doceng, kde, multimedia, perl, python, ruby, rust Differential Revision: https://reviews.freebsd.org/D32008 Test Plan: make index
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-063-5/+0
|
* emulators/rtc: update 2004.02.24.1 -> 2020.07.07.1Kurt Jaeger2020-09-015-153/+26
| | | | | | | | | | | | | | | | | | | - submitter becomes maintainer - Install kmod into /boot/modules instead of /usr/local - Cleared out bits dating back to pre-devfs - Removed #ifdef bits related to FreeBSD <= 4.X and FreeBSD <= 8.X - Olegs fixes for FreeBSD 11.X and FreeBSD 12.X+ - Removed "USES= linux uidfix" - whilst this provides functionality that is "often" used by linux programs, that's not necessarily the case, and this module doesn't require any linux subsystem or kernel MOD to operate. - Removed oldstyle rtc.sh - include pkg-message showing how to load from the rc.conf "kld_list" mechanism. - Fixed typo in "test.c" -> /dec -> /dev - Fixed path to "rtc.h" in "test.c" PR: 233057 Submitted by: Jamie Landeg-Jones <jamie@catflap.org>
* Clean up support for FreeBSD 11.2.Rene Ladan2019-11-071-4/+0
| | | | | | | | | | | While here, modernize some comments in Mk/bsd.*.mk. Note that graphics/drm-fbsd11.2-kmod is not renamed yet, this was somewhat under discussion. Submitted by: rene Reviewed by: antoine, jbeich, mat, zeising Differential Revision: https://reviews.freebsd.org/D21974
* Remove superfluous linefeeds and fix some other minor whitespace bugs.Alexey Dokuchaev2018-01-111-1/+0
|
* Remove trailing whitespace from Makefiles, A-L.Jimmy Olgeni2015-10-081-1/+1
|
* - Allow staging as a regular userAntoine Brodin2014-09-131-4/+0
| | | | - Fix build on head
* Fix building for OSVERSION >= 900044.Boris Samorodov2011-09-181-0/+8
| | | | | | PR: ports/160799 Submitted by: Ivan Klymenko <fidaj@ukr.net> Patch by: Rainer Hurling <rhurlin@gwdg.de>
* Users are confused by a diagnostic message more than they areAlexander Leidinger2006-01-291-1/+1
| | | | | | | | 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
* - Fix rtc on systems where sizeof(int) != sizeof(long).Florent Thoumie2005-11-291-4/+6
| | | | | | | | - Clean pkg-plist a bit. - Re-word IGNORE lines and remove quotes. PR: ports/87546 Submitted by: Simun Mikecin <numisemis@yahoo.com>
* Change the hz warning so that it doesn't bother you if hz is alreadyMike Silbersack2005-10-061-2/+2
| | | | | set to 1000 or greater, and take out the check to see if hz is greater than the requested tick rate.
* Patch to keep up with the recent cdev changes. No need for a portMike Silbersack2004-06-241-5/+34
| | | | revision bump, the functionality is unchanged.
* Update the rtc device to use dynamic numbering on -current. In order toMike Silbersack2004-03-131-1/+2
| | | | | | 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).
* Ugh, 502103 is the correct revision, not 502104.Mike Silbersack2004-03-101-1/+1
| | | | No portrev bump needed.
* *Actually* make rtc work on post-502104 -CURRENT.Mike Silbersack2004-03-101-2/+0
|
* Make rtc module work with FreeBSD 502104.Martin Blapp2004-03-031-0/+6
|
* Update the rtc driver once again. As of this revision, I believe thatMike Silbersack2004-02-241-5/+13
| | | | | | | | 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.
* Replace rtc with a revamped version that I've been working on. This versionMike Silbersack2004-01-281-29/+107
| | | | | | | 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.
* Fix that pesky panic when the rtc module is unloaded.Mike Silbersack2004-01-231-1/+0
| | | | PR: ports/57465
* Fix panic if the rtc module gets loaded twice: Make rtc_dev staticMartin Blapp2003-05-151-3/+5
| | | | | | and destroy the device on cleanup. Submitted by: Orlando Bassotto <orlando.bassotto@ieo-research.it>
* Correct dependency on linux.ko.Norikatsu Shigemura2003-04-041-0/+2
| | | | | PR: ports/40973 Submitted by: Vladimir B. Grebenschikov <vova@sw.ru>
* Support post-500104-current.Norikatsu Shigemura2003-03-232-7/+21
| | | | | Submitted by: Marcin Cielak <saper@sgh.waw.pl> Tested by: freebsd-emulation
* Fix build on -CURRENT by conditionally defining M_WAITOK as 0x0000.Alexander Langer2003-02-121-0/+4
|
* Current doesn't use KMODDEPS.Josef Karthauser2002-08-141-0/+2
| | | | Submitted by: Mark Santcroos <marks@ripe.net>
* Add $FreeBSD$ tags.Akinori MUSHA2001-09-162-0/+3
|
* - Conditionalize bmaj and kqfilter in cdevsw.Akinori MUSHA2001-09-161-1/+6
|
* - Replace ugly perl substitution hacks with #if's.Akinori MUSHA2001-09-162-0/+28
| | | | - Support the post-KSE CURRENT.
* Update for the latest current. (lminor() -> dev2unit())Akinori MUSHA2000-09-222-4/+5
| | | | Correct the startup script to unload rtc.ko module properly.
* Set KMODDEPS=linux in Makefile.Akinori MUSHA2000-09-101-0/+3
| | | | | | Add $FreeBSD$ tag. Submitted by: Boris Popov <bp@FreeBSD.org>
* Chase the recent moving of linux_ioctl.h.Akinori MUSHA2000-08-241-1/+1
| | | | | PR: ports/20818 Submitted by: Sean-Paul Rees <sean@dreamfire.net>
* As threatened on freebsd-ports: all startup scripts know about the twoThomas Gellekum2000-07-051-4/+15
| | | | | | | options `start' and `stop' now (unless I have forgotten any). This allows us to call the scripts from /etc/rc.shutdown with the correct option. The (42 or so) ports that already DTRT before are unchanged.
* The rtc module depends on linux (for -current)Peter Wemm2000-05-051-0/+4
|
* This is rtc, a kernel module for /dev/rtc device support.Akinori MUSHA2000-04-036-0/+481
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.