I tried using the method of find the kernel source suggested to me on a somewhat similar question.
I want to do two things
(1) find the source to "3.9.0-1-linaro-arndale #1ubuntu1~ci+130404024430 SMP PREEMPT"
(2) figure out how to build the kernel so that is labeled "3.9.0-1-linaro-arndale #1ubuntu1~ci+130404024430 SMP PREEMPT" and not "3.x.x-x-generic" which is what it usually says when I compile a kernel source.
Can someone point me in the direction of these answers?
Thanks Chad
Hi,
On 9 April 2013 20:57, Young, Chad chad.young@amd.com wrote:
I tried using the method of find the kernel source suggested to me on a somewhat similar question.
I want to do two things
(1) find the source to "3.9.0-1-linaro-arndale #1ubuntu1~ci+130404024430 SMP PREEMPT"
It seems a snapshot build. The debian changelog provided with the package will give you the details on the source. In current case, you're looking for https://git.linaro.org/gitweb?p=kernel/linux-linaro-tracking.git%3Ba=shortlo...
(2) figure out how to build the kernel so that is labeled "3.9.0-1-linaro-arndale #1ubuntu1~ci+130404024430 SMP PREEMPT" and not "3.x.x-x-generic" which is what it usually says when I compile a kernel source.
This kernel is built using ubuntu-kernel-ci scripts:
git clone -b linux-linaro git://git.linaro.org/kernel/linux-linaro-tracking.git reference-git git clone git://git.linaro.org/people/jcrigby/ubuntu-kernel-ci.git ubuntu-kernel-ci export reference_git="reference-git" export nearby_git="${reference_git}/.git" ./ubuntu-kernel-ci/scripts/package_kernel --cfg arndale.cfg nearby_git=${nearby_git}
As you can see on https://ci.linaro.org/jenkins/job/package-and-publish-linux-linaro/hwpack=ar...
For your specific question, you're looking for KERNELVERSION and KERNELRELEASE.
Can someone point me in the direction of these answers?
It should help :)
Thanks Chad