Messages in this thread Patch in this message |  | | Date | Sat, 27 Oct 2001 18:52:23 +0100 (BST) | From | Riley Williams <> | Subject | [PATCH] 2.4.13 default config |
| |
Hi Alan, Linus.
The enclosed patch (against the raw 2.4.13 tree) adds a `make defconfig` option that configures Linux with the default options obtained by simply pressing ENTER to every prompt that comes up.
On my ix86 system and against this kernel, it produces a config that is identical to that in arch/i386/defconfig but this is NOT true of some of the other kernel releases.
Please apply.
Best wishes from Riley. --- linux-2.4.13/Makefile~ Wed Oct 24 06:21:20 2001 +++ linux-2.4.13/Makefile Sat Oct 27 18:46:47 2001 @@ -274,6 +274,10 @@ mkdir include/linux/modules; \ fi +defconfig: + rm -f .config + yes '' | make config + oldconfig: symlinks $(CONFIG_SHELL) scripts/Configure -d arch/$(ARCH)/config.in |  |