Here are simple instructions for getting started building the long-term support releases of Yocto (kirkstone) and ROS 2 (humble). Documentation for kas can be found at https://kas.readthedocs.io/en/latest/
To create a Python virtual environment to install kas run these commands:
python3 -m venv venv
source venv/bin/activate
pip3 install kas
After you have sourced the environment where kas is installed you may get the kas configuration by cloning the build branch of meta-ros:
git clone -b build https://github.com/ros/meta-ros
Create a new project directory wherever you want and set the KAS_WORK_DIR environment variable to point to it. Then run kas with the configuration file for Yocto Kirkstone release and ROS 2 Humble distribution for the Raspberry Pi 4.
mkdir $PROJECT_DIR
KAS_WORK_DIR=$PROJECT_DIR
kas build meta-ros/kas/oeros-kirkstone-humble-raspberrypi4-64.yml
This should complete successfully and produce an image you can write to the sdcard.
build/tmp-glibc/deploy/images/raspberrypi4-64/ros-image-core-humble-raspberrypi4-64.rootfs.wic.bz2
If using Balena Etcher, you may provide it with this file directly.
If using dd, you must first decompress the bzip2 file.
If using bmaptool, you may follow the instructions here: https://docs.yoctoproject.org/dev/dev-manual/bmaptool.html
Since we have already produced the wic file you may use the following example with the last 2 arguments replaced with the path to the wic file and to the SD card you wish to write:
oe-run-native bmaptool-native bmaptool copy <build-directory/tmp/deploy/images/machine/image.wic> </dev/sdX>