Skip to content

OVOSHatchery/ovos_debos_dev_edition

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

80 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OVOS devices

This repo contains debos recipes for building Open Voice OS development installation images.

Available recipes

  • ovos-dev-edition-rpi4.yml: Open Voice OS image based on Ubuntu 20.04. This aims to be a development edition cutting edge build aimed at developers.

Build instructions

This will detail the build instructions using the debos docker, if you wish instructions for running debos natively can be found in the official readme

Fetch the debos docker container

docker pull godebos/debos

The docker needs some special access so the docker commandline becomes

docker run --rm --device /dev/kvm --user $(id -u) \
           --group-add=$(getent group kvm | cut -d : -f 3) \
           --workdir /recipes \
           --mount "type=bind,source=$(pwd),destination=/recipes" \
           --security-opt label=disable godebos/debos \
           -e ROOT_DEV:/dev/sda2 \
           RECIPE \
           -m 7450M

Where:

  • /dev/sda2 defines the root device, in this case booting from USB
  • RECIPE is one of the listed recipes above (ex mycroft-mark-2-rpi4-ubuntu.yml)
  • -m flag defines memory limit allocated to the Docker container

About

Debos build files for Openvoice OS developer edition

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Shell 92.6%
  • Python 4.6%
  • HTML 1.5%
  • JavaScript 1.3%