Open main menu

DAVE Developer's Wiki β

Changes

Deploying Embedded Linux Systems

14 bytes added, 12:41, 7 August 2012
Remote upgrading
Dropbear is a light SSH suite, with client and server applications. It could be built as a multibinary application, like the famous Busybox: a single executable that can be used for SSH server, SSH client, scp, etc.
For example, to build Dropbear for the Zefeer platform, the user must:
1. * Set the environment variables:i. *# export PATH=/usr/local/eldk41arm/usr/bin:$PATHii. *# export ARCH=armiii. *# export CROSS_COMPILE=arm-linux2. * Run the configuration tool:<pre>./configure –build=ARCH --host=CROSS_COMPILE</pre>3. * Run the make tool<pre>make PROGRAMS=”dropbear dbclient scp” MULTI=1 STATIC=1</pr>
More information are available in README, INSTALL and MULTI files included in the distribution; Dropbear sources are available here: http://matt.ucc.asn.au/dropbear/dropbear.html.
 
== Local upgrading ==