Issue Encountered while building yocto images

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

Issue Encountered while building yocto images

Jump to solution
240 Views
pvsnsubhash
Contributor I

Hi Team,

I was trying to build a yocto image for the LX2160ARDB Board. I am using yocto mickledore for this. I have followed the below procedure.

I have cloned all the yocto layers seperately from the respective github repositories.

After that I copied the setup env file from meta-qoriq/tools in to the working directory and ran the following command.

. setup-env -m lx2160ardb-rev2

Now when I try to make any image for example fsl-image-networking using the below command

bitbake fsl-image-networking

I get the following error

Error:

ERROR: No recipes in default available for:
/home/cdot/Desktop/NXP_CM/yocto-sdk/sources/meta-qoriq/recipes-fsl/images/fsl-image-multimedia-full.bbappend
/home/cdot/Desktop/NXP_CM/yocto-sdk/sources/meta-qoriq/recipes-fsl/packagegroups/packagegroup-fsl-gstreamer1.0.bbappend

Both the files are present in the respective paths.

Kindly help me debug the issue

 

Thanks and Regards
PVSN Subhash
0 Kudos
1 Solution
184 Views
yipingwang
NXP TechSupport
NXP TechSupport

Please refer to the following procedure. 

$: mkdir ~/bin

$: curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo

$: chmod a+x ~/bin/repo

$: PATH=${PATH}:~/bin

 

$: mkdir yocto-sdk

$: cd yocto-sdk

$: repo init -u https://github.com/nxp-qoriq/yocto-sdk -b mickledore 

$: repo sync --force-sync

 

$: . ./setup-env -m lx2160ardb-rev2

$: bitbake fsl-image-networking 

$: bitbake fsl-image-networking-full

 

View solution in original post

0 Kudos
2 Replies
103 Views
pvsnsubhash
Contributor I

Thanks for the reply. Its working fine now 

Thanks and Regards
PVSN Subhash
0 Kudos
185 Views
yipingwang
NXP TechSupport
NXP TechSupport

Please refer to the following procedure. 

$: mkdir ~/bin

$: curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo

$: chmod a+x ~/bin/repo

$: PATH=${PATH}:~/bin

 

$: mkdir yocto-sdk

$: cd yocto-sdk

$: repo init -u https://github.com/nxp-qoriq/yocto-sdk -b mickledore 

$: repo sync --force-sync

 

$: . ./setup-env -m lx2160ardb-rev2

$: bitbake fsl-image-networking 

$: bitbake fsl-image-networking-full

 

0 Kudos