1. 23 3月, 2011 3 次提交
  2. 17 3月, 2011 9 次提交
  3. 14 3月, 2011 1 次提交
  4. 10 3月, 2011 1 次提交
  5. 09 3月, 2011 2 次提交
  6. 04 3月, 2011 1 次提交
  7. 23 2月, 2011 1 次提交
  8. 21 2月, 2011 1 次提交
  9. 10 2月, 2011 1 次提交
  10. 09 2月, 2011 1 次提交
  11. 04 2月, 2011 1 次提交
  12. 27 1月, 2011 1 次提交
  13. 22 1月, 2011 1 次提交
    • T
      unifdef: update to upstream version 2.5 · 3cbea436
      Tony Finch 提交于
      Fix a long-standing cpp compatibility bug. The -DFOO argument
      (without an explicit value) should define FOO to 1 not to the empty
      string.
      
      Add a -o option to support overwriting a file in place, and a -S
      option to list the nesting depth of symbols. Include line numbers
      in debugging output. Support CRLF newlines.
      Signed-off-by: NTony Finch <dot@dotat.at>
      Signed-off-by: NMichal Marek <mmarek@suse.cz>
      3cbea436
  14. 15 1月, 2011 3 次提交
  15. 14 1月, 2011 8 次提交
  16. 08 1月, 2011 1 次提交
  17. 07 1月, 2011 4 次提交
    • M
      deb-pkg: Make deb-pkg generate a seperate linux-libc-dev deb · e6807785
      maximilian attems 提交于
      userland dev likes latest incarnation of that userland API.
      make it easy to also build it on make deb-pkg invocation:
      
      dpkg-deb: building package `linux-libc-dev' in `../linux-libc-dev_2.6.32-rc6-4_amd64.deb'.
      
      Last year patch rebased on top of latest deb-pkg changes.
      Signed-off-by: Nmaximilian attems <max@stro.at>
      Signed-off-by: NMichal Marek <mmarek@suse.cz>
      e6807785
    • P
      nconf: handle comment entries within choice/endchoice · 39177ec3
      Peter Korsgaard 提交于
      Equivalent to af6c1598 (kconfig: handle comment entries within
      choice/endchoice), but for nconfig instead.
      
      Implement support for comment entries within choice groups. Comment entries
      are displayed visually distinct from normal configs, and selecting them is
      a no-op.
      Signed-off-by: NPeter Korsgaard <jacmet@sunsite.dk>
      Signed-off-by: NMichal Marek <mmarek@suse.cz>
      39177ec3
    • R
      mkuboot.sh: Fail if mkimage is missing · bc91c9f3
      Roland Stigge 提交于
      on building an uImage, I get:
      
      $ make uImage
        CHK     include/linux/version.h
        CHK     include/generated/utsrelease.h
      make[1]: `include/generated/mach-types.h' is up to date.
        CALL    scripts/checksyscalls.sh
        CHK     include/generated/compile.h
        Kernel: arch/arm/boot/Image is ready
        SHIPPED arch/arm/boot/compressed/lib1funcs.S
        AS      arch/arm/boot/compressed/lib1funcs.o
        LD      arch/arm/boot/compressed/vmlinux
        OBJCOPY arch/arm/boot/zImage
        Kernel: arch/arm/boot/zImage is ready
        UIMAGE  arch/arm/boot/uImage
      "mkimage" command not found - U-Boot images will not be built
        Image arch/arm/boot/uImage is ready
      $
      
      I.e. it says: "uImage is ready" even though the uImage file doesn't
      exist because mkimage is missing.
      
      I propose the attached patch.
      Signed-off-by: NRoland Stigge <stigge@antcom.de>
      Signed-off-by: NMichal Marek <mmarek@suse.cz>
      bc91c9f3
    • R
      kernel-doc: code reorganization · 8484baaa
      Randy Dunlap 提交于
      Move 'main' code vs. subroutines around so that they are not so
      intermixed, for better readability/understanding (relative to Perl).
      It was messy to follow the primary flow of code execution with the
      code being mixed.  Now the code begins with data initialization,
      followed by all subroutines, then ends with the main code execution.
      
      This is almost totally source code movement, with a few changes as
      needed for forward declarations.
      Signed-off-by: NRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      8484baaa