From: Eric Schwartz <eric.schwartz@hp.com>
Set build_target and build_image for ia64
The ia64 makefile doesn't have a bzImage target, so this patch detects
if you're on ia64, and sets the default build_target and build_image.
git-svn-id: http://test.kernel.org/svn/autotest/trunk@530 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/kernel.py b/client/bin/kernel.py
index de2b8a9..c75947f 100755
--- a/client/bin/kernel.py
+++ b/client/bin/kernel.py
@@ -77,6 +77,10 @@
self.build_target = 'bzImage'
self.build_image = None
+ if get_current_kernel_arch() == 'ia64':
+ self.build_target = 'all'
+ self.build_image = 'vmlinux.gz'
+
if leave:
return