Recent improvements to kbuild infrastructure included in linux-next tree moves
some of the dynamically generated kernel headers(like compile.h, utsrelease.h)
to include/generated directory. This breaks autotest client as Kernel build and
boot fails with :

- complete: END - ABORT ---- ---- kernel has no identity --

Include the new directories in the search path to be in sync with kernel
changes.

Signed-off-by: Sachin Sant <sachinp@in.ibm.com>


git-svn-id: http://test.kernel.org/svn/autotest/trunk@3905 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/kernel.py b/client/bin/kernel.py
index cadc3cf..3a3e8bd 100755
--- a/client/bin/kernel.py
+++ b/client/bin/kernel.py
@@ -473,7 +473,9 @@
 
         for f in [self.build_dir + "/include/linux/version.h",
                   self.build_dir + "/include/linux/utsrelease.h",
-                  self.build_dir + "/include/linux/compile.h"]:
+                  self.build_dir + "/include/linux/compile.h",
+                  self.build_dir + "/include/generated/utsrelease.h",
+                  self.build_dir + "/include/generated/compile.h"]:
             if os.path.exists(f):
                 fd = open(f, 'r')
                 for line in fd.readlines():