kernel: add a default config via the job configuration

Add a new job configuration option kernel.default_config and use that
to seed the kernel configuration where it is not already specified.

Signed-off-by: Andy Whitcroft <apw@shadowen.org>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@417 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/kernel.py b/client/bin/kernel.py
index 93a689e..33b0317 100755
--- a/client/bin/kernel.py
+++ b/client/bin/kernel.py
@@ -111,7 +111,7 @@
 
 	def config(self, config_file, config_list = None):
 		self.job.stdout.redirect(os.path.join(self.log_dir, 'stdout'))
-		config = kernel_config.kernel_config(self.build_dir, self.config_dir, config_file, config_list)
+		config = kernel_config.kernel_config(self.job, self.build_dir, self.config_dir, config_file, config_list)
 		self.job.stdout.restore()