Skip to content

Instantly share code, notes, and snippets.

@technic
Created January 31, 2019 14:26
Show Gist options
  • Save technic/0755c9dd51c253b6f920fcf6f3a70118 to your computer and use it in GitHub Desktop.
Save technic/0755c9dd51c253b6f920fcf6f3a70118 to your computer and use it in GitHub Desktop.
for yocto oe
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# Based on Ubuntu 16.04
config.vm.box = "ubuntu/xenial32"
config.vm.provider "virtualbox" do |vb|
# Customize VirtualBox machine
vb.memory = "2048"
end
config.vm.provision "shell", inline: <<-SHELL
apt-get update
apt-get install -y \
autoconf automake bison bzip2 cvs diffstat flex qemu \
g++ gawk gcc gettext git-core gzip help2man ncurses-bin ncurses-dev \
libc6-dev libtool make texinfo patch perl pkg-config subversion tar \
texi2html wget zlib1g-dev chrpath libxml2-utils xsltproc \
libglib2.0-dev python-setuptools zip info coreutils diffstat chrpath \
libproc-processtable-perl libperl4-corelibs-perl sshpass libserf-dev quilt \
default-jre default-jre-headless java-common \
htop
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment