--
--
OpenEmbedded/Yocto Freescale ARM BSP - meta-f...@googlegroups.com
Source code of the BSP: http://github.com/Freescale/meta-fsl-arm
To cancel your subscription in this group send an e-mail to meta-fsl-arm...@googlegroups.com
For more options go to http://groups.google.com/group/meta-fsl-arm
On Mon, Jul 2, 2012 at 7:49 PM, Flavio Castro Alves Filho
<flavio...@gmail.com> wrote:
...
> /home/flavio/yocto/poky/meta-fsl-arm/recipes-qt/qt4/qt4-x11-free_4.7.4.bbappend
>
> /home/flavio/yocto/poky/meta-fsl-arm/recipes-qt/qt4/qt4-embedded_4.7.4.bbappend
> ERROR: Command execution failed: Exited with 1
>
> Summary: There were 3 WARNING messages shown.
> Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
>
> When I search for the original file (qt4-embedded_4.7.4.bb), I could not
> find this file. I can find the file qt4-embedded_4.8.1.bb. I believe that
> the qt library has been updated.
>
> I would like to ask which is the correct setup for meta-fsl-arm in order to
> build correctly the imx28evk project. Should I use an older version of
> Yocto?
As Fabio told you, we do not yet support Yocto's master branch but
denzil; please checkout denzil branches for OE/Poky and meta-oe and it
will work fine.
mkdir -p ~/oe-core/freescale-arm cd ~/oe-core/freescale-arm git clone git://git.yoctoproject.org/poky -b denzil git clone git://git.openembedded.org/meta-openembedded -b denzil git clone git://git://github.com/Freescale/meta-fsl-arm.git -b denzil cd poky
conf/bblayers.conf
:BBLAYERS ?= " \ /home/craigm/oe-core/freescale-arm/poky/meta \ /home/craigm/oe-core/freescale-arm/poky/meta-yocto \ /home/craigm/oe-core/freescale-arm/meta-openembedded/meta-oe \ /home/craigm/oe-core/freescale-arm/meta-fsl-arm \ "
conf/local.conf
:
... BB_NUMBER_THREADS = "4" ... PARALLEL_MAKE = "-j 4" ... MACHINE ?= "imx28evk" ... DL_DIR ?= "/home/craigm/oe-downloads"
DL_DIR
as shown, because I didn't want to re-download
everything again, but rather reuse the downloads from my previous
OpenEmbedded-Core attempts. I moved the download directory from one of
my previous OpenEmbedded-Core attempts to /home/craigm/oe-downloads
.
source oe-init-build-env
bitbake core-image-minimal
sudo dd if=tmp/deploy/images/core-image-minimal-imx28evk.sdcard of=/dev/sdc
Then I edit inconf/bblayers.conf
:
BBLAYERS ?= " \ /home/craigm/oe-core/freescale-arm/poky/meta \ /home/craigm/oe-core/freescale-arm/poky/meta-yocto \ /home/craigm/oe-core/freescale-arm/meta-openembedded/meta-oe \ /home/craigm/oe-core/freescale-arm/meta-fsl-arm \ "
Then I editconf/local.conf
:... BB_NUMBER_THREADS = "4" ... PARALLEL_MAKE = "-j 4" ... MACHINE ?= "imx28evk" ... DL_DIR ?= "/home/craigm/oe-downloads"
I setDL_DIR
as shown, because I didn't want to re-download everything again, but rather reuse the downloads from my previous OpenEmbedded-Core attempts. I moved the download directory from one of my previous OpenEmbedded-Core attempts to/home/craigm/oe-downloads
.
Then set up for a build:source oe-init-build-env
Then build:bitbake core-image-minimal
Build succeeded. Then write to 4 GB SD card (~30 mins):
sudo dd if=tmp/deploy/images/core-image-minimal-imx28evk.sdcard of=/dev/sdc
Then boot in the board with the SD card in SD slot 0. But it doesn't work. It gets as far as "Uncompressing Linux... done, booting the kernel", but no further. Am I missing something?
--
--
OpenEmbedded/Yocto Freescale ARM BSP - meta-f...@googlegroups.com
Source code of the BSP: http://github.com/Freescale/meta-fsl-arm
To cancel your subscription in this group send an e-mail to meta-fsl-arm...@googlegroups.com
For more options go to http://groups.google.com/group/meta-fsl-arm
Hello,2012/9/3 cmcqueen1975 <google...@craig.mcqueen.id.au>
I was previously trying to build with OpenEmbedded-Core for imx28evk, but without success. Now I try Yocto. I did the following:mkdir -p ~/oe-core/freescale-arm cd ~/oe-core/freescale-arm git clone git://git.yoctoproject.org/poky -b denzil git clone git://git.openembedded.org/meta-openembedded -b denzil git clone git://git://github.com/Freescale/meta-fsl-arm.git -b denzil cd poky
I'm not a git expert, but I perform a different approach here:git checkout -b local/origin/denzil remotes/origin/denzilcd ..git clone git://git.openembedded.org/meta-openembedded
cd meta-openembeddedgit checkout -b local/origin/denzil remotes/origin/denzilcd ..git clone git://git://github.com/Freescale/meta-fsl-arm.git
cd meta-fsl-armgit checkout -b local/origin/denzil remotes/origin/denzilcd ..And continue your procedure. At least for me it is working very well ... and I could deploy correctly the image from sdcard.