View | Details | Raw Unified | Return to bug 272237
Collapse All | Expand All

(-)b/emulators/rtc/Makefile (-1 / +5 lines)
Lines 1-14 Link Here
1
PORTNAME=	rtc
1
PORTNAME=	rtc
2
PORTVERSION=	2020.07.07.1
2
PORTVERSION=	2020.07.07.1
3
PORTREVISION=	1
3
CATEGORIES=	emulators linux
4
CATEGORIES=	emulators linux
4
MASTER_SITES=	# none
5
MASTER_SITES=	# none
5
DISTFILES=	# none
6
DISTFILES=	# none
6
7
7
MAINTAINER=	jamie@catflap.org
8
MAINTAINER=	ports@FreeBSD.org
8
COMMENT=	Kernel module which provides /dev/rtc device support
9
COMMENT=	Kernel module which provides /dev/rtc device support
9
10
10
LICENSE=	BSD2CLAUSE
11
LICENSE=	BSD2CLAUSE
11
12
13
DEPRECATED=	Driver doesn't actually work with current FreeBSD versions
14
EXPIRATION_DATE=	2023-12-31
15
12
USES=		kmod uidfix
16
USES=		kmod uidfix
13
17
14
WRKSRC=		${WRKDIR}/files
18
WRKSRC=		${WRKDIR}/files
(-)b/emulators/rtc/files/rtc.c (-3 / +2 lines)
Lines 66-73 struct rtc_softc { Link Here
66
	struct {
66
	struct {
67
	 int	freq;
67
	 int	freq;
68
	 struct {
68
	 struct {
69
		int	opened:1;
69
		unsigned int	opened:1;
70
		int 	enabled:1;
70
		unsigned int 	enabled:1;
71
	 } flags;
71
	 } flags;
72
	struct callout rtc_handle;
72
	struct callout rtc_handle;
73
	struct timespec lasttime;
73
	struct timespec lasttime;
74
- 

Return to bug 272237