boot: report successful boot to the job status

Report a successful boot to the job status reporting the directory
from which the kernel was installed.  Also move the reporting into
the job object so that the status record is within scope; this is
also much more logical.

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


git-svn-id: http://test.kernel.org/svn/autotest/trunk@688 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/kernel.py b/client/bin/kernel.py
index 3f3d979..5534d91 100755
--- a/client/bin/kernel.py
+++ b/client/bin/kernel.py
@@ -475,8 +475,8 @@
 			ident = self.get_kernel_build_ident()
 			args += " IDENT=%d" % (when)
 
-			self.job.next_step_prepend([kernel_check_ident,
-								when, ident])
+			self.job.next_step_prepend(["job.kernel_check_ident",
+						when, ident, self.subdir])
 
 		# Install this kernel.
 		self.install()