saleh usman wrote: > Hello > > I am new to openembedded and I am following Getting started page of > openembedded to work with it.I am facing problem in Building Software section > and bitbake command is not working. > I've edited the local configuration file and also directory where I've > downloaded openembedded contains bitabake and build directory. > > > It seems like this > > [r...@localhost build]# bitbake nano > bash: bitbake: command not found > [r...@localhost build]# > > Plz tell me where might be the problem. > > Regards > Saleh Usman > Hi the problem are that bash cant find the bitbake executable in the PATH. You need to setup the environment by running:
export PATH=/stuff/bitbake/bin:$PATH The PATH environment variable are used by bash, (the program that displays your command line), to find where executables to run are located on your system. By exporting PATH to include the bitbake/bin dir makes the bitbake command available. You probably also need to set the BBPATH variable as well so that bitbake can find its configuration when run. export BBPATH=/stuff/build:/stuff/openembedded Cheers Xerxes _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
