- 06 Jun, 2002 18 commits
-
-
Kai Germaschewski authored
o Fix a bug in fixdep.c, which could cause segfaults o Make sure that we build fixdep first of all, since we need it to build host programs.
-
Kai Germaschewski authored
by Sam Ravnborg: fixdep, when adding dependencies to config entires fails to take into account the last part of a config entry, if it contains more than one underscore. Example: CONFIG_PROC_FS generates $(wildcard include/config/proc.h) but should generate $(wildcard include/config/proc/fs.h) Attached patch fixes this.
-
Kai Germaschewski authored
At a couple of places, we need to build programs which run on the compile host during building the kernel. Add a new variable "host-progs" to declare such programs. Rules.make will automatically provide rules to compile these programs with appropriate command lines etc. Compared to having explicit rules spread around for doing so, this has the following advantages: o shorter o automatically figures out dependencies and handles changing command lines o Nicer output in quiet mode ;-) Compiling host programs from multiple sources is also possible, analogous to multi-part objects. E.g. scripts/Makefile has host-progs := tkparse tkparse-objs := tkparse.o tkcond.o tkgen.o
-
Kai Germaschewski authored
into tp1.ruhr-uni-bochum.de:/home/kai/kernel/v2.5/linux-2.5.make
-
Kai Germaschewski authored
Patch by Keith Owens, ported to 2.5. If the length of $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) exceeds 64 characters it silently corrupts the utsname data, resulting in garbage for uname -r and problems running the kernel and modules. Abort if KERNELRELEASE is too long. Truncation is not good enough, it results in ambiguous /lib/modules/`uname -r` contents. Ensure that the date/time in uname are always in LANG=C. Users with other languages report that 8 bit values cause the boot messages to go haywire.
-
Christoph Hellwig authored
- add comment about the vmlinux link components - get rid of DRIVERS-y - always linking in sound/sound.o doesn't harm - sort SUBDIRS in link order - always use := to assign - remove supeflous $(TOPDIR) for lib/lib.a
-
Kai Germaschewski authored
-
Christoph Hellwig authored
-
Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Rusty Russell authored
This turns the simple task pointer into a waitqueue, which is needed for the poll() patch.
-
Stephen Rothwell authored
Another trivial part of a Matthew Wilcox patch. This just defines macros for distinguishing the differnet types of locks.
-
Rusty Russell authored
This uses page_cache_release() instead of put_page(), as it might be a pagecache page.
-
Rusty Russell authored
This patch handles the case where copy_from_user fails (it could have been unmapped from this address space by another thread).
-
Rusty Russell authored
This comment refers to the original implementation. Obsolete.
-
David Woodhouse authored
This switches linux/zlib.h to include zconf.h as <linux/zconf.h> instead of just "zconf.h".
-
Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
Linus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
- 05 Jun, 2002 22 commits
-
-
David S. Miller authored
-
David S. Miller authored
printing Sparc IRQ.
-
David S. Miller authored
-
David S. Miller authored
-
David S. Miller authored
-
David S. Miller authored
-
David S. Miller authored
-
David S. Miller authored
-
David S. Miller authored
-
David S. Miller authored
Generic BUS objects have to be registered before devices assosciated with them are probed. Therefore subsys_initcall is inappropriate for such setups. It does not work to use core_initcall for this because the generic device layer bits need to be setup first too. So we rename unused_initcall to postcore_initcall and use this new initcall level for generic BUS object init. This fixes bootup on Alpha, and Sparc64. X86 was working by what looks to be luck in link order.
-
David S. Miller authored
-
David S. Miller authored
HAVE_ARCH_SIGINFO_T platforms.
-
Rob Radez authored
-
Kai Germaschewski authored
Kernel code should not include userspace headers. To avoid that happening by mistake, ask gcc not to look into the usual places when looking for headers. We still need to find gcc headers for vararg and similar, though - achieved by the "-iwithprefix include" which will look into <gcc-path>/include, as proposed by Russell King. A similar patch went into 2.4, so not much breakage expected.
-
Kai Germaschewski authored
Not that it matters, since it's only used with 7bit chars, but anyway.
-
Kai Germaschewski authored
Remove absolute path in output of drivers/scsi/script_asm.pl Extracted from Keith Owens' kbuild-2.5 by patch@luckynet.dynu.com.
-
Kai Germaschewski authored
This patch was extracted from Keith Owens' kbuild-2.5 by patch@luckynet.dynu.com
-
Kai Germaschewski authored
This patch adds the following targets, which generate some configs useful for testing - which kind should be clear from the names: o allyesconfig o allmodconfig o allnoconfig o randconfig It also adds o defconfig which does the same as make oldconfig but uses the defaults for all new options without asking. The actual patch was done by Ghozlane Toumi, maintained in kbuild-2.5 by Keith Owens, and extracted by Sam Ravnborg and patch@luckynet.dynu.com.
-
Kai Germaschewski authored
For consistency, it makes a lot of sense to add -DMODULE (plus the other special switches with CONFIG_MODVERSIONS) to .S files which get assembled. It surely fixes an ugly workaround for sparc64, guess we'll see if it breaks something for other archs (I wouldn't think so, though)
-
Kai Germaschewski authored
For some cases, we cannot decide if a target would change just by looking at its prequisites, i.e. it's quite likely that it remains the same even though a prequisite changed. The updated timestamp would cause a lot of unnecessary recompiles. In this case, we actually generate a temporary file, compare it to the old file and only the contents are different do overwrite the old file. The "update-if-changed" snippet remains always the same, so let's put it into a macro instead of duplicating it. After that change, scripts/mkversion_h is so small that we rather put the three remaining lines directly into the Makefile.
-
Kai Germaschewski authored
into tp1.ruhr-uni-bochum.de:/home/kai/kernel/v2.5/linux-2.5.make
-
Kai Germaschewski authored
So here we are: make vmlinux/bzImage/whatever will now also build modules as it goes. Other than that, everything works as usual. "make modules" builds only the modules (but you shouldn't need it anymore). If you don't want the modules built, you can do "make KBUILD_MODULES= vmlinux/whatever" to only compile built-in objects. If people want it, I can also allow for "make vmlinux/whatever nomodules" to do the same. Also, add ' ' in Rules.make to properly align output in quiet mode.
-