From 9c793716591c141d7bb1796f5dc6473c45d9545c Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Thu, 5 Apr 2007 11:18:00 +1000 Subject: add an install target to the drm modules makefile --- linux-core/Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'linux-core/Makefile') diff --git a/linux-core/Makefile b/linux-core/Makefile index bca8210d..effc2061 100644 --- a/linux-core/Makefile +++ b/linux-core/Makefile @@ -237,6 +237,11 @@ dristat: dristat.c drmstat: drmstat.c $(CC) $(PRGCFLAGS) $< -o $@ $(DRMSTATLIBS) +install: + echo "Installing DRM modules to "$(O) + install *.ko $(O)/driver/char/drm + depmod -a + else # Check for kernel versions that we don't support. -- cgit v1.2.3 From b25558bb7377f6df6d457b50067a1d245f7911fd Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Sat, 7 Apr 2007 07:21:05 +1000 Subject: fixup install target, not sure what I was smokin... --- linux-core/Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'linux-core/Makefile') diff --git a/linux-core/Makefile b/linux-core/Makefile index effc2061..af29bd6a 100644 --- a/linux-core/Makefile +++ b/linux-core/Makefile @@ -238,9 +238,7 @@ drmstat: drmstat.c $(CC) $(PRGCFLAGS) $< -o $@ $(DRMSTATLIBS) install: - echo "Installing DRM modules to "$(O) - install *.ko $(O)/driver/char/drm - depmod -a + make -C $(LINUXDIR) $(GETCONFIG) SUBDIRS=`pwd` DRMSRCDIR=`pwd` modules_install else -- cgit v1.2.3 From ea98d7e79657469545b865a353784d79fc8cff9d Mon Sep 17 00:00:00 2001 From: Stephane Marchesin Date: Thu, 17 May 2007 17:35:14 +0200 Subject: nouveau: don't build the module by default --- linux-core/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'linux-core/Makefile') diff --git a/linux-core/Makefile b/linux-core/Makefile index af29bd6a..1758777c 100644 --- a/linux-core/Makefile +++ b/linux-core/Makefile @@ -283,6 +283,7 @@ CONFIG_DRM_SAVAGE := n CONFIG_DRM_VIA := n CONFIG_DRM_MACH64 := n CONFIG_DRM_NV := n +CONFIG_DRM_NOUVEAU := n # Enable module builds for the modules requested/supported. -- cgit v1.2.3