1. 12 10月, 2006 1 次提交
  2. 05 10月, 2006 1 次提交
  3. 04 10月, 2006 1 次提交
  4. 27 9月, 2006 1 次提交
  5. 25 9月, 2006 1 次提交
  6. 26 9月, 2006 1 次提交
  7. 25 9月, 2006 11 次提交
  8. 21 9月, 2006 1 次提交
  9. 20 9月, 2006 1 次提交
  10. 19 9月, 2006 1 次提交
  11. 17 9月, 2006 1 次提交
    • D
      [PATCH] headers_check: use a different default directory · 1ab7a1f3
      David Woodhouse 提交于
      `make headers_check' wants to go and write stuff in /lib/modules, which
      requires root, whic is unfortunate.
      
      In fact, there's no _particular_ reason for headers_install to put it there
      either -- it can go into a subdirectory of the build tree in both cases.
      It's not intended to go directly into /usr/include, which is why we didn't
      put it there -- and we certainly don't want people screwing around with
      symlinking to it.  It's for distributors to take away and do stuff with, so
      leaving it in $(objtree) is fine, even in the headers_install case.
      
      I picked $(objtree)/usr/include but I have no _particular_ preference
      for that; it just seemed reasonable.
      Signed-off-by: NDavid Woodhouse <dwmw2@infradead.org>
      Cc: Sam Ravnborg <sam@ravnborg.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      1ab7a1f3
  12. 13 9月, 2006 1 次提交
  13. 04 9月, 2006 1 次提交
  14. 28 8月, 2006 1 次提交
  15. 17 8月, 2006 1 次提交
  16. 08 8月, 2006 1 次提交
  17. 07 8月, 2006 1 次提交
  18. 01 8月, 2006 2 次提交
  19. 30 7月, 2006 1 次提交
  20. 16 7月, 2006 1 次提交
  21. 06 7月, 2006 2 次提交
  22. 04 7月, 2006 1 次提交
    • S
      kbuild: introduce utsrelease.h · 63104eec
      Sam Ravnborg 提交于
      include/linux/version.h contained both actual KERNEL version
      and UTS_RELEASE that contains a subset from git SHA1 for when
      kernel was compiled as part of a git repository.
      This had the unfortunate side-effect that all files including version.h
      would be recompiled when some git changes was made due to changes SHA1.
      Split it out so we keep independent parts in separate files.
      
      Also update checkversion.pl script to no longer check for UTS_RELEASE.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      63104eec
  23. 03 7月, 2006 1 次提交
  24. 01 7月, 2006 2 次提交
    • D
      kbuild: documentation change on allowing checkers besides sparse · 701842e3
      Dustin Kirkland 提交于
      Minor documentation change on allowing checkers besides sparse
      
      This patch cleans up a couple of mentions of sparse in the inline
      toplevel Makefile documentation such that it's clear that other checkers
      besides sparse can override CHECK and CHECKFLAGS.
      Signed-off-by: NDustin Kirkland <dustin.kirkland@us.ibm.com>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      701842e3
    • S
      kbuild: fix ia64 breakage after introducing make -rR · 5e8d780d
      Sam Ravnborg 提交于
      kbuild used $¤(*F to get filename of target without extension.
      This was used in several places all over kbuild, but introducing
      make -rR broke his for all cases where we specified full path to
      target/prerequsite. It is assumed that make -rR disables old style
      suffix-rules which is why is suddenly failed.
      
      ia64 was impacted by this change because several div* routines in
      arch/ia64/lib are build using explicit paths and then kbuild failed.
      
      Thanks to David Mosberger-Tang <David.Mosberger@acm.org> for an explanation
      what was the root-cause and for testing on ia64.
      
      This patch also fixes two uses of $(*F) in arch/um
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      5e8d780d
  25. 25 6月, 2006 3 次提交
    • S
      kbuild: trivial fixes in Makefile · 070b98bf
      Sam Ravnborg 提交于
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      070b98bf
    • M
      kbuild: adding symbols in Kconfig and defconfig to TAGS · e838db68
      Masatake YAMATO 提交于
      I'm using TAGS generated from "make TAGS" to read the kernel source code.
      
      When I met a ifdef block
      
      	  #ifdef CONFIG_FOO
      	  	 ...
      	  #endif
      
      in the soruce code I would like to know the meaning CONFIG_FOO
      to decide whether I should read inside the ifdef block
      or not. meaning CONFIG_FOO is well documented in Kconfig.
      So it is nice if I can jump to CONFIG_FOO entry in Kconfig
      from "#ifdef CONFIG_FOO" with the tag jump.
      
      Here is the patch to add symbols in Kconfig and defconfig to TAGS
      in "make TAGS" operation.
      Signed-off-by: NMasatake YAMATO <jet@gyve.org>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      e838db68
    • A
      kbuild: support for %.symtypes files · 15fde675
      Andreas Gruenbacher 提交于
      Here is a patch that adds a new -T option to genksyms for generating dumps of
      the type definition that makes up the symbol version hashes. This allows to
      trace modversion changes back to what caused them. The dump format is the
      name of the type defined, followed by its definition (which is almost C):
      
        s#list_head struct list_head { s#list_head * next , * prev ; }
      
      The s#, u#, e#, and t# prefixes stand for struct, union, enum, and typedef.
      The exported symbols do not define types, and thus do not have an x# prefix:
      
        nfs4_acl_get_whotype int nfs4_acl_get_whotype ( char * , t#u32 )
      
      The symbol type defintion of a single file can be generated with:
      
        make fs/jbd/journal.symtypes
      
      If KBUILD_SYMTYPES is defined, all the *.symtypes of all object files that
      export symbols are generated.
      
      The single *.symtypes files can be combined into a single file after a kernel
      build with a script like the following:
      
      for f in $(find -name '*.symtypes' | sort); do
          f=${f#./}
          echo "/* ${f%.symtypes}.o */"
          cat $f
          echo
      done \
      | sed -e '\:UNKNOWN:d' \
            -e 's:[,;] }:}:g' \
            -e 's:\([[({]\) :\1:g' \
            -e 's: \([])},;]\):\1:g' \
            -e 's: $::' \
            $f \
      | awk '
      /^.#/   { if (defined[$1] == $0) {
                  print $1
                  next
                }
                defined[$1] = $0
              }
              { print }
      '
      
      When the kernel ABI changes, diffing individual *.symtype files, or the
      combined files, against each other will show which symbol changes caused the
      ABI changes. This can save a tremendous amount of time.
      
      Dump the types that make up modversions
      Signed-off-by: NAndreas Gruenbacher <agruen@suse.de>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      15fde675