1. 05 9月, 2005 3 次提交
  2. 30 8月, 2005 1 次提交
  3. 20 8月, 2005 1 次提交
  4. 11 8月, 2005 1 次提交
  5. 29 7月, 2005 2 次提交
    • J
      [PATCH] fix gconfig crash · bafd2df5
      Joachim Nilsson 提交于
      I ran glade-2 on the glade file, fixed two missing stock icons and
      cleaned up the C code that inserts the single/split/full modes. The
      rest of the patch is minor cleanups only. I refrained from using all
      the included xpm icons in images.c (like qconf.cc does) in favour of
      using the stock Gtk+ icons instead. Oh, yes there was a "back" bug
      in split mode that I also removed, oh well...
      
      It has been tested with success by several people, including
      Jesper Juhl, Randy Dunlap and myself.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      bafd2df5
    • B
      [PATCH] kconfig: trivial cleanup · fb7f6ff6
      blaisorblade@yahoo.it 提交于
      Replace all menu_add_prop mimicking menu_add_prompt with the latter func. I've
      had to add a return value to menu_add_prompt for one usage.
      
      I've rebuilt scripts/kconfig/zconf.tab.c_shipped by hand to reflect changes
      in the source (I've not the same Bison version so regenerating it wouldn't
      have been not a good idea), and compared it with what Roman itself did some
      time ago, and it's the same.
      
      So I guess this can be finally merged.
      Signed-off-by: NPaolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      fb7f6ff6
  6. 28 7月, 2005 3 次提交
    • J
      [PATCH] kbuild: signed char fixes for scripts · 61d9cdf2
      J.A. Magallon 提交于
      This time I did not break anything... and they shut up gcc4 ;)
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      61d9cdf2
    • K
      [PATCH] kbuild: signed/unsigned char fix for make menuconfig · 84c2a2eb
      Keenan Pepper 提交于
      Quiet some silly warnings.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      84c2a2eb
    • S
      kbuild: fix building external modules · db8c1a7b
      Sam Ravnborg 提交于
      kbuild failed to locate Makefile for external modules.
      This brought to my attention how the variables for directories
      have different values in different usage scenarios.
      
      Different kbuild usage scenarios:
      make       - plain make in same directory where kernel source lives
      make O=    - kbuild is told to store output files in another directory
      make M=    - building an external module
      make O= M= - building an external module with kernel output seperate from src
      
      Value assigned to the different variables:
      
                 |$(src)          |$(obj) |$(srctree)        |$(objtree)
      make       |reldir to k src |as src |abs path to k src |abs path to k src
      make O=    |reldir to k src |as src |abs path to k src |abs path to output dir
      make M=    |abs path to src |as src |abs path to k src |abs path to k src
      make O= M= |abs path to src |as src |abs path to k src |abs path to k output
      
      path to kbuild file:
      
      make       | $(srctree)/$(src), $(src)
      make O=    | $(srctree)/$(src)
      make M=    | $(src)
      make O= M= | $(src)
      
      From the table above it can be seen that the only good way to find the
      home directory of the kbuild file is to locate the one of the two variants
      that is an absolute path. If $(src) is an absolute path (starts with /)
      then use it, otherwise prefix $(src) with $(srctree).
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      db8c1a7b
  7. 26 7月, 2005 3 次提交
  8. 25 7月, 2005 1 次提交
  9. 22 7月, 2005 1 次提交
  10. 15 7月, 2005 7 次提交
  11. 14 7月, 2005 7 次提交
  12. 13 7月, 2005 1 次提交
  13. 07 7月, 2005 1 次提交
  14. 28 6月, 2005 1 次提交
  15. 26 6月, 2005 2 次提交
  16. 24 6月, 2005 2 次提交
  17. 06 5月, 2005 3 次提交
    • R
      [PATCH] patch-kernel: support non-incremental 2.6.x.y 'stable' patches · 1922163c
      Randy.Dunlap 提交于
      Add better support for (non-incremental) 2.6.x.y patches; If an ending
      version number if not specified, the script automatically increments the
      SUBLEVEL (x in 2.6.x.y) until no more patch files are found; however,
      EXTRAVERSION (y in 2.6.x.y) is never automatically incremented but must be
      specified fully.
      
      patch-kernel does not normally support reverse patching, but does so when
      applying EXTRAVERSION (x.y) patches, so that moving from 2.6.11.y to
      2.6.11.z is easy and handled by the script (reverse 2.6.11.y and apply
      2.6.11.z).
      Signed-off-by: NRandy Dunlap <rddunlap@osdl.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      1922163c
    • D
      [PATCH] ppc32: platform-specific functions missing from kallsyms. · 075d6eb1
      David Woodhouse 提交于
      The PPC32 kernel puts platform-specific functions into separate sections so
      that unneeded parts of it can be freed when we've booted and actually
      worked out what we're running on today.
      
      This makes kallsyms ignore those functions, because they're not between
      _[se]text or _[se]inittext.  Rather than teaching kallsyms about the
      various pmac/chrp/etc sections, this patch adds '_[se]extratext' markers
      for kallsyms.
      Signed-off-by: NDavid Woodhouse <dwmw2@infradead.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      075d6eb1
    • A
      [PATCH] Kconfig i18n support · 3b9fa093
      Arnaldo Carvalho de Melo 提交于
      This patch adds i18n support for make *config, allowing users to have the
      config process in their own language.
      
      No printk was harmed in the process, don't worry, so all the bug reports,
      kernel messages, etc, remain in english, just the user tools to configure
      the kernel are internationalized.
      
      Users not interested in translations can just unset the related LANG,
      LC_ALL, etc env variables and have the config process in plain english,
      something like:
      
      LANG= make menuconfig
      
      is enough for having the whole config process in english. Or just don't
      install any translation file.
      
      Translations for brazilian portuguese are being done by a team of
      volunteers at:
      
      http://www.visionflex.inf.br/kernel_ptbr/pmwiki.php/Principal/Traducoes
      
      To start the translation process:
      
        make update-po-config
      
        This will generate the pot template named scripts/kconfig/linux.pot,
        copy it to, say, ~/es.po, to start the translation for spanish.
      
      To test your translation, as root issue this command:
      
        msgfmt -o /usr/share/locale/es/LC_MESSAGES/linux.mo ~/es.po
      
        Replace "es" with your language code.
      
        Then execute, for instance:
      
        make menuconfig
      
      The current patch doesn't use any optimization to reduce the size of the
      generated .mo file, it is possible to use the config option as a key, but
      this doesn't prevent the current patch from being used or the translations
      done under the current scheme to be in any way lost if we chose to do any
      kind of keying.
      
      Thanks to Fabricio Vaccari for starting the pt_BR (brazilian portuguese)
      translation effort, Thiago Maciera for helping me with the gconf.cc (QT
      frontent) i18n coding and to all the volunteers that are already working on
      the first translation, to pt_BR.
      
      I left the question on whether to ship the translations with the stock kernel
      sources to be discussed here, please share your suggestions.
      Signed-off-by: NArnaldo Carvalho de Melo <acme@conectiva.com.br>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: Linus Torvalds <torvalds@osdl.org
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      3b9fa093