xref: /OK3568_Linux_fs/buildroot/package/ti-gfx/0003-km_install_modules.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1Patch to add modules_install target to the modules makefile.  This makes
2installation a little easier.
3
4Signed-off-by: Spenser Gilliland <spenser@gillilanding.com>
5----
6Index: ti-gfx-4_09_00_01/GFX_Linux_KM/Makefile
7===================================================================
8--- ti-gfx-4_09_00_01.orig/GFX_Linux_KM/Makefile	2013-03-07 11:00:11.000000000 -0600
9+++ ti-gfx-4_09_00_01/GFX_Linux_KM/Makefile	2013-05-23 01:36:29.356676281 -0500
10@@ -479,6 +479,9 @@
11 all:
12 	$(MAKE) -C $(KERNELDIR) M=`pwd` $*
13
14+install:
15+	$(MAKE) -C $(KERNELDIR) M=`pwd` modules_install
16+
17 clean:
18 	@find . -name "*.o" -exec rm -r {} \;
19 	@find . -name "*.ko" -exec rm -r {} \;
20