Did you build from meta-clanton_v0.7.5 and edit /meta-clanton_v0.7.5/yocto_build/conf/local.conf changed the following line? DISTRO ?= "clanton-full"
Debian installation I built it installed ssh and works for me.
The issue I am having is sketch and default bitbake recipes from clanton-full do not work after the copy to Debian.
I've gone back to the drawing board to learn bitbake and make my own recipes seeing value in this approach.
Your original request on this site was to get ‘apt-get install motion’ working correct?
Yocto linux appears to be a flavor of FreeBSD The FreeBSD Project (Anyone here please correct me if I am wrong with this assumption.)
If you go through this tutorial (Pimp My Pi : Build a Custom Raspberry Pi Distro with OpenEmbedded & Yocto) (I learned allot about making my own image and reusing some of Raspberry recipes and code in Galileo from this article since you are converting from ARM to Intel this might be a good read for you or anyone else that is converting from the Pi)
Also for the users trying to get RF. I bet someone could build a Pi image a tweak this to work for Galileo from source. rc-switch - Arduino library to operate low cost 315 MHz / 433 MHz remote control devices - Google Project Hosting
In theory if you build a Pi bitbake you should be able to port most of the old binaries for the Galileo. That is why Yocto is great because of building one time works on ARM and Intel processors.
From this post I learned you can install and build your own package from source
$ echo 'Example 1. How to build from source on the Galileo'
$ wget http://nodejs.org/dist/v0.10.25/node-v0.10.25.tar.gz
$ tar -xzf node-v0.10.25.tar.gz
$ cd node*
$ ./configure
$ make
$ make install
$ echo 'Example 2. How to build from source on the Galileo'
$ wget http://ftp.gnu.org/gnu/nano/nano-2.3.2.tar.gz
$ tar -xzf nano-2.3.2.tar.gz
$ cd node*
$ ./configure
$ make
$ make install
This can be painful if you don't have the correct package dependencies you can search some ports from here for research http://www5.us.freebsd.org/ports/ and get them from this link http://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/
AlexT_Intel just posted public ports repos here. Thank you Alex very much!
I am learning some great value in using Yocto the learning curve might not be a good place for the novice user to start. For a few simple packages Alex article should be a better start for many developers.
Also I would take a look at these articles as well if you go the Bitbake path.
Go to the tutorials section from - http://wiki.ros.org/IntelGalileo/How%20to%20install%20ROS%20Hydro%20on%20Intel%20Galileo
Intel Galileo initial image install - http://wiki.ros.org/IntelGalileo/ROS%20Hydro%20on%20Galileo%20-%20Initial%20Install
Hope this helps Thomas good luck!