From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefano Stabellini Subject: [PATCH v3 0/2] support gzipped kernels on arm Date: Wed, 2 Sep 2015 12:30:55 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xensource.com Cc: Ian Campbell , Stefano Stabellini List-Id: xen-devel@lists.xenproject.org Hi all, this patch series introduces support for gzipped kernels, such as the standard Image.gz format used by Linux on arm64 by default, in Xen on arm. Without it, Xen cannot load the default kernel shipped by distros, such as CentOS 7. Stefano Stabellini (2): xen: move perform_gunzip to common xen/arm: support gzip compressed kernels xen/arch/arm/kernel.c | 66 +++++++++++++++++++++ xen/arch/arm/setup.c | 2 +- xen/arch/x86/bzimage.c | 134 +----------------------------------------- xen/common/Makefile | 1 + xen/common/gunzip.c | 137 +++++++++++++++++++++++++++++++++++++++++++ xen/include/asm-arm/setup.h | 2 + xen/include/xen/gunzip.h | 7 +++ 7 files changed, 215 insertions(+), 134 deletions(-) create mode 100644 xen/common/gunzip.c create mode 100644 xen/include/xen/gunzip.h Cheers, Stefano