An error occurred fetching the project authors.
- 10 Jul, 2003 2 commits
-
-
Matthew Wilcox authored
parisc64 machines should build parisc kernels.
-
Linus Torvalds authored
Making ready for the pre-2.6.x series ...
-
- 02 Jul, 2003 1 commit
-
-
Linus Torvalds authored
-
- 01 Jul, 2003 1 commit
-
-
Ben Collins authored
Since KALLSYMS is defined, might aswell use it somewhere.
-
- 22 Jun, 2003 1 commit
-
-
Linus Torvalds authored
-
- 16 Jun, 2003 1 commit
-
-
Linus Torvalds authored
-
- 14 Jun, 2003 1 commit
-
-
Linus Torvalds authored
-
- 10 Jun, 2003 1 commit
-
-
Linus Torvalds authored
so hackish.
-
- 07 Jun, 2003 2 commits
-
-
Sam Ravnborg authored
Previously modules could be build using the make dir/module.ko syntax, but this has been broken for a while. Now the directory notation includes modules as well.
-
Sam Ravnborg authored
New makefile variable introduced: lib-y The lib-y syntax allows you to do the usual tricks such as: lib-$(CONFIG_SMP) += percpu_counter.o A built-in.o is always present in a directory that list .o files in either obj-* or lib-*. In contrast, lib.a is made only when lib-y is defined. I also updated lib/Makefile, so that crc32.o is now always built-in if selected.
-
- 04 Jun, 2003 3 commits
-
-
Sam Ravnborg authored
In the top-level makefile escaped two lines to avoid launching a second subshell. This make the build a bit less verbose with make V=0
-
Sam Ravnborg authored
Patch originally by Jesse Barnes <jbarnes@sgi.com> Previously the user were required to supply CROSS_COMPILE and ARCH on the commandline to make, alternatively they patched the Makefile direct. The following patch allows the user to specify the value of these in a variable assigned during init or similar.
-
Sam Ravnborg authored
Patches originally by Adrian Bunk and Rudmer van Dijk. Included "make V=0|1" and "make C=1"
-
- 26 May, 2003 1 commit
-
-
Linus Torvalds authored
-
- 25 May, 2003 1 commit
-
-
Sam Ravnborg authored
Make the default kernel build less verbose, to make warnings show up more clearly.
-
- 10 May, 2003 1 commit
-
-
Adrian Bunk authored
The patch below adds information about modules_install to "make help".
-
- 07 May, 2003 1 commit
-
-
Linus Torvalds authored
user-supplied source checker on all C files before compiling them. I'll release the actual checker once I've cleaned it up a bit more (yay, all the copyright paperwork completed!)
-
- 04 May, 2003 1 commit
-
-
Linus Torvalds authored
-
- 19 Apr, 2003 1 commit
-
-
Linus Torvalds authored
-
- 14 Apr, 2003 1 commit
-
-
Martin Schwidefsky authored
Merge s390x and s390 to one architecture.
-
- 09 Apr, 2003 1 commit
-
-
Andrew Morton authored
Now that sparc64 is using gcc-3.x we can disallow gcc-2.91, etc. Documentation/Changes already says 2.95.3, which is working fine for me. With this change, we no longer require that per-cpu data definitions be initialised. That was a workaround for a bug in older gccs. So remove the build infrastructure which was checking for that. Also, mention that nfs-utils-1.0.3 is required. It isn't required yet, but will be once we enable larger dev_t: there is an interface for exportfs which passes dev_t's into the kernel which breaks with larger dev_t. That interface is old, deprecated and is not used in nfs-utils-1.0.3.
-
- 07 Apr, 2003 1 commit
-
-
Linus Torvalds authored
-
- 24 Mar, 2003 1 commit
-
-
Linus Torvalds authored
-
- 21 Mar, 2003 1 commit
-
-
Alan Cox authored
-
- 17 Mar, 2003 2 commits
-
-
Linus Torvalds authored
-
Kai Germaschewski authored
gen-asm-offsets, the most common user of the new filechk function, needs to be fed input from $< (the first prerequisite).
-
- 15 Mar, 2003 2 commits
-
-
Kai Germaschewski authored
make's line continuation without explicit backslashes is a mystery to me, and in this case, vmlinux got linked, but the linker command was not written to the screen. Works again now.
-
Roman Zippel authored
This adds the gtk front end by Romain Liévin <roms@tilp.info>
-
- 07 Mar, 2003 1 commit
-
-
Sam Ravnborg authored
Added a new rule filechk used to check when a generated file actually is changed. If there is no actual changes the file is left without updating the timestamp. When building a kernel from scratch two printouts occurs: CHK file-to-generate UPD file-to-generate The first line tell that kbuild checks the file, second line tell that the file is being updated (or created). On successive runs only the first line is printed. Output is the same in verbose and non-verbose mode. This replaces the former update-if-changed which has been deleted. generate-asm-offsets.h has been renamed as well. All users are updated in next patch. Output when generating compile.h follow above style
-
- 05 Mar, 2003 2 commits
-
-
Sam Ravnborg authored
Create a nice shorthand to enable the non-verbose output mode. make V=1 => Gives verbose output (default) make V=0 => Gives non-verbose output One of the reasons why people does not use KBUILD_VERBOSE=0 that much is simply the typing needed. This notation should make it acceptable to type it. The usage of "make V=0" is restricted to the command line. Anyone that wants to enable the non-verbose mode pr. default shall set KBUILD_VERBOSE in the shell.
-
Kai Germaschewski authored
set -e is needed for each (continued) line.
-
- 04 Mar, 2003 1 commit
-
-
Linus Torvalds authored
-
- 02 Mar, 2003 3 commits
-
-
Kai Germaschewski authored
We had a dummy dependency on include/linux/compile.h, but it really caused more trouble than benefits. It's not actually needed for the module postprocessing, it was only put there to make sure we recognize when gcc changed under us. However, we really can only do so much, and the rest of kbuild won't notice a changed gcc either, so if the user replaces gcc during a build, he just can't rely on the build doing the right thing. The common cases are still covered, anyway. When the command to invoke gcc changes ("CC=gcc32") we notice, and when the path to /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h changes (which luckily contains the "2.96", we'll notice and handle that, too.
-
Sam Ravnborg authored
1) Remove dep from "make help", it is no longer useful 2) replace Generating with GEN when generating version.h
-
Sam Ravnborg authored
When a rule in the top-level Makefile includes scripts as one of the prerequisites it inherits FORCE, and thus is always build. include/linux/autoconf.h recently included scripts hereby forcing split-include to be run for each compilation. Fix all rules that lists scripts as a prerequisite but did not list FORCE. Fixed by listing the executable needed direct.
-
- 01 Mar, 2003 3 commits
-
-
Sam Ravnborg authored
1) Define comma so dependency files does not include a '_' in the filename 2) Use correct path for mkspec and mkversion 3) Removed checkhelp - corresponding perl script is no longer present 4) Spelling correction (reported on lkml)
-
Kai Germaschewski authored
For some people (though not me), the '+' indicating that a command will invoke a sub-make didn't propagated properly, and caused a warning. Putting the command all into one line should fix that. Plus some cosmetics and clean up the per_cpu check.
-
Kai Germaschewski authored
-
- 24 Feb, 2003 2 commits
-
-
Kai Germaschewski authored
Yet another "make -j" race fixed, and print the right number of spaces for consisting output
-
Sam Ravnborg authored
make rpm has been broken in several kernel versions, fix it. Solves http://bugme.osdl.org/show_bug.cgi?id=373 which Paolo Ciarrocchi pushed me to fix. 1) Moved make rpm to the noconfig section, thus allowing it to see the clean target. 2) Fixed the commandline for find 3) Use rpmbuild if present 4) In mkspec use the generic all target, and drop the dep target This made the build command arch independent
-