[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH] update-linux-headers.sh: Pull in asm-generic/kv
From: |
Anthony Liguori |
Subject: |
Re: [Qemu-devel] [PATCH] update-linux-headers.sh: Pull in asm-generic/kvm_para.h |
Date: |
Mon, 13 Aug 2012 09:24:00 -0500 |
User-agent: |
Notmuch/0.13.2+93~ged93d79 (http://notmuchmail.org) Emacs/23.3.1 (x86_64-pc-linux-gnu) |
Peter Maydell <address@hidden> writes:
> Ping^2 ?
In a previous thread, we all agreed that all changes to linux headers
would come in through uq/master to ensure that we didn't have a repeat
scenario of depending on a header that didn't make it to Avi's tree
unchanged.
Avi/Marcelo, can you guys pick this up through uq/master?
Regards,
Anthony Liguori
>
> On 8 August 2012 13:34, Peter Maydell <address@hidden> wrote:
>> Ping?
>>
>> patchwork url: http://patchwork.ozlabs.org/patch/173202/
>>
>> -- PMM
>>
>> On 25 July 2012 16:29, Peter Maydell <address@hidden> wrote:
>>> Add asm-generic/kvm_para.h to the set of non-architecture specific
>>> KVM kernel headers we copy into QEMU. This header may be included
>>> by an architecture's kvm_para.h header.
>>>
>>> Signed-off-by: Peter Maydell <address@hidden>
>>> ---
>>> scripts/update-linux-headers.sh | 5 +++++
>>> 1 files changed, 5 insertions(+), 0 deletions(-)
>>>
>>> diff --git a/scripts/update-linux-headers.sh
>>> b/scripts/update-linux-headers.sh
>>> index 9d2a4bc..a639c5b 100755
>>> --- a/scripts/update-linux-headers.sh
>>> +++ b/scripts/update-linux-headers.sh
>>> @@ -46,6 +46,11 @@ mkdir -p "$output/linux-headers/linux"
>>> for header in kvm.h kvm_para.h vhost.h virtio_config.h virtio_ring.h; do
>>> cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux"
>>> done
>>> +rm -rf "$output/linux-headers/asm-generic"
>>> +mkdir -p "$output/linux-headers/asm-generic"
>>> +for header in kvm_para.h; do
>>> + cp "$tmpdir/include/asm-generic/$header"
>>> "$output/linux-headers/asm-generic"
>>> +done
>>> if [ -L "$linux/source" ]; then
>>> cp "$linux/source/COPYING" "$output/linux-headers"
>>> else
>>> --
>>> 1.7.5.4