r3518 - trunk/kernel/source/linux-2.6-2.6.12/debian

Andres Salomon dilinger at costa.debian.org
Sat Jul 16 01:56:04 UTC 2005


Author: dilinger
Date: 2005-07-16 01:56:00 +0000 (Sat, 16 Jul 2005)
New Revision: 3518

Modified:
   trunk/kernel/source/linux-2.6-2.6.12/debian/Makefile
Log:
rename config.common to config, ignore include_common_config (always use
the common config.  overriding options is implicit, use it if you don't want
to use the common configs), and fixed a subarch bug ($(arch)/config.$(subarch)
vs $(arch)/$(subarch)/config)


Modified: trunk/kernel/source/linux-2.6-2.6.12/debian/Makefile
===================================================================
--- trunk/kernel/source/linux-2.6-2.6.12/debian/Makefile	2005-07-16 01:40:27 UTC (rev 3517)
+++ trunk/kernel/source/linux-2.6-2.6.12/debian/Makefile	2005-07-16 01:56:00 UTC (rev 3518)
@@ -35,7 +35,7 @@
 endif
 
 configs := $(notdir $(wildcard $(basedir)/config.*))
-configs := $(filter-out config.common config.default, $(configs))
+configs := $(filter-out config config.default, $(configs))
 tkdir   := linux-source-$(version)
 kdir    := linux-source-$(version)-$(subarch)
 ifndef flavours
@@ -83,10 +83,11 @@
 ifndef headers_dirs
   headers_dirs = $(karch)
 endif
-ifneq (no,$(include_common_config))
-  ccommon := arch/config.common
-endif
-ccommon += arch/$(karch)/config.common arch/$(karch)/$(subarch)/config.common
+# XXX: include_common_config disabled.
+#ifneq (no,$(include_common_config))
+  ccommon := arch/config
+#endif
+ccommon += arch/config arch/$(karch)/config arch/$(karch)/$(subarch)/config
 #
 # Here we build lists of directories and stamps which we will depend on.
 # For each class of such targets there is a pattern rule which will catch
@@ -162,9 +163,9 @@
 	    templates/post-install.in > post-install-$(subarch)
 #
 # Generates the kernel config file for a subarch by merging
-# the arch-independent config file (arch/config.common),
-# arch-specific config file (arch/$(karch)/config.common),
-# and subarch specific one (arch/$(karch)/config.subarch).
+# the arch-independent config file (arch/config),
+# arch-specific config file (arch/$(karch)/config),
+# and subarch specific one (arch/$(karch)/$(subarch)/config).
 # It is possible to avoid the inclusion of the arch-indep
 # config file by setting include_common_config = no in the
 # arch/$(karch)/Makefile.inc.




More information about the Kernel-svn-changes mailing list