X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 78F52DC13B1 for ; Wed, 8 Feb 2012 13:19:25 +0000 (UTC) Received: by wibhn14 with SMTP id hn14so559260wib.13 for ; Wed, 08 Feb 2012 05:19:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:from:to:cc:subject:date:message-id:x-mailer; bh=0HnvcybSB5MIfK6hpvIqWsiVWHTrE8aeRfAZyCoyx/k=; b=w987YsdcEzKKQ2Q+Z3losPP09WvA45ZDlIq7tVdp8faELUBqTa7yt/KkH7T0AyMA4j SUDvLuVj19aAAEaJShr5+loM00dX/1g41p51VxUhs1dF2XsBuUM/7bdgU9vd7L2oFGp0 UyIpfKkaNWN/jPCv5jA86Qzt7W2N7tR2UThXw= Received: by 10.216.137.82 with SMTP id x60mr10365286wei.42.1328707163818; Wed, 08 Feb 2012 05:19:23 -0800 (PST) Received: from build.localdomain (tina.upc.es. [147.83.39.243]) by mx.google.com with ESMTPS id eq5sm620817wib.2.2012.02.08.05.19.23 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 08 Feb 2012 05:19:23 -0800 (PST) Sender: =?UTF-8?Q?Roger_Pau_Monn=C3=A9?= From: Roger Pau Monne To: alpine-devel@lists.alpinelinux.org Cc: Roger Pau Monne Subject: [alpine-devel] [PATCH] testing/xen: fix extlinux pygrub Date: Wed, 8 Feb 2012 00:36:14 +0100 Message-Id: <1328657774-15472-1-git-send-email-roger.pau@entel.upc.edu> X-Mailer: git-send-email 1.7.9 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Modified the patch to fix a problem when initrd is the first argument in the append command. This is already commited to the Xen upstream tree. --- testing/xen/pygrub_alpine.patch | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/testing/xen/pygrub_alpine.patch b/testing/xen/pygrub_alpine.patch index 9d6ee57..98d0822 100644 --- a/testing/xen/pygrub_alpine.patch +++ b/testing/xen/pygrub_alpine.patch @@ -38,7 +38,7 @@ diff -r 3e02aa9670b3 tools/pygrub/src/ExtLinuxConf.py # Bypass regular self.commands handling com = None -+ elif arg.find("initrd="): ++ elif "initrd=" in arg: + # find initrd image in append line + args = arg.strip().split(" ") + for a in args: -- 1.7.9 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---