From mboxrd@z Thu Jan 1 00:00:00 1970 From: Will Deacon Subject: Re: [PATCH] kvmtool: aarch64: fix path to uncompressed kernel images. Date: Fri, 29 Jul 2016 12:08:11 +0100 Message-ID: <20160729110811.GG16593@arm.com> References: <1469542146-23979-1-git-send-email-jorge.ramirez-ortiz@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: sasha.levin@oracle.com, penberg@kernel.org, kvm@vger.kernel.org To: Jorge Ramirez-Ortiz Return-path: Received: from foss.arm.com ([217.140.101.70]:53199 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750917AbcG2LIJ (ORCPT ); Fri, 29 Jul 2016 07:08:09 -0400 Content-Disposition: inline In-Reply-To: <1469542146-23979-1-git-send-email-jorge.ramirez-ortiz@linaro.org> Sender: kvm-owner@vger.kernel.org List-ID: Hi Jorge, On Tue, Jul 26, 2016 at 04:09:06PM +0200, Jorge Ramirez-Ortiz wrote: > Some architectures require that the bootloader uncompresses the image > before executing the kernel; since lkvm will not uncompress the kernel > image, the default image names need to be modified to address this > matter. > > Signed-off-by: Jorge Ramirez-Ortiz > Tested-by: Jorge Ramirez-Ortiz > --- > builtin-run.c | 55 ++++++++++++++++++++++++++++++++++++++++++++----------- > 1 file changed, 44 insertions(+), 11 deletions(-) I just pushed a variant of Andre's previous solution to this problem, which lets you run Image.gz doing something like: $ lkvm run ... -k (zcat Image.gz) Will