All of lore.kernel.org
 help / color / mirror / Atom feed
From: Avi Kivity <avi@redhat.com>
To: Jan Kiszka <jan.kiszka@siemens.com>
Cc: Maik Hentsche <maik.hentsche@amd.com>,
	kvm@vger.kernel.org, Joerg Roedel <joerg.roedel@amd.com>
Subject: Re: [PATCH] kvm-userspace: fix module build with --kerneldir
Date: Wed, 26 Nov 2008 18:00:42 +0200	[thread overview]
Message-ID: <492D72AA.8050202@redhat.com> (raw)
In-Reply-To: <492D3E23.4050106@siemens.com>

Jan Kiszka wrote:
> Avi Kivity wrote:
>   
>> Maik Hentsche wrote:
>>     
>>> Avi Kivity <avi@redhat.com> wrote:
>>>
>>>  
>>>       
>>>> Can't the version be determined directly from kernedir itself?  e.g.
>>>> kerneldir is /lib/modules/$version/build?
>>>>     
>>>>         
>>> How do you get $version if you are crosscompiling? In this case the
>>> usual way of asking uname doesn't work. Instead you somehow need to get
>>> the version of the kernel you're building for from the kernel source
>>> provided in --kerneldir. I don't know any better way than evaluating
>>> UTSRELEASE.
>>>   
>>>       
>> If the user specified $kerneldir, it should be in the form
>> /lib/modules/$version/build, no?
>>     
>
> This is not sufficiently generic. KVM should to accept arbitrary paths
> to kernel directories, not just those special links (which could cause
> problems anyway if the link is set up for the target and makes no sense
> on the build host).
>
>   

Fair enough.  This seems to work:

    awk ' / = / { a[$1] = $3 } END { printf("%s.%s.%s%s\n", 
a["VERSION"], a["PATCHLEVEL"], a["SUBLEVEL"], a["EXTRAVERSION"]) }' 
"$kerneldir/Makefile"

Or alternatively

 awk '/Linux kernel version/ { print $NF }' "$kerneldir/.config"

-- 
error compiling committee.c: too many arguments to function


  reply	other threads:[~2008-11-26 16:00 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-25 13:57 [PATCH] kvm-userspace: fix module build with --kerneldir Joerg Roedel
2008-11-26 10:42 ` Avi Kivity
2008-11-26 10:59   ` Maik Hentsche
2008-11-26 11:14     ` Avi Kivity
2008-11-26 12:14       ` Maik Hentsche
2008-11-26 16:03         ` Avi Kivity
2008-11-26 12:16       ` Jan Kiszka
2008-11-26 16:00         ` Avi Kivity [this message]
2008-11-27 14:15           ` Eduardo Habkost
2008-11-27 14:26             ` Avi Kivity
2008-12-01 14:28 ` Maik Hentsche
2008-12-09 15:02   ` Joerg Roedel
2008-12-10 10:06     ` Avi Kivity

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=492D72AA.8050202@redhat.com \
    --to=avi@redhat.com \
    --cc=jan.kiszka@siemens.com \
    --cc=joerg.roedel@amd.com \
    --cc=kvm@vger.kernel.org \
    --cc=maik.hentsche@amd.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.