Hi Matthew, On Fri, May 22, 2015 at 3:34 PM, Matthew Karas <mkarasc...@gmail.com> wrote: > I've tried googling and searching for a while about this. > > How do I set up yocto to configure dropbear ssh? > > I'd like to prevent password access over ssh, only permitting key access.
Easiest way will be to create a .bbappend file in your layer which sets DROPBEAR_EXTRA_ARGS="-s -g" -s Disable password logins. -g Disable password logins for root. --- do_install_append() { case "${MACHINE}" in "my_special_machine" ) echo 'DROPBEAR_EXTRA_ARGS="-s -g"'> ${D}${sysconfdir}/default/dropbear;; *);; esac } --- > Thanks. Best Regards, Maxin -- _______________________________________________ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto