An error occurred fetching the project authors.
  1. 11 Oct, 2005 1 commit
  2. 30 Sep, 2005 1 commit
  3. 20 Sep, 2005 1 commit
  4. 13 Sep, 2005 1 commit
  5. 11 Sep, 2005 2 commits
    • Sam Ravnborg's avatar
      kbuild: fix silentoldconfig with make O= · 5011cdd0
      Sam Ravnborg authored
      Al Viro reported that sometimes silentoldconfig failed because
      output directory was missing.
      So create it unconditionally before executing conf
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      5011cdd0
    • Sam Ravnborg's avatar
      kbuild: rename prepare to archprepare to fix dependency chain · 5bb78269
      Sam Ravnborg authored
      When introducing the generic asm-offsets.h support the dependency
      chain for the prepare targets was changed. All build scripts expecting
      include/asm/asm-offsets.h to be made when using the prepare target would broke.
      With the limited number of prepare targets left in arch Makefiles
      the trivial solution was to introduce a new arch specific target: archprepare
      
      The dependency chain looks like this now:
      
      prepare
        |
        +--> prepare0
               |
               +--> archprepare
                      |
      		+--> scripts_basic
                      +--> prepare1
                             |
                             +---> prepare2
                                     |
                                     +--> prepare3
      
      So prepare 3 is processed before prepare2 etc.
      This guaantees that the asm symlink, version.h, scripts_basic
      are all updated before archprepare is processed.
      
      prepare0 which build the asm-offsets.h file will need the
      actions performed by archprepare.
      
      The head target is now named prepare, because users scripts will most
      likely use that target, but prepare-all has been kept for compatibility.
      Updated Documentation/kbuild/makefiles.txt.
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      5bb78269
  6. 10 Sep, 2005 5 commits
  7. 09 Sep, 2005 1 commit
    • Sam Ravnborg's avatar
      kbuild: full dependency check on asm-offsets.h · 86feeaa8
      Sam Ravnborg authored
      Building asm-offsets.h has been moved to a seperate Kbuild file
      located in the top-level directory. This allow us to share the
      functionality across the architectures.
      
      The old rules in architecture specific Makefiles will die
      in subsequent patches.
      
      Furhtermore the usual kbuild dependency tracking is now used
      when deciding to rebuild asm-offsets.s. So we no longer risk
      to fail a rebuild caused by asm-offsets.c dependencies being touched.
      
      With this common rule-set we now force the same name across
      all architectures. Following patches will fix the rest.
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      86feeaa8
  8. 05 Sep, 2005 1 commit
  9. 29 Aug, 2005 1 commit
  10. 28 Aug, 2005 1 commit
  11. 24 Aug, 2005 1 commit
  12. 10 Aug, 2005 1 commit
  13. 07 Aug, 2005 1 commit
    • Linus Torvalds's avatar
      Linux 2.6.13-rc6 · 6fc32179
      Linus Torvalds authored
      Last (?) -rc, partly brought on by the aic7xxx performance fixes (ie get
      them tested in an -rc release before the real 2.6.13).
      6fc32179
  14. 02 Aug, 2005 1 commit
  15. 28 Jul, 2005 2 commits
  16. 27 Jul, 2005 3 commits
  17. 25 Jul, 2005 4 commits
  18. 21 Jul, 2005 1 commit
  19. 17 Jul, 2005 1 commit
  20. 14 Jul, 2005 3 commits
    • Sam Ravnborg's avatar
      kbuild: fix make O=... build · 946dc121
      Sam Ravnborg authored
      It fixes the following error:
      
      make[1]: *** No rule to make target `include/asm', needed by `arch/alpha/kernel/asm-offsets.s'.  Stop.
      
      Reported by:
      From: Jan Dittmer <j.dittmer@portrix.net>
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      946dc121
    • Sam Ravnborg's avatar
      kbuild: Don't fail if include/asm symlink exists · d80e2246
      Sam Ravnborg authored
      From: Andreas Gruenbacher <agruen@suse.de>
      
      We're having the following situation: There are user-space applications
      that include kernel headers directly. With a completely unconfigured
      /usr/src/linux tree, including most headers fails because essential
      files are not there:
      
      	include/asm
      	include/linux/autoconf.h
      	include/linux/version.h
      
      So we create these files. On the other hand, we want to use
      /usr/src/linux as read-only source for building kernels or additional
      modules. Now when building a kernel with a separate output directory
      (O=), there is a check in the main makefile for the include/asm symlink.
      There is no real need for this check: if we ensure that
      $(objdir)/include/asm is always created as the patch does,
      $(srctree)/include/asm becomes irrelevant.
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      d80e2246
    • Sam Ravnborg's avatar
      kbuild: Add target debug_kallsyms · 33bc25ea
      Sam Ravnborg authored
      From: Keith Owens <kaos@ocs.com.au>
      
      Make it easier to generate maps for debugging kallsyms problems.
      debug_kallsyms is only a debugging target so no help or silent mode.
      Signed-off-by: default avatarKeith Owens <kaos@ocs.com.au>
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      33bc25ea
  21. 13 Jul, 2005 3 commits
    • Ian Campbell's avatar
      [PATCH] kbuild: allow cscope to index multiple architectures · a0674e88
      Ian Campbell authored
      I have a single source tree which I cross compile for a couple of
      different architectures using ARHC=foo O=blah etc.
      
      The existing cscope target is very handy but only indexes the current
      $(ARCH), which is a pain since inevitably I'm interested in the other
      one at any given time ;-). This patch allows me to pass a list of
      architectures for cscope to index. e.g.
      	make ALLSOURCE_ARCHS="i386 arm" cscope
      
      This change also works for etags etc, and I presume it is just as useful
      there.
      Signed-off-by: default avatarIan Campbell <ijc@hellion.org.uk>
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      a0674e88
    • Karl Hegbloom's avatar
      [PATCH] kbuild: make 'cscope -q' play well with cscope.el · acbef459
      Karl Hegbloom authored
      I tried the Linux Makefile 'make cscope' target, and found that the
      generated database is not compatible with 'cscope.el' under XEmacs.
      The thing is that 'cscope.el' does not allow setting the command line
      options to the 'cscope' commands it runs, and it errors with a message
      about the options not matching the ones used to generate the index.
      
      It turns out the cscope designers already thought of this.  The
      options can be written into the "cscope.files".  The included patch
      moves the "-q" and "-k" options from the 'cmd_cscope' to the
      'cmd_cscope-file', echoing them into the top of the files listing.
      
      Now the index is generated with the "-q" option, and when 'cscope.el'
      performs it's search, it uses that argument as well.  Lookups are fast
      and everyone is happy.
      Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
      acbef459
    • Linus Torvalds's avatar
      Linux 2.6.13-rc3 · c32511e2
      Linus Torvalds authored
      Yeah, this time hopefully I'm not confusing the version
      numbers. The last release was -rc2, _this_ is -rc3.
      c32511e2
  22. 08 Jul, 2005 2 commits
  23. 06 Jul, 2005 1 commit
  24. 29 Jun, 2005 1 commit
    • Linus Torvalds's avatar
      Linux v2.6.13-rc1 · 4c91aedb
      Linus Torvalds authored
      Ok, a lot of things were pending after the 2.6.12 release, let's try to
      start calming things down again.
      4c91aedb