On Mon, 22 May 2000 09:09:03 -0500,
"Richard A. Smith" <[EMAIL PROTECTED]> wrote:
>What's the accepted manner of transfering the compiled modules from the
>system with the compiler to the target system?
INSTALL_MOD_PATH=/var/tmp make modules_install && \
(cd /var/tmp && \
tar czvf modules.tar.gz lib && \
rm -rf lib)
If you like rsync and ssh
INSTALL_MOD_PATH=/var/tmp make modules_install && \
rsync -avtH -e ssh /var/tmp/lib target.machine:/ &&
rm -rf /var/tmp/lib
--
To unsubscribe from this list, send a message to [EMAIL PROTECTED]
with the command "unsubscribe linux-embedded" in the message body.
For more information, see <http://waste.org/mail/linux-embedded>.