An error occurred fetching the project authors.
- 17 Feb, 2004 1 commit
-
-
Linus Torvalds authored
-
- 16 Feb, 2004 1 commit
-
-
Linus Torvalds authored
-
- 14 Feb, 2004 1 commit
-
-
Linus Torvalds authored
-
- 09 Feb, 2004 1 commit
-
-
Linus Torvalds authored
-
- 06 Feb, 2004 1 commit
-
-
Linus Torvalds authored
-
- 04 Feb, 2004 1 commit
-
-
Andrew Morton authored
From: Louis Zhuang <louis_zhuang@linux.co.intel.com> enable fast symbol lookup via an inverted index.
-
- 03 Feb, 2004 1 commit
-
-
Linus Torvalds authored
See http://www.cse.unsw.edu.au/~gernot/persona/hobbies/dunnart.html for more information about Dunnarts, in case you've never heard of them before. Courtesy of Gernot Heiser.
-
- 30 Jan, 2004 1 commit
-
-
Linus Torvalds authored
-
- 26 Jan, 2004 1 commit
-
-
Andrew Morton authored
From: Sam Ravnborg <sam@ravnborg.org> cscope expect to find the list of files used for the database in a file named cscope.files. Generate this file as part of 'make cscope'. This solves http://bugme.osdl.org/show_bug.cgi?id=1948.
-
- 25 Jan, 2004 1 commit
-
-
Linus Torvalds authored
-
- 23 Jan, 2004 1 commit
-
-
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.
-
- 20 Jan, 2004 1 commit
-
-
Linus Torvalds authored
-
- 08 Jan, 2004 1 commit
-
-
Linus Torvalds authored
-
- 07 Jan, 2004 1 commit
-
-
Linus Torvalds authored
-
- 05 Jan, 2004 1 commit
-
-
Linus Torvalds authored
-
- 30 Dec, 2003 2 commits
-
-
Linus Torvalds authored
-
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.
-
- 29 Dec, 2003 1 commit
-
-
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.
-
- 17 Dec, 2003 1 commit
-
-
Linus Torvalds authored
-
- 26 Nov, 2003 1 commit
-
-
Linus Torvalds authored
-
- 23 Nov, 2003 1 commit
-
-
Linus Torvalds authored
-
- 25 Oct, 2003 1 commit
-
-
Linus Torvalds authored
-
- 17 Oct, 2003 1 commit
-
-
Linus Torvalds authored
-
- 08 Oct, 2003 1 commit
-
-
Linus Torvalds authored
-
- 02 Oct, 2003 1 commit
-
-
Sam Ravnborg authored
- Error out if specified directory does not exist - Do not build the kernel three times wheh specifying "defconfig all" - Removed warning when the target all was specified
-
- 28 Sep, 2003 1 commit
-
-
Sam Ravnborg authored
From: GOTO Masanori <gotom@debian.or.jp> cscope generaltes various files, with different extension. Make sure to delete all cscope files during mrproper
-
- 27 Sep, 2003 1 commit
-
-
Linus Torvalds authored
-
- 23 Sep, 2003 1 commit
-
-
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)
-
- 20 Sep, 2003 1 commit
-
-
Sam Ravnborg authored
Simplify 'make rpm' a bit, and enable use of rpm in combination with separate output directory. Also added kernel.spec to ignore list
-
- 11 Sep, 2003 1 commit
-
-
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
-
- 10 Sep, 2003 2 commits
-
-
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...
-
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
-
- 08 Sep, 2003 1 commit
-
-
Linus Torvalds authored
-
- 06 Sep, 2003 2 commits
-
-
Sam Ravnborg authored
This solves 1193 in bugme as reported by ak@suse.de AFLAGS and CFLAGS contained duplicate entries, both generic and architecture specific flags
-
Randy Dunlap authored
rename make check* targets to make *check (per Sam) since 'make checkconfig' currently doesn't work; add versioncheck and scripts/checkversion.pl;
-
- 31 Aug, 2003 2 commits
-
-
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.
-
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
-
- 22 Aug, 2003 1 commit
-
-
Linus Torvalds authored
-
- 17 Aug, 2003 1 commit
-
-
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.
-
- 08 Aug, 2003 1 commit
-
-
Linus Torvalds authored
-