From patchwork Mon Sep 21 20:23:27 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Angelo Compagnucci X-Patchwork-Id: 520565 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 033871401DE for ; Tue, 22 Sep 2015 06:23:47 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=jeNRgpaN; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 4348232FFD; Mon, 21 Sep 2015 20:23:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BzngIHJTsKiI; Mon, 21 Sep 2015 20:23:43 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id C100527396; Mon, 21 Sep 2015 20:23:42 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 2CC5A1C16ED for ; Mon, 21 Sep 2015 20:23:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 09D3727396 for ; Mon, 21 Sep 2015 20:23:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2iNom0owzCK2 for ; Mon, 21 Sep 2015 20:23:40 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by silver.osuosl.org (Postfix) with ESMTPS id CC74626DD8 for ; Mon, 21 Sep 2015 20:23:39 +0000 (UTC) Received: by wiclk2 with SMTP id lk2so164213666wic.0 for ; Mon, 21 Sep 2015 13:23:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=XP+jmyi/kmyctR9vj3ZQaJfvoX3LyUj3B3zahJYmS8g=; b=jeNRgpaNC/ilLuffQ3PXZaRZzMaR3fxlNGc29xAik5PVMJvEJzy/kYXtoyrZWcdD3a ZPxOuEiPaMg9sz+D7YGhfUBGWTITP3ZtxSaR1gsP54Z4NxUOtIjjBX+NhqKCMFYPnPV+ AXLcEW3ejzYDa2dkpM7ax3kYrC2OgdqAbQ+fTe5N8EivgxYmqJDNiNavie4K3CEI8oH7 ri97Lw5KyVZbkKK1aXChLiRIff6o1OE6LjyFJKxHdRGJQ1HllLSq21RcXSQWJOTEcAo3 JhaYzltTEzxCt+odJi9/PkBlt1GeoGVhSAzZURVRvhoXGHUYsR4Fi4d+X12Saw0ettWf GAMA== X-Received: by 10.180.211.8 with SMTP id my8mr14538828wic.21.1442867018429; Mon, 21 Sep 2015 13:23:38 -0700 (PDT) Received: from localhost.localdomain ([89.202.204.147]) by smtp.gmail.com with ESMTPSA id fx2sm15188854wib.24.2015.09.21.13.23.36 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 21 Sep 2015 13:23:37 -0700 (PDT) From: Angelo Compagnucci To: buildroot@buildroot.org Date: Mon, 21 Sep 2015 22:23:27 +0200 Message-Id: <1442867007-3715-1-git-send-email-angelo.compagnucci@gmail.com> X-Mailer: git-send-email 1.9.1 Subject: [Buildroot] [PATCH v2] support/misc: Adding Vagrant file for provisioning X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" This patch adds a Vagrant file to buildroot. With this file you can provision a complete buildroot developing environment in minutes on all major platforms (Linux/Mac/Windows). Signed-off-by: Angelo Compagnucci --- Changelog v1 -> v2: * Scraping latest version number from website (suggested by Arnout Vandecappelle) * Added libc i386 dependency for precompiled toolchains (suggested by Arnout Vandecappelle) docs/manual/getting.txt | 14 ++++++++++++ docs/website/download.html | 17 +++++++++++++++ support/misc/Vagrantfile | 54 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 85 insertions(+) create mode 100644 support/misc/Vagrantfile diff --git a/docs/manual/getting.txt b/docs/manual/getting.txt index 3437f93..84e1f54 100644 --- a/docs/manual/getting.txt +++ b/docs/manual/getting.txt @@ -10,6 +10,20 @@ November. Release numbers are in the format YYYY.MM, so for example Release tarballs are available at http://buildroot.org/downloads/[]. +An official https://www.vagrantup.com/[Vagrantfile] is distributed within buildroot for your needs. +If you want to setup an isolated buildroot environment on Linux or +Mac Os X, paste this line onto your terminal: + +-------------------- +curl -O http://git.buildroot.net/buildroot/plain/support/misc/Vagrantfile; vagrant up +-------------------- + +If you are on Windows, paste this into your powershell: + +-------------------- +(new-object System.Net.WebClient).DownloadFile("http://git.buildroot.net/buildroot/plain/support/misc/Vagrantfile","Vagrantfile"); vagrant up +-------------------- + If you want to follow development, you can use the daily snapshots or make a clone of the Git repository. Refer to the http://buildroot.org/download[Download page] of the Buildroot website diff --git a/docs/website/download.html b/docs/website/download.html index 534fc7e..8075aca 100644 --- a/docs/website/download.html +++ b/docs/website/download.html @@ -32,6 +32,23 @@ This and earlier releases (and their PGP signatures) can always be downloaded fr

+

+An official Vagrantfile +is distributed within buildroot for your needs. +If you want to setup an isolated buildroot environment on Linux or +Mac Os X, paste this line onto your terminal: + +

+curl -O http://git.buildroot.net/buildroot/plain/support/misc/Vagrantfile; vagrant up
+
+ +If you are on Windows, paste this into your powershell: + +
+(new-object System.Net.WebClient).DownloadFile("http://git.buildroot.net/buildroot/plain/support/misc/Vagrantfile","Vagrantfile"); vagrant up
+
+

+ You can also obtain daily snapshots of the latest Buildroot source tree if you want to follow development, but cannot or do not wish to use Git. diff --git a/support/misc/Vagrantfile b/support/misc/Vagrantfile new file mode 100644 index 0000000..36f9048 --- /dev/null +++ b/support/misc/Vagrantfile @@ -0,0 +1,54 @@ +################################################################################ +# +# Vagrantfile +# +################################################################################ + +### Change here for more memory/cores ### +VM_MEMORY=1024 +VM_CORES=1 + +Vagrant.configure('2') do |config| + config.vm.box = 'ubuntu/trusty64' + + config.vm.provider :vmware_fusion do |v, override| + v.vmx['memsize'] = VM_MEMORY + v.vmx['numvcpus'] = VM_CORES + end + + config.vm.provider :virtualbox do |v, override| + v.customize ['modifyvm', :id, '--memory', VM_MEMORY] + v.customize ['modifyvm', :id, '--cpus', VM_CORES] + end + + config.vm.provision 'shell' do |s| + s.inline = 'echo Setting up machine name' + + require 'open-uri' + open('http://buildroot.org/download.html') do |f| + $buildroot_version = f.read.lines.grep(/The latest stable release/)[0] + .split('')[1].split('')[0] + end + + config.vm.provider :vmware_fusion do |v, override| + v.vmx['displayname'] = "Buildroot #{$buildroot_version}" + end + + config.vm.provider :virtualbox do |v, override| + v.customize ['modifyvm', :id, '--name', "Buildroot #{$buildroot_version}"] + end + end + + config.vm.provision 'shell', inline: + "sudo dpkg --add-architecture i386 + sudo apt-get -q update + sudo apt-get -q -y install build-essential libncurses5-dev \ + git bzr cvs mercurial subversion libc6:i386 + sudo apt-get -q -y autoremove + sudo apt-get -q -y clean" + + config.vm.provision 'shell', privileged: false, inline: + "echo 'Downloading and extracting buildroot #{$buildroot_version}' + wget -q -c http://buildroot.org/downloads/buildroot-#{$buildroot_version}.tar.gz + tar axf buildroot-#{$buildroot_version}.tar.gz" +end