From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeremy Fitzhardinge Subject: Re: pv_ops with xen-3.3 Date: Tue, 10 Feb 2009 21:51:23 -0800 Message-ID: <4992675B.7050200@goop.org> References: <844576.20319.qm@web56107.mail.re3.yahoo.com> <20090210120128.bnleq83jmccgcok0@www.destar.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20090210120128.bnleq83jmccgcok0@www.destar.net> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: jonr@destar.net Cc: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org jonr@destar.net wrote: > Quoting Boris Derzhavets : > >> Compiled kernel supporting PV_OPS in Dom0 & INTEL AHCI (ICH(X)R) >> >> # hg clone http://www.kernel.org/hg/linux-2.6 >> >> # cd linux-2.6/.hg >> >> # hg clone http://xenbits.xensource.com/paravirt_ops/patches.hg patches >> >> # cd .. >> >> # ln -s .hg/patches . # for convenience >> >> # hg update `cat patches/KERNEL_VERSION` >> >> # hg qpush -a > > This last command does not work, is it supposed to be just 'hg push > -a'? I had the same issue yesterday, when I issue that command I get > what I pasted below, just showing basic commands. You need to enable the "mq" extension. It comes with mercurial, so its just a matter of creating ~/.hgrc with: [extensions] hgext.mq= J