From rkit
Yocto λΉλ μμ€ν κ°μ΄λ. λ μνΌ μμ±, λ μ΄μ΄ κ΄λ¦¬, μ΄λ―Έμ§ 컀μ€ν°λ§μ΄μ§. Triggers: Yocto, bitbake, recipe, layer, meta-imx, meta-freescale
npx claudepluginhub solitasroh/rkit --plugin rkitThis skill is limited to using the following tools:
```bash
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
source oe-init-build-env build
# Edit build/conf/local.conf:
# MACHINE ??= "imx6qsabresd"
# DISTRO ?= "poky"
# Edit build/conf/bblayers.conf:
# Add meta-freescale and/or meta-imx layers
SUMMARY = "My application"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=..."
SRC_URI = "file://myapp.c"
S = "${WORKDIR}"
do_compile() { ${CC} ${CFLAGS} ${LDFLAGS} -o myapp myapp.c }
do_install() { install -d ${D}${bindir}; install -m 0755 myapp ${D}${bindir}/ }
| BSP Version | Image Name |
|---|---|
| Latest (Scarthgap) | imx-image-full, imx-image-multimedia |
| Legacy | fsl-image-gui (deprecated) |
| Minimal | core-image-minimal |
Yocto official support ended (Kirkstone+). Use Buildroot instead:
make freescale_imx28evk_defconfig
make -j$(nproc)