~~NOCACHE~~ ~~NOTOC~~ {{template>en:templates:tabs_yocto_bootstrap|product_type="Embedded module"|lang="en"|mod_name="tqma8xxs"|mod_name_head="TQMa8XxS"|mod_arch="arm"|bsp_name="linux"|build_system="yocto"|build_system_head="YOCTO"|bsp_name_head="Linux"}} \\ \\ ===== Starterkit Interfaces and Functions ===== {{template>en:templates:howto:audio|audio_description="The microphone input is not supported in the current BSP version."|microphone="X19"|linein="X17"|lineout="X18"|mb_name="MB-SMARC-2"|audio_image="{{ :en:arm:tqma8xxs:linux:yocto:how_to:mbsmarc2_audio.png?nolink&400 \|}}"}} {{template>en:templates:howto:can|can_description="The MB-SMARC-2 provides the CAN interfaces CAN0 and CAN1."|dipdescription="DIP switch S4 is used to configure the CAN interfaces CAN0 and CAN1."|dip1="S4-1-1"|dip2="S4-2"|can_image="{{ :en:arm:tqma8xxs:linux:yocto:how_to:tqma8xxs_can_loopback.png?nolink&400 \|}}"}} {{template>en:templates:howto:cpu|stk_name="STKa8XxS"}} {{template>en:templates:howto:ethernet|ethernet_description="The STKa8XxS Starterkit provides two Gigabit Ethernet interfaces."|ubootdescription="In U-Boot eth0 is configured as default interface. The IP configuration can be done statically or by a DHCP server in the network."|linuxdescription="Both Ethernet interfaces are activated and configured by systemd-network. The configuration files for the interfaces are located in /lib/systemd/network/ these configuration files can be altered to customize the default interface configuration."}} {{template>en:templates:howto:gpu|}} {{template>en:templates:howto:i2c|mod_name="tqma8xxs"|mod_arch="arm"|ubooti2c="0"|linuxi2c="16"}} {{template>en:templates:howto:lvds|stk_name="STKa8XxS"|lvds_example="'' (e.g. ''setenv fdt_file imx8qxp-mb-smarc-2-lvds0-tm070jvhg33.dtb'')"}} {{template>en:templates:howto:rtc|}} {{template>en:templates:howto:spi|mb_name="MB-SMARC-2"|amountspi="one"|spi_table="\| SPI0\| /dev/spidev0.0 \|"|spi_bridges="* SPI0: bridge between X24_16 (SPI1_MISO) and X24_15 (SPI1_MOSI)"}} {{template>en:templates:howto:ssh|stk_name="STKa8XxS"}} {{template>en:templates:howto:temperature|}} {{template>en:templates:howto:usb|}} ===== SSH connection on STKa8XxS ===== Please keep in mind that the following instructions focus on simplicity, not on security. For the sake of simplicity password authentification can be used for SSH. === Setup Yocto build environment === The OpenSSH sftp server is not installed into the image by default, add the following to your local.conf to install it. IMAGE_INSTALL_append = “openssh-sftp-server” === Setup on Target === To setup a password for the default user root, execute the command **passwd root** and set your password. === Modify SSH configuration === Uncomment the following options in **/etc/ssh/sshd_config** to allow that the user root can authenticate with a password on the STKa8XxS. PermitRootLogin yes PasswordAuthentication yes \\