* [PATCH] cml1.bbclass: fix kernel menuconfig
@ 2012-09-12 13:19 Andreas Müller
2012-09-12 13:31 ` Richard Purdie
0 siblings, 1 reply; 5+ messages in thread
From: Andreas Müller @ 2012-09-12 13:19 UTC (permalink / raw)
To: openembedded-core; +Cc: paul.eggleton
At some host environments the menuconfig displayed wrong characters ang turned
unusable.
Similar suggested in [1]
[1] http://lists.linuxtogo.org/pipermail/openembedded-core/2012-August/027130.html
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
meta/classes/cml1.bbclass | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta/classes/cml1.bbclass b/meta/classes/cml1.bbclass
index 67f17ad..c773684 100644
--- a/meta/classes/cml1.bbclass
+++ b/meta/classes/cml1.bbclass
@@ -9,7 +9,7 @@ addtask configure after do_unpack do_patch before do_compile
inherit terminal
-OE_TERMINAL_EXPORTS += "HOST_EXTRACFLAGS HOSTLDFLAGS HOST_LOADLIBES"
+OE_TERMINAL_EXPORTS += "HOST_EXTRACFLAGS HOST_LOADLIBES"
HOST_EXTRACFLAGS = "${BUILD_CFLAGS} ${BUILD_LDFLAGS}"
HOSTLDFLAGS = "${BUILD_LDFLAGS}"
HOST_LOADLIBES = "-lncurses"
--
1.7.6.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] cml1.bbclass: fix kernel menuconfig
2012-09-12 13:19 [PATCH] cml1.bbclass: fix kernel menuconfig Andreas Müller
@ 2012-09-12 13:31 ` Richard Purdie
2012-09-12 13:38 ` Bruce Ashfield
0 siblings, 1 reply; 5+ messages in thread
From: Richard Purdie @ 2012-09-12 13:31 UTC (permalink / raw)
To: Andreas Müller; +Cc: paul.eggleton, openembedded-core
On Wed, 2012-09-12 at 15:19 +0200, Andreas Müller wrote:
> At some host environments the menuconfig displayed wrong characters ang turned
> unusable.
>
> Similar suggested in [1]
>
> [1] http://lists.linuxtogo.org/pipermail/openembedded-core/2012-August/027130.html
>
> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
> ---
> meta/classes/cml1.bbclass | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/meta/classes/cml1.bbclass b/meta/classes/cml1.bbclass
> index 67f17ad..c773684 100644
> --- a/meta/classes/cml1.bbclass
> +++ b/meta/classes/cml1.bbclass
> @@ -9,7 +9,7 @@ addtask configure after do_unpack do_patch before do_compile
>
> inherit terminal
>
> -OE_TERMINAL_EXPORTS += "HOST_EXTRACFLAGS HOSTLDFLAGS HOST_LOADLIBES"
> +OE_TERMINAL_EXPORTS += "HOST_EXTRACFLAGS HOST_LOADLIBES"
> HOST_EXTRACFLAGS = "${BUILD_CFLAGS} ${BUILD_LDFLAGS}"
> HOSTLDFLAGS = "${BUILD_LDFLAGS}"
> HOST_LOADLIBES = "-lncurses"
This effectively just reverts the previous change. The real problem is
that ncurses-native is broken. Could we figure out how/why
ncurses-native is broken and fix the real problem rather than hacking
around it please?
FWIW I've been unable to reproduce this locally :(.
Cheers,
Richard
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] cml1.bbclass: fix kernel menuconfig
2012-09-12 13:31 ` Richard Purdie
@ 2012-09-12 13:38 ` Bruce Ashfield
2012-09-12 14:21 ` Samuel Stirtzel
0 siblings, 1 reply; 5+ messages in thread
From: Bruce Ashfield @ 2012-09-12 13:38 UTC (permalink / raw)
To: Richard Purdie; +Cc: openembedded-core, paul.eggleton
On Wed, Sep 12, 2012 at 9:31 AM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> On Wed, 2012-09-12 at 15:19 +0200, Andreas Müller wrote:
>> At some host environments the menuconfig displayed wrong characters ang turned
>> unusable.
>>
>> Similar suggested in [1]
>>
>> [1] http://lists.linuxtogo.org/pipermail/openembedded-core/2012-August/027130.html
>>
>> Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
>> ---
>> meta/classes/cml1.bbclass | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/meta/classes/cml1.bbclass b/meta/classes/cml1.bbclass
>> index 67f17ad..c773684 100644
>> --- a/meta/classes/cml1.bbclass
>> +++ b/meta/classes/cml1.bbclass
>> @@ -9,7 +9,7 @@ addtask configure after do_unpack do_patch before do_compile
>>
>> inherit terminal
>>
>> -OE_TERMINAL_EXPORTS += "HOST_EXTRACFLAGS HOSTLDFLAGS HOST_LOADLIBES"
>> +OE_TERMINAL_EXPORTS += "HOST_EXTRACFLAGS HOST_LOADLIBES"
>> HOST_EXTRACFLAGS = "${BUILD_CFLAGS} ${BUILD_LDFLAGS}"
>> HOSTLDFLAGS = "${BUILD_LDFLAGS}"
>> HOST_LOADLIBES = "-lncurses"
>
> This effectively just reverts the previous change. The real problem is
> that ncurses-native is broken. Could we figure out how/why
> ncurses-native is broken and fix the real problem rather than hacking
> around it please?
>
> FWIW I've been unable to reproduce this locally :(.
I've also tried to reproduce this periodically and have never seen it where
I can debug it properly.
I'm also not disputing that this is an issue .. just one I can't get at yet
either.
Cheers,
Bruce
>
> Cheers,
>
> Richard
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
--
"Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end"
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] cml1.bbclass: fix kernel menuconfig
2012-09-12 13:38 ` Bruce Ashfield
@ 2012-09-12 14:21 ` Samuel Stirtzel
2012-09-12 14:22 ` Martin Jansa
0 siblings, 1 reply; 5+ messages in thread
From: Samuel Stirtzel @ 2012-09-12 14:21 UTC (permalink / raw)
To: Bruce Ashfield; +Cc: paul.eggleton, openembedded-core
2012/9/12 Bruce Ashfield <bruce.ashfield@gmail.com>:
> On Wed, Sep 12, 2012 at 9:31 AM, Richard Purdie
> <richard.purdie@linuxfoundation.org> wrote:
>> FWIW I've been unable to reproduce this locally :(.
>
> I've also tried to reproduce this periodically and have never seen it where
> I can debug it properly.
>
> I'm also not disputing that this is an issue .. just one I can't get at yet
> either.
It seems like this issue is only triggered on Fedora machines..
(At least there were 2 reports of this issue on Fedora)
So far I've got no problems with (K)Ubuntu machines.
But I've seen this on a Fedora 17 one too.
>
> Cheers,
>
> Bruce
>
--
Regards
Samuel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] cml1.bbclass: fix kernel menuconfig
2012-09-12 14:21 ` Samuel Stirtzel
@ 2012-09-12 14:22 ` Martin Jansa
0 siblings, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2012-09-12 14:22 UTC (permalink / raw)
To: Samuel Stirtzel; +Cc: paul.eggleton, openembedded-core
[-- Attachment #1: Type: text/plain, Size: 1089 bytes --]
On Wed, Sep 12, 2012 at 04:21:15PM +0200, Samuel Stirtzel wrote:
> 2012/9/12 Bruce Ashfield <bruce.ashfield@gmail.com>:
> > On Wed, Sep 12, 2012 at 9:31 AM, Richard Purdie
> > <richard.purdie@linuxfoundation.org> wrote:
> >> FWIW I've been unable to reproduce this locally :(.
> >
> > I've also tried to reproduce this periodically and have never seen it where
> > I can debug it properly.
> >
> > I'm also not disputing that this is an issue .. just one I can't get at yet
> > either.
>
> It seems like this issue is only triggered on Fedora machines..
> (At least there were 2 reports of this issue on Fedora)
and Gentoo
> So far I've got no problems with (K)Ubuntu machines.
> But I've seen this on a Fedora 17 one too.
>
> >
> > Cheers,
> >
> > Bruce
> >
>
> --
> Regards
> Samuel
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-09-12 14:35 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-12 13:19 [PATCH] cml1.bbclass: fix kernel menuconfig Andreas Müller
2012-09-12 13:31 ` Richard Purdie
2012-09-12 13:38 ` Bruce Ashfield
2012-09-12 14:21 ` Samuel Stirtzel
2012-09-12 14:22 ` Martin Jansa
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox