* configuring kernel for imx233
@ 2014-07-10 9:16 Gnichi Mohamed
2014-07-10 13:00 ` Trevor Woerner
2014-07-11 17:01 ` Otavio Salvador
0 siblings, 2 replies; 9+ messages in thread
From: Gnichi Mohamed @ 2014-07-10 9:16 UTC (permalink / raw)
To: meta-freescale
[-- Attachment #1: Type: text/plain, Size: 695 bytes --]
Hello guys
I am new to this world and i am enjoying it for the past week.
I have the imx233 olinuxino maxi and decider to make a very tiny system for
it so i choose yocto. The other reason is that i am familiar with gentoo
and i thought maybe my experience with gentoo could help.
Well i am on my gentoo and i successfully built core-image-minimal with
some additional packages and i want to configure and recompile the kernel.
so i did
bitbake -c menuconfig linux-fslc
but some exception about python and other things that i couldn't follow.
Here is the exceptions http://pastebin.com/CBcLX1j1
I have Gentoo x86_64,python2.7
Any kind of suggestions are appreciated
Cordially
[-- Attachment #2: Type: text/html, Size: 899 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: configuring kernel for imx233
2014-07-10 9:16 configuring kernel for imx233 Gnichi Mohamed
@ 2014-07-10 13:00 ` Trevor Woerner
2014-07-10 13:05 ` Gnichi Mohamed
2014-07-11 17:01 ` Otavio Salvador
1 sibling, 1 reply; 9+ messages in thread
From: Trevor Woerner @ 2014-07-10 13:00 UTC (permalink / raw)
To: Gnichi Mohamed, meta-freescale
I gave this a try on my machine (openSuSE 13.1) and it appears to work
fine. Can you provide us with more information regarding the procedure
you followed? What commands you typed for your initial build? What your
build information is? What your local.conf looks like?
In my case my conf/local.conf is:
BB_NUMBER_THREADS = '6'
PARALLEL_MAKE = '-j 6'
DL_DIR ?= "/home/trevor/devel/Downloads"
ACCEPT_FSL_EULA = "1"
MACHINE ??= 'imx233-olinuxino-maxi'
MYBUILDBASE = "/home/trevor/build/yocto/fsl/repo-master/${MACHINE}"
TMPDIR = "${MYBUILDBASE}/tmp"
SSTATE_DIR = "${MYBUILDBASE}/sstate-cache"
DISTRO ?= 'poky'
PACKAGE_CLASSES ?= "package_ipk"
EXTRA_IMAGE_FEATURES = "debug-tweaks"
USER_CLASSES ?= "buildstats image-mklibs image-prelink"
PATCHRESOLVE = "noop"
BB_DISKMON_DIRS = "\
STOPTASKS,${TMPDIR},1G,100K \
STOPTASKS,${DL_DIR},1G,100K \
STOPTASKS,${SSTATE_DIR},1G,100K \
ABORT,${TMPDIR},100M,1K \
ABORT,${DL_DIR},100M,1K \
ABORT,${SSTATE_DIR},100M,1K"
PACKAGECONFIG_pn-qemu-native = "sdl"
PACKAGECONFIG_pn-nativesdk-qemu = "sdl"
ASSUME_PROVIDED += "libsdl-native"
CONF_VERSION = "1"
INHERIT += "buildhistory"
BUILDHISTORY_COMMIT = "1"
and my build information (based on "master") is:
Build Configuration:
BB_VERSION = "1.23.1"
BUILD_SYS = "x86_64-linux"
NATIVELSBSTRING = "openSUSE-project-13.1"
TARGET_SYS = "arm-poky-linux-gnueabi"
MACHINE = "imx233-olinuxino-maxi"
DISTRO = "poky"
DISTRO_VERSION = "1.6+snapshot-20140710"
TUNE_FEATURES = "arm armv5 thumb dsp"
TARGET_FPU = "soft"
meta
meta-yocto =
"(detachedfrom6879c3c):6879c3c903ec7d08cf0240281c83d85b4a42b6db"
meta-oe =
"(detachedfrom87bbe91):87bbe91686e1bbc9036aacd924162f17db214aad"
meta-fsl-arm =
"(detachedfrom31a0928):31a0928cbbe707548712ec3612cdc727a3775501"
meta-fsl-arm-extra =
"(detachedfrom456c270):456c27085a70bb1385a4c2e28ba80ac74d6f533e"
meta-fsl-demos =
"(detachedfrome60ea24):e60ea240aecbf8fc69c4d18ab6d1361376372c6e"
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: configuring kernel for imx233
2014-07-10 13:00 ` Trevor Woerner
@ 2014-07-10 13:05 ` Gnichi Mohamed
2014-07-10 14:48 ` Trevor Woerner
0 siblings, 1 reply; 9+ messages in thread
From: Gnichi Mohamed @ 2014-07-10 13:05 UTC (permalink / raw)
To: Trevor Woerner; +Cc: meta-freescale
[-- Attachment #1: Type: text/plain, Size: 2688 bytes --]
Hi trevor
I resolved this issue by redirecting the terminal to xterm instead of
konsole or yakuake
i added this line to my local.conf
OE_TERMINAL = "xterm"
And the menuconfig pops then in a seperate xterm window.
Thank you
2014-07-10 14:00 GMT+01:00 Trevor Woerner <trevor.woerner@linaro.org>:
> I gave this a try on my machine (openSuSE 13.1) and it appears to work
> fine. Can you provide us with more information regarding the procedure
> you followed? What commands you typed for your initial build? What your
> build information is? What your local.conf looks like?
>
> In my case my conf/local.conf is:
>
> BB_NUMBER_THREADS = '6'
> PARALLEL_MAKE = '-j 6'
> DL_DIR ?= "/home/trevor/devel/Downloads"
> ACCEPT_FSL_EULA = "1"
>
> MACHINE ??= 'imx233-olinuxino-maxi'
> MYBUILDBASE = "/home/trevor/build/yocto/fsl/repo-master/${MACHINE}"
> TMPDIR = "${MYBUILDBASE}/tmp"
> SSTATE_DIR = "${MYBUILDBASE}/sstate-cache"
>
> DISTRO ?= 'poky'
> PACKAGE_CLASSES ?= "package_ipk"
> EXTRA_IMAGE_FEATURES = "debug-tweaks"
> USER_CLASSES ?= "buildstats image-mklibs image-prelink"
> PATCHRESOLVE = "noop"
> BB_DISKMON_DIRS = "\
> STOPTASKS,${TMPDIR},1G,100K \
> STOPTASKS,${DL_DIR},1G,100K \
> STOPTASKS,${SSTATE_DIR},1G,100K \
> ABORT,${TMPDIR},100M,1K \
> ABORT,${DL_DIR},100M,1K \
> ABORT,${SSTATE_DIR},100M,1K"
> PACKAGECONFIG_pn-qemu-native = "sdl"
> PACKAGECONFIG_pn-nativesdk-qemu = "sdl"
> ASSUME_PROVIDED += "libsdl-native"
> CONF_VERSION = "1"
>
> INHERIT += "buildhistory"
> BUILDHISTORY_COMMIT = "1"
>
>
> and my build information (based on "master") is:
>
> Build Configuration:
> BB_VERSION = "1.23.1"
> BUILD_SYS = "x86_64-linux"
> NATIVELSBSTRING = "openSUSE-project-13.1"
> TARGET_SYS = "arm-poky-linux-gnueabi"
> MACHINE = "imx233-olinuxino-maxi"
> DISTRO = "poky"
> DISTRO_VERSION = "1.6+snapshot-20140710"
> TUNE_FEATURES = "arm armv5 thumb dsp"
> TARGET_FPU = "soft"
> meta
> meta-yocto =
> "(detachedfrom6879c3c):6879c3c903ec7d08cf0240281c83d85b4a42b6db"
> meta-oe =
> "(detachedfrom87bbe91):87bbe91686e1bbc9036aacd924162f17db214aad"
> meta-fsl-arm =
> "(detachedfrom31a0928):31a0928cbbe707548712ec3612cdc727a3775501"
> meta-fsl-arm-extra =
> "(detachedfrom456c270):456c27085a70bb1385a4c2e28ba80ac74d6f533e"
> meta-fsl-demos =
> "(detachedfrome60ea24):e60ea240aecbf8fc69c4d18ab6d1361376372c6e"
>
>
[-- Attachment #2: Type: text/html, Size: 3710 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: configuring kernel for imx233
2014-07-10 13:05 ` Gnichi Mohamed
@ 2014-07-10 14:48 ` Trevor Woerner
2014-07-10 17:34 ` Gnichi Mohamed
0 siblings, 1 reply; 9+ messages in thread
From: Trevor Woerner @ 2014-07-10 14:48 UTC (permalink / raw)
To: Gnichi Mohamed; +Cc: meta-freescale
On 07/10/14 09:05, Gnichi Mohamed wrote:
> I resolved this issue by redirecting the terminal to xterm instead of
> konsole or yakuake
> i added this line to my local.conf
> OE_TERMINAL = "xterm"
That's great to hear. Would you like to update your email on the Yocto
mailing list too so that others can benefit from your solution?
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-freescale] configuring kernel for imx233
2014-07-10 14:48 ` Trevor Woerner
@ 2014-07-10 17:34 ` Gnichi Mohamed
0 siblings, 0 replies; 9+ messages in thread
From: Gnichi Mohamed @ 2014-07-10 17:34 UTC (permalink / raw)
To: Trevor Woerner, yocto; +Cc: meta-freescale
[-- Attachment #1: Type: text/plain, Size: 492 bytes --]
Hi Guys,
Thank you Trevor for your interest
Regards
2014-07-10 15:48 GMT+01:00 Trevor Woerner <trevor.woerner@linaro.org>:
> On 07/10/14 09:05, Gnichi Mohamed wrote:
> > I resolved this issue by redirecting the terminal to xterm instead of
> > konsole or yakuake
> > i added this line to my local.conf
> > OE_TERMINAL = "xterm"
>
> That's great to hear. Would you like to update your email on the Yocto
> mailing list too so that others can benefit from your solution?
>
[-- Attachment #2: Type: text/html, Size: 895 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: configuring kernel for imx233
@ 2014-07-10 17:34 ` Gnichi Mohamed
0 siblings, 0 replies; 9+ messages in thread
From: Gnichi Mohamed @ 2014-07-10 17:34 UTC (permalink / raw)
To: Trevor Woerner, yocto; +Cc: meta-freescale
[-- Attachment #1: Type: text/plain, Size: 492 bytes --]
Hi Guys,
Thank you Trevor for your interest
Regards
2014-07-10 15:48 GMT+01:00 Trevor Woerner <trevor.woerner@linaro.org>:
> On 07/10/14 09:05, Gnichi Mohamed wrote:
> > I resolved this issue by redirecting the terminal to xterm instead of
> > konsole or yakuake
> > i added this line to my local.conf
> > OE_TERMINAL = "xterm"
>
> That's great to hear. Would you like to update your email on the Yocto
> mailing list too so that others can benefit from your solution?
>
[-- Attachment #2: Type: text/html, Size: 895 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: configuring kernel for imx233
2014-07-10 9:16 configuring kernel for imx233 Gnichi Mohamed
2014-07-10 13:00 ` Trevor Woerner
@ 2014-07-11 17:01 ` Otavio Salvador
2014-07-14 10:58 ` Gnichi Mohamed
1 sibling, 1 reply; 9+ messages in thread
From: Otavio Salvador @ 2014-07-11 17:01 UTC (permalink / raw)
To: Gnichi Mohamed; +Cc: meta-freescale@yoctoproject.org
Hello Gnichi,
On Thu, Jul 10, 2014 at 6:16 AM, Gnichi Mohamed <gnichimed@gmail.com> wrote:
> I am new to this world and i am enjoying it for the past week.
> I have the imx233 olinuxino maxi and decider to make a very tiny system for
> it so i choose yocto. The other reason is that i am familiar with gentoo and
> i thought maybe my experience with gentoo could help.
> Well i am on my gentoo and i successfully built core-image-minimal with some
> additional packages and i want to configure and recompile the kernel. so i
> did
> bitbake -c menuconfig linux-fslc
> but some exception about python and other things that i couldn't follow.
> Here is the exceptions http://pastebin.com/CBcLX1j1
> I have Gentoo x86_64,python2.7
Besides the information Trevor has asked, in his reply, I'd like to
bring up the point that Yocto Project is not /tested/ in Gentoo.
This does not mean it won't work. I use Yocto Project in Debian Sid
(which is also not supported) and it works fine (most of time).
Back to Gentoo; it seems there is a doc[1] where people document some
pitfalls they overcome when using Gentoo as a host. It may be worth a
look and check if all is covered.
1. http://wiki.gentoo.org/wiki/Yocto
Another alternative is to try to use the BuildTools SDK[2] which is
offered as a workaround for non-supported host systems.
2. https://www.yoctoproject.org/download/yocto-project-16-buildtools-sdk
I hope it helps,
--
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: configuring kernel for imx233
2014-07-11 17:01 ` Otavio Salvador
@ 2014-07-14 10:58 ` Gnichi Mohamed
2014-07-14 14:06 ` Otavio Salvador
0 siblings, 1 reply; 9+ messages in thread
From: Gnichi Mohamed @ 2014-07-14 10:58 UTC (permalink / raw)
To: Otavio Salvador; +Cc: meta-freescale@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 2146 bytes --]
Hello Otavio
Thanks for the reply!
I have a question, maybe it will sound silly :)
I want to downgrade the 3.14 kernel i am using on my minimal installation
core-image-minimal to 3.12 versions which worked for me before.
Can i specify the kernel version or any other package version?
How to do it?
Cordially
Gnichi M
2014-07-11 18:01 GMT+01:00 Otavio Salvador <otavio@ossystems.com.br>:
> Hello Gnichi,
>
> On Thu, Jul 10, 2014 at 6:16 AM, Gnichi Mohamed <gnichimed@gmail.com>
> wrote:
> > I am new to this world and i am enjoying it for the past week.
> > I have the imx233 olinuxino maxi and decider to make a very tiny system
> for
> > it so i choose yocto. The other reason is that i am familiar with gentoo
> and
> > i thought maybe my experience with gentoo could help.
> > Well i am on my gentoo and i successfully built core-image-minimal with
> some
> > additional packages and i want to configure and recompile the kernel. so
> i
> > did
> > bitbake -c menuconfig linux-fslc
> > but some exception about python and other things that i couldn't follow.
> > Here is the exceptions http://pastebin.com/CBcLX1j1
> > I have Gentoo x86_64,python2.7
>
> Besides the information Trevor has asked, in his reply, I'd like to
> bring up the point that Yocto Project is not /tested/ in Gentoo.
>
> This does not mean it won't work. I use Yocto Project in Debian Sid
> (which is also not supported) and it works fine (most of time).
>
> Back to Gentoo; it seems there is a doc[1] where people document some
> pitfalls they overcome when using Gentoo as a host. It may be worth a
> look and check if all is covered.
>
> 1. http://wiki.gentoo.org/wiki/Yocto
>
> Another alternative is to try to use the BuildTools SDK[2] which is
> offered as a workaround for non-supported host systems.
>
> 2. https://www.yoctoproject.org/download/yocto-project-16-buildtools-sdk
>
> I hope it helps,
>
> --
> Otavio Salvador O.S. Systems
> http://www.ossystems.com.br http://code.ossystems.com.br
> Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
>
[-- Attachment #2: Type: text/html, Size: 3286 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: configuring kernel for imx233
2014-07-14 10:58 ` Gnichi Mohamed
@ 2014-07-14 14:06 ` Otavio Salvador
0 siblings, 0 replies; 9+ messages in thread
From: Otavio Salvador @ 2014-07-14 14:06 UTC (permalink / raw)
To: Gnichi Mohamed; +Cc: meta-freescale@yoctoproject.org
On Mon, Jul 14, 2014 at 7:58 AM, Gnichi Mohamed <gnichimed@gmail.com> wrote:
...
> I want to downgrade the 3.14 kernel i am using on my minimal installation
> core-image-minimal to 3.12 versions which worked for me before.
> Can i specify the kernel version or any other package version?
> How to do it?
You can add a linux-gnichi recipe for you and use whatever fits your
needs. Then make 'your BSP' layer and make your machine variant to use
the provider.
--
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2014-07-14 14:06 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-10 9:16 configuring kernel for imx233 Gnichi Mohamed
2014-07-10 13:00 ` Trevor Woerner
2014-07-10 13:05 ` Gnichi Mohamed
2014-07-10 14:48 ` Trevor Woerner
2014-07-10 17:34 ` [meta-freescale] " Gnichi Mohamed
2014-07-10 17:34 ` Gnichi Mohamed
2014-07-11 17:01 ` Otavio Salvador
2014-07-14 10:58 ` Gnichi Mohamed
2014-07-14 14:06 ` Otavio Salvador
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.