1. 25 9月, 2006 8 次提交
  2. 20 9月, 2006 1 次提交
  3. 19 9月, 2006 1 次提交
  4. 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
  5. 13 9月, 2006 1 次提交
  6. 04 9月, 2006 1 次提交
  7. 28 8月, 2006 1 次提交
  8. 17 8月, 2006 1 次提交
  9. 08 8月, 2006 1 次提交
  10. 07 8月, 2006 1 次提交
  11. 01 8月, 2006 2 次提交
  12. 30 7月, 2006 1 次提交
  13. 16 7月, 2006 1 次提交
  14. 06 7月, 2006 2 次提交
  15. 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
  16. 03 7月, 2006 1 次提交
  17. 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
  18. 25 6月, 2006 5 次提交
    • 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
    • R
      kbuild: fix silentoldconfig recursion · 3041e47e
      Roman Zippel 提交于
      kconfig-fix-config-dependencies causes this:
      
      make CC=cc  KBUILD_VERBOSE=1 -C /usr/src/25 SUBDIRS=/home/akpm/NVIDIA-Linux-x86_64-1.0-8762-pkg2/usr/src/nv modules
      make -f /usr/src/devel/Makefile silentoldconfig
      make -f /usr/src/devel/Makefile silentoldconfig
      make -f /usr/src/devel/Makefile silentoldconfig
      
      The basic problem is if we compile external modules, config-targets isn't
      set which can cause recursive calls to silentoldconfig to update the
      kernel configuration.
      
      Bail out and ask the user to update manually.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      3041e47e
    • T
      kbuild: add option for stripping modules while installing them · ac031f26
      Theodore Ts'o 提交于
      Add option for stripping modules while installing them.
      
      This function adds support for stripping modules while they are being
      installed.  CONFIG_DEBUG_KERNEL (which will probably become more
      popular as developers use kdump) causes the size of the installed
      modules to grow by a factor of 9 or so.
      
      Some kernel package systems solve this problem by stripping the debug
      information from /lib/modules after running "make modules_install",
      but that may not work for people who are installing directly into
      /lib/modules --- root partitions that were sized to handle 16 megs
      worth of modules may not be quite so happy with 145 megs of modules,
      so the "make modules_install" never succeeds.
      
      This patch allows such users to request modules_install to strip the
      modules as they are installed.
      Signed-off-by: N"Theodore Ts'o" <tytso@mit.edu>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      ac031f26
  19. 18 6月, 2006 3 次提交
    • D
      Basic implementation of 'make headers_check' · 68475359
      David Woodhouse 提交于
      Based on the 'headers_install' target, this performs a basic sanity check
      on the exported headers -- so far only checking that they do not include
      any other headers which aren't selected for import, but easily extendable.
      Signed-off-by: NDavid Woodhouse <dwmw2@infradead.org>
      68475359
    • D
      Basic implementation of 'make headers_install' · 8d730cfb
      David Woodhouse 提交于
      This adds a make target which exports a subset of headers which contain
      definitions which are useful for system libraries and tools. It uses the
      BSD 'unifdef' tool to remove instances of #ifdef __KERNEL__, and uses
      sed to remove markers like __user.
      
      Based on an original implementation by Arnd Bergmann <arnd@arndb.de>
      Hacked about by David Woodhouse <dwmw2@infradead.org>
      Reviewed and cleaned up by Sam Ravnborg <sam@ravnborg.org>
      Signed-off-by: NDavid Woodhouse <dwmw2@infradead.org>
      8d730cfb
    • L
      Linux v2.6.17 · 427abfa2
      Linus Torvalds 提交于
      Being named "Crazed Snow-Weasel" instills a lot of confidence in this
      release, so I'm sure this will be one of the better ones.
      427abfa2
  20. 10 6月, 2006 1 次提交
    • S
      kbuild: ignore make's built-in rules & variables · 566f81ca
      Sam Ravnborg 提交于
      kbuild does explicitly specify what to do in all cases, and each
      time make's built-in rules & variables has been used it has been a bug.
      So to speed up things and to avoid the hard-to-debug error situations
      ignore the built-in definitions.
      If any part of the kernel uses the built-in definitions the build will
      just stop there and it should be trivial to fix.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      566f81ca
  21. 09 6月, 2006 4 次提交