1. 17 4月, 2015 1 次提交
  2. 18 2月, 2015 1 次提交
  3. 13 2月, 2015 1 次提交
  4. 27 11月, 2014 1 次提交
  5. 26 11月, 2014 1 次提交
  6. 27 10月, 2014 1 次提交
  7. 31 7月, 2014 1 次提交
    • A
      kbuild: Support split debug info v4 · 866ced95
      Andi Kleen 提交于
      This is an alternative approach to lower the overhead of debug info
      (as we discussed a few days ago)
      
      gcc 4.7+ and newer binutils have a new "split debug info" debug info
      model where the debug info is only written once into central ".dwo" files.
      
      This avoids having to copy it around multiple times, from the object
      files to the final executable. It lowers the disk space
      requirements. In addition it defaults to compressed debug data.
      
      More details here: http://gcc.gnu.org/wiki/DebugFission
      
      This patch adds a new option to enable it. It has to be an option,
      because it'll undoubtedly break everyone's debuginfo packaging scheme.
      gdb/objdump/etc. all still work, if you have new enough versions.
      
      I don't see big compile wins (maybe a second or two faster or so), but the
      object dirs with debuginfo get significantly smaller. My standard kernel
      config (slightly bigger than defconfig) shrinks from 2.9G disk space
      to 1.1G objdir (with non reduced debuginfo). I presume if you are IO limited
      the compile time difference will be larger.
      
      Only problem I've seen so far is that it doesn't play well with older
      versions of ccache (apparently fixed, see
      https://bugzilla.samba.org/show_bug.cgi?id=10005)
      
      v2: various fixes from Dirk Gouders. Improve commit message slightly.
      v3: Fix clean rules and improve Kconfig slightly
      v4: Fix merge error in last version (Sam Ravnborg)
          Clarify description that it mainly helps disk size.
      Cc: Dirk Gouders <dirk@gouders.net>
      Signed-off-by: NAndi Kleen <ak@linux.intel.com>
      Acked-by: NSam Ravnborg <sam@ravnborg.org>
      Signed-off-by: NMichal Marek <mmarek@suse.cz>
      866ced95
  8. 17 4月, 2014 1 次提交
  9. 11 2月, 2014 1 次提交
  10. 01 8月, 2013 1 次提交
  11. 18 12月, 2012 1 次提交
  12. 20 10月, 2012 1 次提交
  13. 10 10月, 2012 1 次提交
  14. 01 7月, 2011 1 次提交
  15. 29 4月, 2011 1 次提交
    • S
      kbuild: asm-generic support · d8ecc5cd
      Sam Ravnborg 提交于
      There is an increasing amount of header files
      shared between individual architectures in asm-generic.
      To avoid a lot of dummy wrapper files that just
      include the corresponding file in asm-generic provide
      some basic support in kbuild for this.
      
      With the following patch an architecture can maintain
      a list of files in the file arch/$(ARCH)/include/asm/Kbuild
      
      To use a generic file just add:
      
              generic-y += <name-of-header-file.h>
      
      For each file listed kbuild will generate the necessary
      wrapper in arch/$(ARCH)/include/generated/asm.
      
      When installing userspace headers a wrapper is likewise created.
      
      The original inspiration for this came from the unicore32
      patchset - although a different method is used.
      
      The patch includes several improvements from Arnd Bergmann.
      Michael Marek contributed Makefile.asm-generic.
      
      Remis Baima did an intial implementation along to achive
      the same - see https://patchwork.kernel.org/patch/13352/Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      Acked-by: NGuan Xuetao <guanxuetao@mprc.pku.edu.cn>
      Tested-by: NGuan Xuetao <guanxuetao@mprc.pku.edu.cn>
      Acked-by: NArnd Bergmann <arnd@arndb.de>
      Cc: Remis Lima Baima <remis.developer@googlemail.com>
      Signed-off-by: NMichal Marek <mmarek@suse.cz>
      d8ecc5cd
  16. 23 2月, 2011 1 次提交
  17. 23 3月, 2010 1 次提交
  18. 13 3月, 2010 1 次提交
  19. 07 3月, 2010 1 次提交
  20. 12 1月, 2010 1 次提交
  21. 12 12月, 2009 7 次提交
  22. 01 12月, 2009 1 次提交
  23. 27 6月, 2009 1 次提交
  24. 15 6月, 2009 2 次提交
  25. 13 6月, 2009 1 次提交
  26. 10 6月, 2009 1 次提交
  27. 19 4月, 2009 1 次提交
    • S
      kbuild: support include/generated · f14875a3
      Sam Ravnborg 提交于
      We need a location for generated files.
      Today they are spread over several places and bringing them
      together to a common place makes it obvious hat is generated
      and what isreal files.
      
      Al Viro originally suggested: include/gen
      Linus suggested to spell it out.
      
      This patch implement support for
      
          include/generated
      
      All files in include/generated are ignored by git.
      include/generated is removed during "make mrproper".
      
      With this we are ready to implement support for include/generated
      in the various architctures and in the base kernel.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      Cc: Al Viro <viro@ZenIV.linux.org.uk>
      Cc: Linus Torvalds <torvalds@linux-foundation.org>
      f14875a3
  28. 30 6月, 2008 1 次提交
  29. 18 6月, 2008 1 次提交
  30. 26 5月, 2008 1 次提交
  31. 11 5月, 2008 1 次提交
    • S
      Remove *.rej pattern from .gitignore · 1f5d3a6b
      S.Çağlar Onur 提交于
      With commit 3f1b0e1f ".gitignore update"
      Linus's current git tree starts to ignore any "*.rej" files.
      So "git status" no longer shows these files, but the ones who works with
      quilt patchsets, this not makes life easier as expected.
      Because sometimes a work flow (at least for me) requires
      "quilt push -f" followed by "git status" to see unresolved merge
      conflicts, work on these conflicts to correct them and finalize
      the patch with "quilt refresh".
      
      And if there are some "*.rej" files exists in tree, for whatever
      reason, this means something goes really wrong there and i think
      this situation not deserves to be ignored.
      Signed-off-by: NS.Çağlar Onur <caglar@pardus.org.tr>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      1f5d3a6b
  32. 01 5月, 2008 1 次提交
  33. 26 4月, 2008 1 次提交