1. 31 Jan, 2005 9 commits
  2. 30 Jan, 2005 7 commits
  3. 29 Jan, 2005 3 commits
    • Sam Ravnborg's avatar
      kbuild arch/i386: make install no longer check vmlinux · 8dc44346
      Sam Ravnborg authored
      make install is often executed as root or on a different mechine via NFS
      To avoid updating vmlinux due to directory changes or similar the install target
      for i386 no longer has vmlinux as a prerequisite. 
      Now modules_install and install are aligned in this respect.
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      8dc44346
    • Sam Ravnborg's avatar
      kbuild: Introdude KBUILD_NOCMDDEP · c4df7a03
      Sam Ravnborg authored
      When tossing around with different gcc compilers there is no way to tell kbuild
      to ignore the new name of the compiler. The new option KBUILD_NOCMDDEP tell
      kbuild not to check the commandline for changes.
      This should be used with care because the resulting kernel may become inconsistent
      if one part is build with 2.96, and another part build with 3.3.4.
      So use only when you know what you are doing.
      
      Syntax:
      make KBUILD_NOCMDDEP=1
      
      Original request for this feature came from hpa.
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      c4df7a03
    • Sam Ravnborg's avatar
      kbuild: Makefile.lib - small cleanup · 28a4d0aa
      Sam Ravnborg authored
      Combine duplicate code in two smaller 'functions'
      
      Signed-off-by: Sam Ravnborg
      28a4d0aa
  4. 28 Jan, 2005 1 commit
  5. 27 Jan, 2005 2 commits
  6. 28 Jan, 2005 1 commit
  7. 27 Jan, 2005 16 commits
  8. 26 Jan, 2005 1 commit
    • Dmitry Torokhov's avatar
      Input: ACK/NAK processing rules in libps2 were too strict - while it is a · 98563d04
      Dmitry Torokhov authored
             good idea to discard any character other than ACK/NAK during probe
             it causes missing releases and keys getting "stuck" when a command
             issued on enabled device. The effect is easily demonstrated with
             the following command:
                 while true; do xset led 3; xset -led 3; done
      
             With this change extra characters will be discarded only if device
             has not been marked as "enabled" yet.
      
      Signed-off-by: Dmitry Torokhov <dtor@mail.ru> 
      98563d04