* Re: [oe-commits] : zaurus-2.6.inc: a string always is true, so test for the contents of it
[not found] <20080923110049.B007318806A@amethyst.openembedded.net>
@ 2008-09-23 11:40 ` Thomas Kunze
2008-09-23 11:52 ` Koen Kooi
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Kunze @ 2008-09-23 11:40 UTC (permalink / raw)
To: openembedded-devel
OE GIT Trial schrieb:
> Module: OE.dev
> Branch: org.openembedded.dev
> Commit: 51e5f5be04d699828ab2f4a28e62ed6c789fb283
> URL: http://gitweb.openembedded.net//OE.dev.git/?a=commit;h=51e5f5be04d699828ab2f4a28e62ed6c789fb283
>
> Author: <koen@openembedded.org>
> Date: Tue Sep 23 10:41:38 2008 +0000
>
> zaurus-2.6.inc: a string always is true, so test for the contents of it
>
> ---
>
> conf/machine/include/zaurus-2.6.inc | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/conf/machine/include/zaurus-2.6.inc b/conf/machine/include/zaurus-2.6.inc
> index 5e8f34f..a688f2f 100644
> --- a/conf/machine/include/zaurus-2.6.inc
> +++ b/conf/machine/include/zaurus-2.6.inc
> @@ -52,7 +52,7 @@ zaurus_make_installkit () {
> mkdir ${IMAGE_NAME}-installkit/
>
> # Get the latest kernel using the zImage-<machine>.bin symlink
> - if [ "${@base_contains('MACHINE_FEATURES', 'kexecboot', 'true', 'false',d)}" ]; then
> + if [ "${@base_contains('MACHINE_FEATURES', 'kexecboot', 'true', 'false',d)}" = "true" ]; then
>
Did you test the other solution? I meant to put the programcall 'true'
or 'false' in there. But I think I didn't test the negative case.
> [ -f "zImage-kexecboot-${MACHINE}.bin" ] && cp zImage-kexecboot-${MACHINE}.bin ${IMAGE_NAME}-installkit/zImage
> # we need also tgz for mmc or cf cards
> cp ${IMAGE_NAME}.rootfs.tar.gz ${IMAGE_NAME}-installkit/image.tgz
>
>
> _______________________________________________
> Openembedded-commits mailing list
> Openembedded-commits@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-commits
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [oe-commits] : zaurus-2.6.inc: a string always is true, so test for the contents of it
2008-09-23 11:40 ` [oe-commits] : zaurus-2.6.inc: a string always is true, so test for the contents of it Thomas Kunze
@ 2008-09-23 11:52 ` Koen Kooi
2008-09-25 10:12 ` Andrea Adami
0 siblings, 1 reply; 4+ messages in thread
From: Koen Kooi @ 2008-09-23 11:52 UTC (permalink / raw)
To: openembedded-devel
Thomas Kunze wrote:
> OE GIT Trial schrieb:
>> Module: OE.dev
>> Branch: org.openembedded.dev
>> Commit: 51e5f5be04d699828ab2f4a28e62ed6c789fb283
>> URL:
>> http://gitweb.openembedded.net//OE.dev.git/?a=commit;h=51e5f5be04d699828ab2f4a28e62ed6c789fb283
>>
>>
>> Author: <koen@openembedded.org>
>> Date: Tue Sep 23 10:41:38 2008 +0000
>>
>> zaurus-2.6.inc: a string always is true, so test for the contents of it
>>
>> ---
>>
>> conf/machine/include/zaurus-2.6.inc | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/conf/machine/include/zaurus-2.6.inc
>> b/conf/machine/include/zaurus-2.6.inc
>> index 5e8f34f..a688f2f 100644
>> --- a/conf/machine/include/zaurus-2.6.inc
>> +++ b/conf/machine/include/zaurus-2.6.inc
>> @@ -52,7 +52,7 @@ zaurus_make_installkit () {
>> mkdir ${IMAGE_NAME}-installkit/
>>
>> # Get the latest kernel using the zImage-<machine>.bin symlink
>> - if [ "${@base_contains('MACHINE_FEATURES', 'kexecboot', 'true',
>> 'false',d)}" ]; then
>> + if [ "${@base_contains('MACHINE_FEATURES', 'kexecboot', 'true',
>> 'false',d)}" = "true" ]; then
> Did you test the other solution? I meant to put the programcall 'true'
> or 'false' in there. But I think I didn't test the negative case.
I did not test that yet, since I want to get a 'normal' boot working
first on this &*$@*$(@ c700.
regards,
Koen
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [oe-commits] : zaurus-2.6.inc: a string always is true, so test for the contents of it
2008-09-23 11:52 ` Koen Kooi
@ 2008-09-25 10:12 ` Andrea Adami
2008-09-25 11:20 ` Koen Kooi
0 siblings, 1 reply; 4+ messages in thread
From: Andrea Adami @ 2008-09-25 10:12 UTC (permalink / raw)
To: openembedded-devel
> I did not test that yet, since I want to get a 'normal' boot working first
> on this &*$@*$(@ c700.
You mean even the normal zImage kernel does not boot?
One user reported this to me about zImage-kexecboot on SL-C700:
/*
To my knowledge, it does not reboot. It says "Rebooting the system..."
and then nothing happens. When I do a full power cycle (battery
removal because it ignores the battery switch), I just get a dark
screen and nothing indicating that it is in some sort of boot process.
So, no, I don't see a boot menu.
I'm betting that this is based on a difference between the C700 and the C860.
*/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [oe-commits] : zaurus-2.6.inc: a string always is true, so test for the contents of it
2008-09-25 10:12 ` Andrea Adami
@ 2008-09-25 11:20 ` Koen Kooi
0 siblings, 0 replies; 4+ messages in thread
From: Koen Kooi @ 2008-09-25 11:20 UTC (permalink / raw)
To: openembedded-devel
Andrea Adami wrote:
>> I did not test that yet, since I want to get a 'normal' boot working first
>> on this&*$@*$(@ c700.
>
> You mean even the normal zImage kernel does not boot?
It boots, but the c7x0 machine in OE suffered from massive bitrot. I am
now able to use installkits built with OE, but the c700 locks up hard
after a minute or 2.
regards,
Koen
> One user reported this to me about zImage-kexecboot on SL-C700:
>
> /*
> To my knowledge, it does not reboot. It says "Rebooting the system..."
> and then nothing happens. When I do a full power cycle (battery
> removal because it ignores the battery switch), I just get a dark
> screen and nothing indicating that it is in some sort of boot process.
>
> So, no, I don't see a boot menu.
>
> I'm betting that this is based on a difference between the C700 and the C860.
> */
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-09-25 11:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20080923110049.B007318806A@amethyst.openembedded.net>
2008-09-23 11:40 ` [oe-commits] : zaurus-2.6.inc: a string always is true, so test for the contents of it Thomas Kunze
2008-09-23 11:52 ` Koen Kooi
2008-09-25 10:12 ` Andrea Adami
2008-09-25 11:20 ` Koen Kooi
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.