From patchwork Thu Jun 24 23:33:02 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas Meneghel Rodrigues X-Patchwork-Id: 107954 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.4/8.14.3) with ESMTP id o5ONXFGW030397 for ; Thu, 24 Jun 2010 23:33:15 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752004Ab0FXXdN (ORCPT ); Thu, 24 Jun 2010 19:33:13 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49925 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753033Ab0FXXdM (ORCPT ); Thu, 24 Jun 2010 19:33:12 -0400 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o5ONXBKx013114 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 24 Jun 2010 19:33:11 -0400 Received: from localhost.localdomain (vpn-9-214.rdu.redhat.com [10.11.9.214]) by int-mx03.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o5ONX8o8020871; Thu, 24 Jun 2010 19:33:09 -0400 From: Lucas Meneghel Rodrigues To: autotest@test.kernel.org, mgoldish@redhat.com Cc: kvm@vger.kernel.org, Lucas Meneghel Rodrigues Subject: [PATCH 1/5] KVM test: support kernel -append command line options Date: Thu, 24 Jun 2010 20:33:02 -0300 Message-Id: <1277422386-13516-1-git-send-email-lmr@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.16 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Thu, 24 Jun 2010 23:33:15 +0000 (UTC) diff --git a/client/tests/kvm/kvm_vm.py b/client/tests/kvm/kvm_vm.py index 966fb3c..87b037f 100755 --- a/client/tests/kvm/kvm_vm.py +++ b/client/tests/kvm/kvm_vm.py @@ -287,6 +287,9 @@ class VM: def add_initrd(help, filename): return " -initrd '%s'" % filename + def add_kernel_cmdline(help, cmdline): + return " -append %s" % cmdline + # End of command line option wrappers if name is None: name = self.name @@ -394,6 +397,10 @@ class VM: kernel = kvm_utils.get_path(root_dir, kernel) qemu_cmd += add_kernel(help, kernel) + kernel_cmdline = params.get("kernel_cmdline") + if kernel_cmdline: + qemu_cmd += add_kernel_cmdline(help, kernel_cmdline) + initrd = params.get("initrd") if initrd: initrd = kvm_utils.get_path(root_dir, initrd)