blob: f07dfee86b685bba2d6c58dbd76533435cee90d3 [file] [log] [blame]
Patrick Williams35aa29f2014-07-03 04:09:37 -05001=== Building an image ===
2
3git clone --recursive git@github.com:open-power/op-build.git
4. op-build-env
5op-build palmetto_defconfig && op-build
Brian Silverdd815de2014-07-11 10:22:08 -05006
7Building on *64-bit* Ubuntu/Debian systems
8==========================================
9
101. Install Ubuntu 14.04 or Debian 7.5 64-bit.
112. Install the packages necessary for the build:
12> sudo apt-get install cscope ctags libx-dev libexpat-dev linbc6-dev-i386 gcc g++ git bison flex gcc-multilib g++-multilib
133. Install PERL modules necessary for the build:
14> cpan install XML::Simple
154. Override the /bin/dash default shell configuration, you want to answer "no":
16> sudo dpks-reconfigure dash
175. Continue with the clone, environment setup, and build as noted above.
18
19Building on *64-bit* Fedora systems
20==========================================
21
221. Install Fedora 20 64-bit.
232. Install the packages necessary for the build:
24> sudo yum install vim gcc-c++ flex bison git ctags cscope cpan expat-devel patch glibc-devel-i686 libgcc.i686 zlib-devel libstdc++.i686
253. Install PERL modules necessary for the build:
26> cpan install XML::Simple YAML XML::SAX Fatal Thread/Queue.pm Env
27
28Troubleshooting
29===============
30
31* If git is complaining about permissions when you clone op-build, try:
32> git clone --recursive git@github.com:open-power/op-build.git
33> cd op-build
34> git clone --recursive git@github.com:open-power/buildroot.git
35
36** or
37
38> git clone --recursive https://github.com/open-power/op-build.git
39> cd op-build
40> git clone --recursive https://github.com/open-power/buildroot.git
41
42(thanks to Erich Hauptli at IBM)
43
44* If make is complaining during skiboot link phases, revert make to version 3.81
45-- On Fedora
46--> sudo rpm -del --nodeps make
47--> sudo wget ftp://fr2.rpmfind.net/linux/centos/6.5/os/x86_64/Packages/make-3.81-20.el6.x86_64.rpm
48--> sudo rpm --install make-3.81-20.el6.x86_64.rpm
49
50(instructions for make reversion from http://curiositydrivendevelopment.blogspot.com)