Skip to content

Utilities

KonstaT edited this page Nov 4, 2023 · 3 revisions

How to include additional utilities

Raspberry Vanilla provides several utilities that can be useful for development purposes. These are not included in the build by default.

  1. Add manifest fragment:
curl -o .repo/local_manifests/manifest_utilities.xml -L https://raw.githubusercontent.com/raspberry-vanilla/android_local_manifest/android-14.0/manifest_utilities.xml
  1. Sync source code:
repo sync

Edit device/brcm/rpi4/device.mk and add the following lines to include the utilities.

# DRM modetest
PRODUCT_PACKAGES += \
    modetest
# Raspberry Pi utils
PRODUCT_PACKAGES += \
    dtmerge \
    dtoverlay \
    pinctrl \
    vcgencmd \
    vclog \
    vcmailbox
# V4L utils
PRODUCT_PACKAGES += \
    cec-ctl \
    ir-keytable \
    v4l2-ctl
Clone this wiki locally