0003-km_install_modules.patch 665 B

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