pdf-icon

LLM630 Compute Kit Software Update

Software Update
For application installation and upgrading, use the apt package management tool to download and update functional units. For details, please refer to the following operations.

1. Preparation

  • Refer to the LLM630 Compute Kit - Config tutorial to learn how to configure network and file transfer for the LLM630 Compute Kit. Access the device terminal via ADB / UART / SSH, etc.

2. Update Software Sources

  1. Copy the following commands to add the GPG key and add the M5Stack software source information to the system's software source list.
wget -qO /etc/apt/keyrings/StackFlow.gpg https://repo.llm.m5stack.com/m5stack-apt-repo/key/StackFlow.gpg
echo 'deb [arch=arm64 signed-by=/etc/apt/keyrings/StackFlow.gpg] https://repo.llm.m5stack.com/m5stack-apt-repo jammy ax630c' > /etc/apt/sources.list.d/StackFlow.list
  1. Run the apt update command to update the package index.
apt update

3. Install Packages

  1. Check the list of available llm deb packages. Packages named in the format llm-model-name are model packages, while those named llm-name are functional unit packages.
apt list | grep llm
  1. Use the apt command to install packages as needed, for example, install the llm-whisper package. Note: Models occupy significant storage space; it is recommended to install them as needed.
apt install llm-whisper

For detailed package information, visit the StackFlow Github package list. It includes model configuration JSON files showing the model source (homepage), functions, and data formats.

4. Dependency package

lib-llm

  • provide the environment required for software operation.
apt install lib-llm

llm-sys

  • Provides basic functions of StackFlow.
apt install llm-sys

5. Feature module

llm-audio

  • Provide unified sound card management.
apt install llm-audio

llm-camera

  • Provide unified camera management.
apt install llm-camera

llm-kws

  • Provides keyword spotting functionality.
apt install llm-kws

llm-vad

  • Provides voice activity detection functionality.
apt install llm-vad

llm-asr

  • Provides automatic speech recognition functionality.
apt install llm-asr

llm-whisper

  • Provides speech to text functionality.
apt install llm-whisper

llm-llm

  • Provides Text Generation functionality.
apt install llm-llm

llm-vlm

  • Provides Multimodal Text Generation functionality.
apt install llm-vlm

llm-tts

  • Provides Text-to-Speech functionality.
apt install llm-tts

llm-melotts

  • Provides Text-to-Speech functionality.
apt install llm-melotts
On This Page