Created
January 31, 2019 14:26
-
-
Save technic/0755c9dd51c253b6f920fcf6f3a70118 to your computer and use it in GitHub Desktop.
for yocto oe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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