summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Calianu <adrian.calianu@enea.com>2016-10-28 12:11:19 +0200
committerAdrian Calianu <adrian.calianu@enea.com>2016-10-28 12:11:19 +0200
commit12b9bfbfd88959ffc23999f9cb9e9403460a62ca (patch)
treee8fc937e4325c6a4bc6516956304cb5c13f8cc38
parentee7ee4c8e943df6b70dd66575eab2ac808ba1df8 (diff)
downloadel_releases-standard-12b9bfbfd88959ffc23999f9cb9e9403460a62ca.tar.gz
release_info: Store commands into a text file
This README file should be generated by build or updated manually. The idea is to store the commands required to prepare the build setup on the host. This file can be used by build documentation tools and to run automatic ditribution tests, so we will have all commands from manual tested/verified. Signed-off-by: Adrian Calianu <adrian.calianu@enea.com>
-rw-r--r--doc/book-enea-linux-release-info/doc/README21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/book-enea-linux-release-info/doc/README b/doc/book-enea-linux-release-info/doc/README
new file mode 100644
index 0000000..21d9373
--- /dev/null
+++ b/doc/book-enea-linux-release-info/doc/README
@@ -0,0 +1,21 @@
1
2standard profile
3
4___Prerequisites-commands:Ubuntu14.04.3LTS
5sudo apt-get update
6sudo apt-get install sed wget subversion git-core coreutils unzip texi2html texinfo libsdl1.2-dev docbook-utils fop gawk python-pysqlite2 diffstat make gcc build-essential xsltproc g++ desktop-file-utils chrpath libgl1-mesa-dev libglu1-mesa-dev autoconf automake groff libtool xterm libxml-parser-perl
7___END
8
9___RepoInstall-commands:Ubuntu14.04.3LTS
10mkdir ./bin
11curl https://storage.googleapis.com/git-repo-downloads/repo > ./bin/repo
12chmod a+x ./bin/repo
13export PATH=./bin/repo:$PATH
14___END
15
16___RepoClone-commands:<machine>
17mkdir enea-linux
18cd enea-linux
19repo init -u git://git.enea.com/linux/el_manifests-standard.git -b refs/tags/EL6 -m <machine>/default.xml
20repo sync
21___END