Hi Andy,
I got following error in compilation of TILT-3.4 at
http://git.linaro.org/gitweb?p=landing-teams/working/ti/kernel.git%3Ba=short...
Using /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git as source for kernel CHK include/generated/utsrelease.h make[2]: `include/generated/mach-types.h' is up to date. CC arch/arm/kernel/asm-offsets.s In file included from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/arch/arm/include/asm/barrier.h:41:0, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/arch/arm/include/asm/domain.h:14, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/arch/arm/include/asm/thread_info.h:28, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/thread_info.h:53, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/preempt.h:9, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/spinlock.h:50, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/seqlock.h:29, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/time.h:8, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/timex.h:56, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/sched.h:57, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/arch/arm/kernel/asm-offsets.c:13: arch/arm/include/generated/mach/barriers.h:1:33: fatal error: mach-omap2/barriers.h: No such file or directory compilation terminated. make[2]: *** [arch/arm/kernel/asm-offsets.s] Error 1
I tried compiling it with omap4plus_defconfig. I want to use a stable kernel for panda board, which one should i always refer to?
-- viresh
On 24 August 2012 14:34, Viresh Kumar viresh.kumar@linaro.org wrote:
Hi Andy,
I got following error in compilation of TILT-3.4 at
http://git.linaro.org/gitweb?p=landing-teams/working/ti/kernel.git%3Ba=short...
Using /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git as source for kernel CHK include/generated/utsrelease.h make[2]: `include/generated/mach-types.h' is up to date. CC arch/arm/kernel/asm-offsets.s In file included from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/arch/arm/include/asm/barrier.h:41:0, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/arch/arm/include/asm/domain.h:14, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/arch/arm/include/asm/thread_info.h:28, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/thread_info.h:53, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/preempt.h:9, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/spinlock.h:50, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/seqlock.h:29, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/time.h:8, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/timex.h:56, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/include/linux/sched.h:57, from /home/arm/work/kernel/linaro/linux-linaro-bitLITTLE-MP.git/arch/arm/kernel/asm-offsets.c:13: arch/arm/include/generated/mach/barriers.h:1:33: fatal error: mach-omap2/barriers.h: No such file or directory compilation terminated. make[2]: *** [arch/arm/kernel/asm-offsets.s] Error 1
I tried compiling it with omap4plus_defconfig. I want to use a stable kernel for panda board, which one should i always refer to?
Leave that. My fault :(
I always use O=../some-folder for all compilation related commands and do all this with script every time (so no manual mistakes). But since some time i am observing the current source folder also gets dirty. Some time it complains for running make mrproper on source folder and sometimes gives above errors.
make mrproper fixed this issue.
-- viresh
On 08/24/12 19:15, the mail apparently from Viresh Kumar included:
Hi -
Leave that. My fault :(
I always use O=../some-folder for all compilation related commands and do all this with script every time (so no manual mistakes). But since some time i am observing the current source folder also gets dirty. Some time it complains for running make mrproper on source folder and sometimes gives above errors.
make mrproper fixed this issue.
Glad you're sorted... actually fwiw I also use scripted O= scheme for all builds here (it makes switching between different build contexts of same sources cheap) and I don't have any contamination of ./ happening.
-Andy