1. 02 Mar, 2003 3 commits
    • Sam Ravnborg's avatar
      [PATCH] kbuild: do not run split-include for all compilations · 1ef75673
      Sam Ravnborg authored
      When a rule in the top-level Makefile includes scripts as one
      of the prerequisites it inherits FORCE, and thus is always build.
      include/linux/autoconf.h recently included scripts hereby forcing
      split-include to be run for each compilation.
      
      Fix all rules that lists scripts as a prerequisite but did not list FORCE.
      Fixed by listing the executable needed direct.
      1ef75673
    • Kai Germaschewski's avatar
      do_mounts: Fix CONFIG_BLK_DEV_MD=m case · eae6fb05
      Kai Germaschewski authored
      We don't really have a nice way to say "compile this when CONFIG_FOO
      is y, don't otherwise".
      
      Alternatives are:
      
      obj-$(subst m,,$(CONFIG_FOO)) := foo.o
      
      or
      
      obj-$(CONFIG_FOO)	:= foo.o
      obj-m :=
      
      or
      
      obj-y			:= do_foo.o
      do_foo-$(CONFIG_FOO)	:= foo.o
      
      I chose the last one, though I'm not particularly happy with either.
      eae6fb05
    • Alan Stern's avatar
      [PATCH] Fix USB address setting · e61ed9f5
      Alan Stern authored
      You wouldn't expect that an innocent two-line patch would practically
      destroy the entire functionality of the USB subsystem.  But that's what my
      last patch did.  I didn't realize until I saw it in Greg's list of patches
      forwarded to Linus; that patch includes a mistakenly unreverted prior
      change.  This explains the problems I was having yesterday, and probably
      also the problems a great many people are having today.
      
      Anyway, here's the correction -- it puts things back to what they should
      have been in the first place.  Greg, please apply this and send it to
      Linus for his tree as soon as reasonably possible.
      e61ed9f5
  2. 01 Mar, 2003 16 commits
  3. 28 Feb, 2003 21 commits