diff options
| author | Dave Jones <davej@suse.de> | 2002-04-28 04:56:05 -0700 |
|---|---|---|
| committer | Jaroslav Kysela <perex@suse.cz> | 2002-04-28 04:56:05 -0700 |
| commit | d4b145f45bf1af4378f6086427b7dd8076611fd1 (patch) | |
| tree | 7640bac612adbeda47fce8a98a135d5061596ac5 /scripts | |
| parent | 98a7e8ac5501e329194a7c80d2cc614ffcaee881 (diff) | |
[PATCH] Also look in /boot for .config
Try to get config file distro placed in boot.
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/Configure | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/Configure b/scripts/Configure index 12f7fbcae163..f0d5988da0b5 100644 --- a/scripts/Configure +++ b/scripts/Configure @@ -541,7 +541,10 @@ DEFAULTS=.config if [ ! -f .config ]; then DEFAULTS=/etc/kernel-config if [ ! -f $DEFAULTS ]; then - DEFAULTS=arch/$ARCH/defconfig + DEFAULTS=/boot/config-`uname -r` + if [ ! -f $DEFAULTS ]; then + DEFAULTS=arch/$ARCH/defconfig + fi fi fi |
