From owner-cvs-all Sun Apr 28 12:20:30 2002 Delivered-To: cvs-all@freebsd.org Received: from tomts9-srv.bellnexxia.net (tomts9.bellnexxia.net [209.226.175.53]) by hub.freebsd.org (Postfix) with ESMTP id B42FB37B400; Sun, 28 Apr 2002 12:20:19 -0700 (PDT) Received: from shall.anarcat.dyndns.org ([65.94.190.137]) by tomts9-srv.bellnexxia.net (InterMail vM.5.01.04.05 201-253-122-122-105-20011231) with ESMTP id <20020428192018.CUVQ985.tomts9-srv.bellnexxia.net@shall.anarcat.dyndns.org>; Sun, 28 Apr 2002 15:20:18 -0400 Received: from lenny.anarcat.dyndns.org (lenny.anarcat.dyndns.org [192.168.0.4]) by shall.anarcat.dyndns.org (Postfix) with SMTP id 8B14956; Sun, 28 Apr 2002 15:19:43 -0400 (EDT) Received: by lenny.anarcat.dyndns.org (sSMTP sendmail emulation); Sun, 28 Apr 2002 15:19:15 -0400 Date: Sun, 28 Apr 2002 15:19:15 -0400 From: The Anarcat To: Eric Anholt Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/drm drm.h drmP.h drm_agpsupport.h drm_auth.h drm_bufs.h drm_context.h drm_dma.h drm_drawable.h drm_drv.h drm_fops.h drm_init.h drm_ioctl.h drm_linux.h drm_lists.h drm_lock.h drm_memory.h drm_os_freebsd.h drm_scatter.h ... Message-ID: <20020428191915.GC315@lenny.anarcat.dyndns.org> Mail-Followup-To: Eric Anholt , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200204272048.g3RKm3f54567@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bjuZg6miEcdLYP6q" Content-Disposition: inline In-Reply-To: <200204272048.g3RKm3f54567@freefall.freebsd.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --bjuZg6miEcdLYP6q Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Woohooo! Does this mean we won't need the port soon? A. On Sat Apr 27, 2002 at 01:48:03PM -0700, Eric Anholt wrote: > anholt 2002/04/27 13:48:02 PDT >=20 > Added files: > sys/dev/drm drm.h drmP.h drm_agpsupport.h drm_auth.h=20 > drm_bufs.h drm_context.h drm_dma.h=20 > drm_drawable.h drm_drv.h drm_fops.h=20 > drm_init.h drm_ioctl.h drm_linux.h=20 > drm_lists.h drm_lock.h drm_memory.h=20 > drm_os_freebsd.h drm_scatter.h=20 > drm_sysctl.h drm_vm.h gamma.h gamma_dma.c=20 > gamma_drv.c gamma_drv.h i810_drm.h mga.h=20 > mga_dma.c mga_drm.h mga_drv.c mga_drv.h=20 > mga_state.c mga_ucode.h mga_warp.c r128.h=20 > r128_cce.c r128_drm.h r128_drv.c=20 > r128_drv.h r128_state.c radeon.h=20 > radeon_cp.c radeon_drm.h radeon_drv.c=20 > radeon_drv.h radeon_state.c sis_drm.h=20 > tdfx.h tdfx_drv.c=20 > Log: > Add the code for the DRM, based on the code from the drm-kmod port. > This is not hooked up yet, that will come later. > =20 > Approved by: des > =20 > Revision Changes Path > 1.1 +497 -0 src/sys/dev/drm/drm.h (new) > 1.1 +723 -0 src/sys/dev/drm/drmP.h (new) > 1.1 +330 -0 src/sys/dev/drm/drm_agpsupport.h (new) > 1.1 +177 -0 src/sys/dev/drm/drm_auth.h (new) > 1.1 +1284 -0 src/sys/dev/drm/drm_bufs.h (new) > 1.1 +780 -0 src/sys/dev/drm/drm_context.h (new) > 1.1 +679 -0 src/sys/dev/drm/drm_dma.h (new) > 1.1 +52 -0 src/sys/dev/drm/drm_drawable.h (new) > 1.1 +1455 -0 src/sys/dev/drm/drm_drv.h (new) > 1.1 +364 -0 src/sys/dev/drm/drm_fops.h (new) > 1.1 +120 -0 src/sys/dev/drm/drm_init.h (new) > 1.1 +323 -0 src/sys/dev/drm/drm_ioctl.h (new) > 1.1 +147 -0 src/sys/dev/drm/drm_linux.h (new) > 1.1 +304 -0 src/sys/dev/drm/drm_lists.h (new) > 1.1 +314 -0 src/sys/dev/drm/drm_lock.h (new) > 1.1 +595 -0 src/sys/dev/drm/drm_memory.h (new) > 1.1 +382 -0 src/sys/dev/drm/drm_os_freebsd.h (new) > 1.1 +239 -0 src/sys/dev/drm/drm_scatter.h (new) > 1.1 +525 -0 src/sys/dev/drm/drm_sysctl.h (new) > 1.1 +85 -0 src/sys/dev/drm/drm_vm.h (new) > 1.1 +95 -0 src/sys/dev/drm/gamma.h (new) > 1.1 +647 -0 src/sys/dev/drm/gamma_dma.c (new) > 1.1 +125 -0 src/sys/dev/drm/gamma_drv.c (new) > 1.1 +105 -0 src/sys/dev/drm/gamma_drv.h (new) > 1.1 +203 -0 src/sys/dev/drm/i810_drm.h (new) > 1.1 +69 -0 src/sys/dev/drm/mga.h (new) > 1.1 +851 -0 src/sys/dev/drm/mga_dma.c (new) > 1.1 +312 -0 src/sys/dev/drm/mga_drm.h (new) > 1.1 +137 -0 src/sys/dev/drm/mga_drv.c (new) > 1.1 +640 -0 src/sys/dev/drm/mga_drv.h (new) > 1.1 +1068 -0 src/sys/dev/drm/mga_state.c (new) > 1.1 +11647 -0 src/sys/dev/drm/mga_ucode.h (new) > 1.1 +212 -0 src/sys/dev/drm/mga_warp.c (new) > 1.1 +83 -0 src/sys/dev/drm/r128.h (new) > 1.1 +1056 -0 src/sys/dev/drm/r128_cce.c (new) > 1.1 +289 -0 src/sys/dev/drm/r128_drm.h (new) > 1.1 +167 -0 src/sys/dev/drm/r128_drv.c (new) > 1.1 +548 -0 src/sys/dev/drm/r128_drv.h (new) > 1.1 +1576 -0 src/sys/dev/drm/r128_state.c (new) > 1.1 +83 -0 src/sys/dev/drm/radeon.h (new) > 1.1 +1458 -0 src/sys/dev/drm/radeon_cp.c (new) > 1.1 +335 -0 src/sys/dev/drm/radeon_drm.h (new) > 1.1 +165 -0 src/sys/dev/drm/radeon_drv.c (new) > 1.1 +741 -0 src/sys/dev/drm/radeon_drv.h (new) > 1.1 +1467 -0 src/sys/dev/drm/radeon_state.c (new) > 1.1 +33 -0 src/sys/dev/drm/sis_drm.h (new) > 1.1 +44 -0 src/sys/dev/drm/tdfx.h (new) > 1.1 +152 -0 src/sys/dev/drm/tdfx_drv.c (new) >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message --=20 Imagination is more important than knowledge - Albert Einstein --bjuZg6miEcdLYP6q Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjzMSzMACgkQttcWHAnWiGcikgCePW87aeNuC3GXrMeO1m41yE9T rXoAn2u2htE4k8zc4xAClqLkxND+xzTf =CoP5 -----END PGP SIGNATURE----- --bjuZg6miEcdLYP6q-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message