OpenEmbedded i.MX28EVK

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

OpenEmbedded i.MX28EVK

2,426 Views
tcmichals
Contributor III

Is there documentation to build OE for the EVK?  Does OE support the iMX28EVK?

Labels (1)
0 Kudos
Reply
8 Replies

1,557 Views
tcmichals
Contributor III

This is the top level, meta-fsl-arm is under this project.  Just do the repo (it is goggle tool to get multiple git projects in sync), and look at the directories, also look at default.xml, this is what repo uses to drive and sync

<?xml version="1.0" encoding="UTF-8"?>
<manifest>
  <remote fetch="git://git.yoctoproject.org" name="yocto"/>
  <remote fetch="git://github.com/Freescale" name="freescale"/>
  <remote fetch="git://git.openembedded.org" name="oe"/>
  <default remote="freescale" revision="master" sync-j="4"/>
  <project name="poky" path="sources/poky" remote="yocto" revision="master"/>
  <project remote="oe" revision="master" name="meta-openembedded" path="sources/meta-openembedded"/>
  <project name="fsl-community-bsp-base" path="sources/base">
<copyfile dest="README" src="README"/>
<copyfile dest="setup-environment" src="setup-environment"/>
  </project>
  <project name="meta-fsl-arm" path="sources/meta-fsl-arm"/>
  <project name="meta-fsl-arm-extra" path="sources/meta-fsl-arm-extra"/>
  <project name="meta-fsl-demos" path="sources/meta-fsl-demos"/>
</manifest>
 
0 Kudos
Reply

1,557 Views
CraigMcQueen
Contributor III

Thanks for the example. Now I'm more confused, because I've never heard of that https://github.com/Freescale/fsl-community-bsp-platform before. I thought it should be possible to use meta-fsl-arm plus OpenEmbedded-Core, or maybe Yocto.

Where does that fsl-community-bsp-platform come from, and how does it relate to meta-fsl-arm?

0 Kudos
Reply

1,557 Views
tcmichals
Contributor III

OK it built... here is the script I used..

This is in a file... make sure there is not dir called fsl-community-bsp

curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > repo
chmod a+x repo
mkdir fsl-community-bsp
cd fsl-community-bsp
../repo init -u https://github.com/Freescale/fsl-community-bsp-platform -b denzil
../repo sync
MACHINE=imx28evk . ./setup-environment build
bitbake -v core-image-minimal 2>&1 | tee output-bitbake.txt

0 Kudos
Reply

1,557 Views
tcmichals
Contributor III

Yes, it was working some time ago.. I can rebuild and try tonight.. At this time I'm working with Omilux-Micro (https://www.olimex.com/dev/imx233-olinuxino-micro.html).  

 OK found my script... so, see if works.. post back in a couple of hours..

0 Kudos
Reply

1,557 Views
CraigMcQueen
Contributor III

Tim Michals said:

OK, well I'll give it a try.. maybe even give a tutorial once I get something working..  Thank you

Have you succeeded with this? I've been trying for several days to build and boot a basic OpenEmbedded-Core for imx28evk, but so far without success. I've posted onto the meta-fsl-arm Google Group and so far haven't achieved success. I've found there is not much documentation for OpenEmbedded-Core on i.MX28.

0 Kudos
Reply

1,557 Views
tcmichals
Contributor III

OK, well I'll give it a try.. maybe even give a tutorial once I get something working..  Thank you

0 Kudos
Reply

1,557 Views
RogerioNunes
NXP Employee
NXP Employee

There is an active community developing support for Freescale boards at:

https://github.com/Freescale/meta-fsl-arm

 

The idea is to merge https://www.gitorious.org/schnitzeltony-oe-meta/meta-freescale into this new project.

 

In terms of documentation, there is nothing specific to this layer, but you can join the maling list for help.

Here is the README file of the project:

 

OpenEmbedded/Yocto BSP layer for Freescale's ARM platforms
========================================================== 
This layer provides support for Freescale's ARM platforms for use with OpenEmbedded and/or Yocto.
This layer depends on:
URI: git://git.openembedded.org/openembedded-core
branch: master revision: HEAD
 
Contributing
------------
 
To contribute to this layer you should the patches for review to the mailing list.
Mailing list: http://groups.google.com/group/meta-fsl-arm
Source code: https://github.com/Freescale/meta-fsl-arm 
0 Kudos
Reply

1,557 Views
DennyvanLeersum
Contributor II

OE certainly supports building for the imx28evk. On the target of the link below I found the recipes we used to build for the evk.

https://www.gitorious.org/schnitzeltony-oe-meta/meta-freescale

For as far as I know, and I searched quite a bit a few months ago. there is no specific documentation targeted at building with OE for the imx28evk. General documentation for OE and derived projects apply just as well though.

Hope this helps,

Denny

0 Kudos
Reply