* yocto fido: Strange configure error (???)
@ 2015-06-01 16:28 Neuer User
2015-06-01 16:41 ` Gary Thomas
0 siblings, 1 reply; 3+ messages in thread
From: Neuer User @ 2015-06-01 16:28 UTC (permalink / raw)
To: openembedded-devel
Hi
I'm currently moving from Dora to Fido. I moved all my recipes to a new
yocto installation and are modifying the recipes where necessary.
I have a very strange error when configuring a kernel recipe
(linux-cubox-i). Actually, there is no error when using the defaut
recipe included in fido. Only if I add the following bbappend file in
order to change the kernel configuration, I get the error:
FILESEXTRAPATHS_prepend := "${THISDIR}/linux-cubox-i:"
SRC_URI = "file://defconfig \
file://videoin.cfg \
file://networking.cfg \
file://wlan.cfg \
file://dm-crypt.cfg \
file://no-caam.cfg \
file://leds.cfg \
file://mod-to-builtin.cfg \
file://watchdog-nowayout.cfg \
"
KERNEL_IMAGETYPE_cubox-i = "zImage"
Error:
| DEBUG: Executing python function sysroot_cleansstate
| DEBUG: Python function sysroot_cleansstate finished
| DEBUG: Executing shell function do_configure
| WARNING: exit code 128 from a shell command.
| ERROR: Function failed: do_configure (log file is located at
/home/ubuntu/yocto1.8/build/tmp/work/cubox_i-poky-linux-gnueabi/linux-cubox-i/3.14.14-r0/temp/log.do_configure.29043)
Nothing more in the configure log.
Any idea, what is wrong? In general I just want to use a diffent kernel
config. Actually a kernel config that worked before without problems on
dora. I really have no idea, why this isn't working or even what the
error means.
Thanks for any help
Michael
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: yocto fido: Strange configure error (???)
2015-06-01 16:28 yocto fido: Strange configure error (???) Neuer User
@ 2015-06-01 16:41 ` Gary Thomas
2015-06-01 16:47 ` Neuer User
0 siblings, 1 reply; 3+ messages in thread
From: Gary Thomas @ 2015-06-01 16:41 UTC (permalink / raw)
To: openembedded-devel
On 2015-06-01 10:28, Neuer User wrote:
> Hi
>
> I'm currently moving from Dora to Fido. I moved all my recipes to a new
> yocto installation and are modifying the recipes where necessary.
>
> I have a very strange error when configuring a kernel recipe
> (linux-cubox-i). Actually, there is no error when using the defaut
> recipe included in fido. Only if I add the following bbappend file in
> order to change the kernel configuration, I get the error:
>
> FILESEXTRAPATHS_prepend := "${THISDIR}/linux-cubox-i:"
>
> SRC_URI = "file://defconfig \
> file://videoin.cfg \
> file://networking.cfg \
> file://wlan.cfg \
> file://dm-crypt.cfg \
> file://no-caam.cfg \
> file://leds.cfg \
> file://mod-to-builtin.cfg \
> file://watchdog-nowayout.cfg \
> "
>
> KERNEL_IMAGETYPE_cubox-i = "zImage"
>
>
> Error:
>
> | DEBUG: Executing python function sysroot_cleansstate
> | DEBUG: Python function sysroot_cleansstate finished
> | DEBUG: Executing shell function do_configure
> | WARNING: exit code 128 from a shell command.
> | ERROR: Function failed: do_configure (log file is located at
> /home/ubuntu/yocto1.8/build/tmp/work/cubox_i-poky-linux-gnueabi/linux-cubox-i/3.14.14-r0/temp/log.do_configure.29043)
>
>
> Nothing more in the configure log.
>
> Any idea, what is wrong? In general I just want to use a diffent kernel
> config. Actually a kernel config that worked before without problems on
> dora. I really have no idea, why this isn't working or even what the
> error means.
Your SRC_URI line is overriding the kernel sources.
You should probably use something like
SRC_URI += ...
--
------------------------------------------------------------
Gary Thomas | Consulting for the
MLB Associates | Embedded world
------------------------------------------------------------
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: yocto fido: Strange configure error (???)
2015-06-01 16:41 ` Gary Thomas
@ 2015-06-01 16:47 ` Neuer User
0 siblings, 0 replies; 3+ messages in thread
From: Neuer User @ 2015-06-01 16:47 UTC (permalink / raw)
To: openembedded-devel
Gary, thanks a lot! It seems I was slowly getting blind here (oh my
god). Of course, this was wrong. Compile is running now (hope it runs
through).
Cheers
Michael
Am 01.06.2015 um 18:41 schrieb Gary Thomas:
> On 2015-06-01 10:28, Neuer User wrote:
>> Hi
>>
>> I'm currently moving from Dora to Fido. I moved all my recipes to a new
>> yocto installation and are modifying the recipes where necessary.
>>
>> I have a very strange error when configuring a kernel recipe
>> (linux-cubox-i). Actually, there is no error when using the defaut
>> recipe included in fido. Only if I add the following bbappend file in
>> order to change the kernel configuration, I get the error:
>>
>> FILESEXTRAPATHS_prepend := "${THISDIR}/linux-cubox-i:"
>>
>> SRC_URI = "file://defconfig \
>> file://videoin.cfg \
>> file://networking.cfg \
>> file://wlan.cfg \
>> file://dm-crypt.cfg \
>> file://no-caam.cfg \
>> file://leds.cfg \
>> file://mod-to-builtin.cfg \
>> file://watchdog-nowayout.cfg \
>> "
>>
>> KERNEL_IMAGETYPE_cubox-i = "zImage"
>>
>>
>> Error:
>>
>> | DEBUG: Executing python function sysroot_cleansstate
>> | DEBUG: Python function sysroot_cleansstate finished
>> | DEBUG: Executing shell function do_configure
>> | WARNING: exit code 128 from a shell command.
>> | ERROR: Function failed: do_configure (log file is located at
>> /home/ubuntu/yocto1.8/build/tmp/work/cubox_i-poky-linux-gnueabi/linux-cubox-i/3.14.14-r0/temp/log.do_configure.29043)
>>
>>
>>
>> Nothing more in the configure log.
>>
>> Any idea, what is wrong? In general I just want to use a diffent kernel
>> config. Actually a kernel config that worked before without problems on
>> dora. I really have no idea, why this isn't working or even what the
>> error means.
>
> Your SRC_URI line is overriding the kernel sources.
> You should probably use something like
> SRC_URI += ...
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-06-01 16:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-01 16:28 yocto fido: Strange configure error (???) Neuer User
2015-06-01 16:41 ` Gary Thomas
2015-06-01 16:47 ` Neuer User
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.