]> Devoid-pointer.net GitWeb - omnibook.git/commitdiff
* omnibook.h: Fix #if define to correctly compile backlight
authorMathieu Bérard <mathieu.berard@crans.org>
Fri, 11 Aug 2006 14:45:07 +0000 (14:45 +0000)
committerMathieu Bérard <mathieu.berard@crans.org>
Fri, 11 Aug 2006 14:45:07 +0000 (14:45 +0000)
  device support if it's enabled in kernel (or as a module)
* Makefile: Include explicit depmod in load target and clean
  Modules.symvers as well as Module.symvers (seems to be kernel
  version dependent)

Makefile
doc/ChangeLog
omnibook.h

index 480affc18549eeb4ba2e4fe589e41c3d7cba5541..b465dfec5c772b55a3753f3117168d27875e829c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -63,7 +63,7 @@ clean:
                make -C $(KSRC) M=$(PWD) clean
                $(RM) *~ "#*#" .swp
                $(RM) -r debian/omnibook-source *-stamp
-               $(RM) -r Module.symvers
+               $(RM) -r Module.symvers Modules.symvers
                (cd misc/obtest; $(RM) obtest *.o)
 
 
@@ -77,6 +77,7 @@ unload:
                $(RMMOD) $(MODULE_NAME) || :
 
 load:          install unload
+               $(DEPMOD)
                $(INSMOD) $(MODULE_NAME)
 
 uninstall:     unload
index 64cf65c7248d518220023d797e843d61457eaff4..d4ac393aae2923ba05baead813322a7ef3a5002b 100644 (file)
@@ -8,7 +8,9 @@ Changelog file for omnibook package:
   the support is pretty minimalistic (LCD brigtness only) this
   also inaugurate ectype 14
 * Cleanup/Fix in Makefile
+  Include explicit depmod in the 'load' target
 * Improvements in the Debian packages by Julien Valroff
+* Fix backlight support conditional compilation
 
 2.20060809 Mathieu Bérard <math_b@users.sourceforge.net>
 * Add dmi info for Toshiba Satellite M40X (Thanks Julien Valroff) 
index 4a307b55c5635da7182470274c311b6c6380e12f..5b60b823caddc69c326e618561a7159c1dd07824 100644 (file)
@@ -106,7 +106,7 @@ extern int set_omnibook_param(const char *val, struct kernel_param *kp);
  */
 
 #ifdef  OMNIBOOK_STANDALONE
-#if     defined(CONFIG_BACKLIGHT_DEVICE) && defined(BACKLIGHT_CLASS_DEVICE) && (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,16))
+#if     (defined (CONFIG_BACKLIGHT_CLASS_DEVICE_MODULE) || defined(CONFIG_BACKLIGHT_CLASS_DEVICE)) && (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,16))
 #define CONFIG_OMNIBOOK_BACKLIGHT
 #else
 #undef  CONFIG_OMNIBOOK_BACKLIGHT