An error occurred fetching the project authors.
  1. 17 Feb, 2004 1 commit
  2. 16 Feb, 2004 1 commit
  3. 14 Feb, 2004 1 commit
  4. 09 Feb, 2004 1 commit
  5. 06 Feb, 2004 1 commit
  6. 04 Feb, 2004 1 commit
  7. 03 Feb, 2004 1 commit
  8. 30 Jan, 2004 1 commit
  9. 26 Jan, 2004 1 commit
  10. 25 Jan, 2004 1 commit
  11. 23 Jan, 2004 1 commit
    • Dave Jones's avatar
      [PATCH] Update post-halloween doc url. · a08f4f75
      Dave Jones authored
      I did a s/2.5/2.6/ a while ago, as it made more sense when 2.6 appeared.
      The old URL will continue to work (symlink to the new file).  If I move
      this again, whack me.
      a08f4f75
  12. 20 Jan, 2004 1 commit
  13. 08 Jan, 2004 1 commit
  14. 07 Jan, 2004 1 commit
  15. 05 Jan, 2004 1 commit
  16. 30 Dec, 2003 2 commits
    • Linus Torvalds's avatar
      Linux 2.6.1-rc1 · f6fb237b
      Linus Torvalds authored
      f6fb237b
    • Andrew Morton's avatar
      [PATCH] fix non-ia32 `make rpm' · 1e9c0d3b
      Andrew Morton authored
      From: "Zhu, Yi" <yi.zhu@intel.com>
      
      The "make rpm" rule in top Makefile isn't aware of the enviorment ARCH.  For
      example, people issue "make ARCH=ia64" to compile the ia64 kernel on i386
      platform for cross compilation.  This works pretty well now.  But if one uses
      "make rpm ARCH=ia64", it will fail.  Because current rpm rule in Makefile and
      mkspec are not aware of ARCH.
      1e9c0d3b
  17. 29 Dec, 2003 1 commit
    • Andrew Morton's avatar
      [PATCH] Add `gcc -Os' config option · ffd0cf49
      Andrew Morton authored
      From: Adrian Bunk <bunk@fs.tum.de>
      
      Allow the kernel to be built with `-Os'.
      
      It requires CONFIG_EMBEDDED.  This is to make it "hard to get at" because
      one gcc version (3.2.x I think) from RH9 generates crashy kernels with this
      option set.
      ffd0cf49
  18. 17 Dec, 2003 1 commit
  19. 26 Nov, 2003 1 commit
  20. 23 Nov, 2003 1 commit
  21. 25 Oct, 2003 1 commit
  22. 17 Oct, 2003 1 commit
  23. 08 Oct, 2003 1 commit
  24. 02 Oct, 2003 1 commit
  25. 28 Sep, 2003 1 commit
  26. 27 Sep, 2003 1 commit
  27. 23 Sep, 2003 1 commit
    • Andrew Morton's avatar
      [PATCH] add -Wdeclaration-after-statement · 535231e8
      Andrew Morton authored
      From: John Levon <levon@movementarian.org>
      
      Not that many people are going to be using GCC 3.4 currently, but it
      might help a bit to prevent compilation bugs like that just witnessed
      in procfs.
      
      (And it consolidates the check_gcc implementation nicely)
      535231e8
  28. 20 Sep, 2003 1 commit
  29. 11 Sep, 2003 1 commit
    • Sam Ravnborg's avatar
      kbuild: Separate output directory · 5a808876
      Sam Ravnborg authored
      Separate output directory support enables the following (at least):
      o Building several configurations from the same SRC base, and in parrallel
      o Building from a RO media
      o More efficient build if files are retreived via NFS (files stored locally)
      
      Usage is simple:
      cd /path/to/kernel/src
      mkdir ~/build/kernel
      make O=~/build/kernel [Make options]
      Please note: The O= syntax must be used for ALL invocations of make.
      
      As an alternative you may set KBUILD_OUTPUT to the directory where
      to put the output files.
      
      The patch works for me, and I have tried with various configurations,
      including allnoconfig and defconfig.
      
      How it works:
      If the O= option is used, or KBUILD_OUTPUT is set then a second invocation
      of make happens in the output directory.
      The second invocation of make uses VPATH to tell make where to locate
      the files. Furthermore include options for gcc is modifyied to point
      both in the directory where the kernel src is located, and in the
      directory where the output files are located. The latter is used for
      generated .h files.
      
      When building the kernel the asm symlink is created. To support this
      a new 'include2' directory is created. Within include2/ asm is a symlink to
      the asm-$(ARCH) directory in the kernel src.
      Also when building the kernel the asm-offset.h file is created, and
      located in the include/asm-$(ARCH) directory, but included via
      <asm/asm-offset.h>.
      Therefore within include/ another asm symlink is created pointing to
      the asm-$(ARCH) directory located in the output directory.
      
      In Makefile.build the output directory is created if not already present.
      This was needed to support xfs, and oprofile.
      
      The patch is loosly based on ideas from Kai G. Roman Zippel
      introduced support for this in kconfig long time ago
      5a808876
  30. 10 Sep, 2003 2 commits
    • Sam Ravnborg's avatar
      kbuild: Remove cscope.out during make mrproper · dc44eb6c
      Sam Ravnborg authored
      From: "Nathan T. Lynch" <ntl@pobox.com>
      
      The attached patch fixes the toplevel Makefile to remove cscope.out
      during make mrproper.  The default name for the database that cscope
      creates is cscope.out, and this is what the cscope rule in the
      makefile uses.  Currently, mrproper will leave cscope.out behind,
      which can make for interesting diffs...
      dc44eb6c
    • Sam Ravnborg's avatar
      kbuild: Build minimum in scripts/ when changing configuration · 60a90eb7
      Sam Ravnborg authored
      From: Ricky Beam <jfbeam@bluetronic.net>, me
      
      With the increasing amount of programs located in scripts/, several
      of which is dependent on the kernel configuration, it makes sense to
      avoid building these too often.
      With this patch only fixdep is build, the minimal requirement for running
      any *config target
      60a90eb7
  31. 08 Sep, 2003 1 commit
  32. 06 Sep, 2003 2 commits
  33. 31 Aug, 2003 2 commits
    • Andrew Morton's avatar
      [PATCH] kbuild: warn if the user has old modutils · 9fff2998
      Andrew Morton authored
      From: Valdis.Kletnieks@vt.edu, Sam Ravnborg <sam@ravnborg.org>
      
      Adds an explicit check for the new modutils in the build system.
      
      Generally we should avoid these sorts of hardwired checks for the right
      versions of things, but we are still getting a significant number of problem
      reports due to people not having the new tools.  Let's help them out.
      9fff2998
    • Andrew Morton's avatar
      [PATCH] .config checks updated · b0c15cba
      Andrew Morton authored
      From: Sam Ravnborg <sam@ravnborg.org>
      
      When building a kernel right after 'make mrproper' resulted in a very short
      run, and no sign that .config was missing.  This has been fixed by adding a
      new rule for .config in the top-level Makefile, and a new target
      'silentoldconfig' in scripts/kconfig/Makefile.
      
      Cleaned up a bit in scripts/kconfig/Makefile
      b0c15cba
  34. 22 Aug, 2003 1 commit
  35. 17 Aug, 2003 1 commit
    • Sam Ravnborg's avatar
      [PATCH] Move config tasks to kconfig/Makefile · 088205b5
      Sam Ravnborg authored
      This fixes a bug with multiple targets.
      
      Olaf Hering reported that the build failed for PowerPc if used like
      this: make oldconfig zImage
      
      The reason for this was that .config was not present for any targets
      specified in arch/$(ARCH)/Makefile and below.
      
      That's because .config would not be included when oldconfig is present
      in the list of targets.  The fix is to move handling of *config task to
      the kconfig/Makefile.  Furthermore the logic in top-level makefile has
      changed a bit, creating a more logial structure.  When building a fresh
      kernel, the user is now told that .config is missing, not an anonymous
      report that .config did not exist.
      
      The error has survided this long because the targets used in i386/boot
      in general does not use CONFIG_ symbols.
      
      Olaf Hering has tested this patch with success.
      088205b5
  36. 08 Aug, 2003 1 commit