TexasInstruments / ti-bdebstrap

Build custom bootstrap images using bdebstrap
Other
9 stars 10 forks source link

initial ssh? without monitor #26

Closed saiworksandbox closed 7 months ago

saiworksandbox commented 10 months ago

Hello I have a TMDS64EVM board and this has no hdmi output. How do i setup the initial ssh connection from my host device? Thank you for your time

sskartheekadivi commented 10 months ago

Hi @saiworksandbox,

You can update PermitRootLogin and PermitEmptyPasswords in /etc/ssh/sshd_config on the target as below to enable ssh login to root user without a password.

PermitRootLogin yes
PermitEmptyPasswords yes

I'll probably add a custom-hook to enable this by default in the rootfs since this is used by everyone for evaluation and development.

Thanks, S S Kartheek Adivi

sskartheekadivi commented 7 months ago

This is fixed with the custom-hooks added in the new bdebstrap configs.

Feel free to reopen if you still see the issue.