]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - docs/manual/getting.txt
docs/manual: misc improvements to Vagrant usage documentation
[coffee/buildroot.git] / docs / manual / getting.txt
1 // -*- mode:doc; -*-
2 // vim: set syntax=asciidoc:
3
4 [[getting-buildroot]]
5 == Getting Buildroot
6
7 Buildroot releases are made every 3 months, in February, May, August and
8 November. Release numbers are in the format YYYY.MM, so for example
9 2013.02, 2014.08.
10
11 Release tarballs are available at http://buildroot.org/downloads/[].
12
13 For your convenience, a https://www.vagrantup.com/[Vagrantfile] is
14 available in `support/misc/Vagrantfile` in the Buildroot source tree
15 to quickly set up a virtual machine with the needed dependencies to
16 get started.
17
18 If you want to setup an isolated buildroot environment on Linux or Mac
19 Os X, paste this line onto your terminal:
20
21 --------------------
22 curl -O https://buildroot.org/downloads/Vagrantfile; vagrant up
23 --------------------
24
25 If you are on Windows, paste this into your powershell:
26
27 --------------------
28 (new-object System.Net.WebClient).DownloadFile(
29 "https://buildroot.org/downloads/Vagrantfile","Vagrantfile");
30 vagrant up
31 --------------------
32
33 If you want to follow development, you can use the daily snapshots or
34 make a clone of the Git repository. Refer to the
35 http://buildroot.org/download[Download page] of the Buildroot website
36 for more details.