From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Evans Date: Tue, 06 Dec 2011 03:41:16 +0000 Subject: [PATCH 17/28] kvm tools: Only call symbol__init() if we have BFD Message-Id: <4EDD8EDC.8090707@ozlabs.org> List-Id: References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: kvm@vger.kernel.org, kvm-ppc@vger.kernel.org CONFIG_HAS_BFD is optional, symbol.c inclusion is optional -- so make its init call dependent on CONFIG_HAS_BFD. Signed-off-by: Matt Evans --- tools/kvm/builtin-run.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/tools/kvm/builtin-run.c b/tools/kvm/builtin-run.c index 1257c90..aaa5132 100644 --- a/tools/kvm/builtin-run.c +++ b/tools/kvm/builtin-run.c @@ -798,8 +798,9 @@ int kvm_cmd_run(int argc, const char **argv, const char *prefix) if (!script) script = DEFAULT_SCRIPT; +#ifdef CONFIG_HAS_BFD symbol__init(vmlinux_filename); - +#endif term_init(); if (!guest_name) {