1

I am working on building yocto for banana pro board and using Jethro 2.0 version.I modified meta-sunxi bsp according to banana pro.But when I add meta-oe layer to project,I get following error

ParseError at ~/yocto/poky/meta-openembedded/meta-oe/recipes-connectivity/networkmanager/networkmanager_1.0.10.bb:12: Could not inherit file classes/bash-completion.bbclass

What is my mistake?Why am I getting this error?

overlord
  • 489
  • 1
  • 7
  • 20

1 Answers1

2

You're using meta-oe from git master, but oe-core Jethro. Checkout the jethro branch of meta-oe.

Ross Burton
  • 3,516
  • 13
  • 12
  • Thanks for your reply.It working but I got following error in compile time: "user requested feature sdl configure was not able to find it. install sdl devel" – overlord Mar 04 '16 at 15:13
  • 1
    You need to do what it says: install the SDL development packages on your distro, or disable SDL in qemu (see your local.conf). – Ross Burton Mar 04 '16 at 15:56
  • How can i install them? I added all recipe about sdl but I got same error. – overlord Mar 04 '16 at 16:02
  • 1
    Is the sdl-dev package for your host, ie outside of the bitbake environment. Just run apt-get out whatever your distro uses. – Anders Mar 05 '16 at 06:51
  • better you can comment the sdl line in build/conf/local.conf – yoctotutor.com Nov 28 '17 at 09:54