op-build update 12-12-2019

Changes Included for package sbe, branch master-p10:
7ca8ca8 - Ben Gass - 2019-12-12 - Fix bad register bit reference in p10_sbe_rcs_setup.C
efa3283 - Anusha Reddy Rangareddygari - 2019-12-11 - IPL updates ver46
7ea0db7 - Ben Gass - 2019-12-11 - Update register header files from drop Y.

Changes Included for package hcode, branch master-p10:
dafe988 - hostboot - 2019-12-12 - Release tag & head commit information updated for hw121019a.opmst10
a662c4e - Sumit Kumar - 2019-12-12 - Get repo HEAD commit captured in HW Image build
90cb2f3 - Sumit Kumar - 2019-12-12 - Fix to add HEAD commit number to HW Image
fa0eeac - Sumit Kumar - 2019-12-12 - Get repo HEAD commit captured in HW Image build
4865453 - Sumit Kumar - 2019-12-12 - Fixing compilation error reported in RHEL7
a165f21 - Shajith Chandran - 2019-12-12 - New member in XIP header for data section
a705dfe - Olsen - 2019-12-12 - Updates to XGPE image
d970ad5 - Sumit Kumar - 2019-12-12 - Build and append XGPE XIP Image into HW Image
a1ae3f1 - us3j2135 - 2019-12-12 - QME customization for hcode_image_build
8198951 - Sumit Kumar - 2019-12-12 - Build & append PGPE XIP Image into HW Image
8c98e0a - Claus Michael Olsen - 2019-12-12 - Eliminating separate MVPD ring lists and updating insertion order
9602a66 - Thi Tran - 2019-12-12 - HWP supports: Import and build IOP instruction code into p10.hw_image.bin
5976bff - Claus Michael Olsen - 2019-12-12 - Dyninits support: ring_apply and .dynamic ring section generation
06260d6 - Claus Michael Olsen - 2019-12-12 - Dyninits support: TOR API, RS4 API/hdr and ring_apply using new APIs
d15e7bd - Claus Michael Olsen - 2019-12-12 - Dyninits support: ifCompiler - 2nd try
fdd53aa - Claus Michael Olsen - 2019-12-12 - Removing TOR ring variants
3399ac3 - Kahn Evans - 2019-12-12 - ifCompiler updates(2): Getting ifCompiler to function with P10 engd
4549c4b - Claus Michael Olsen - 2019-12-12 - Code improvement: ifCompiler updates
84bb46b - Claus Michael Olsen - 2019-12-12 - P10 prep: IPL image [formerly XIP image] changes (2)
6fc1020 - Claus Michael Olsen - 2019-12-12 - P10 prep: IPL image [formerly XIP image] changes (1)
4e0e4c2 - Claus Michael Olsen - 2019-12-12 - Renaming and relocating core image infrastructure files (new)
c5b050c - Sumit Kumar - 2019-12-12 - Fix auto-mirror
17078ae - Sumit Kumar - 2019-12-12 - Support to include HEAD commit in HW Image build

Changes Included for package hostboot, branch master-p10:
e891520 - hostboot - 2019-12-12 - Update simics level to: 2019-12-09_d3bb48_simics.tar.gz
ad4c2c6 - Nick Bofferding - 2019-12-12 - Correct PBI CQ FIR Mask Register address for P10
de962b5 - Prasad Bg Ranganath - 2019-12-11 - ISTEP21: PM START procedure
0312a95 - Glenn Miles - 2019-12-11 - Pull in HCODE fix for correcting OIMR mask
520b5ce - Christian Geddes - 2019-12-11 - Filter out i2c slaves that are not associated with a given master
513b902 - Ilya Smirnov - 2019-12-11 - Integrate New QME HWPs
842ddb0 - Prem Shanker Jha - 2019-12-11 - Img Build: QME ring customization in HOMER.
3fd3f28 - Prasad Bg Ranganath - 2019-12-11 - PM HWP: Support api that fetch deconfigured core target
a22f9e5 - Sumit Kumar - 2019-12-11 - Get repo HEAD commit captured in HW Image build

Signed-off-by: hostboot <hostboot@us.ibm.com>
3 files changed
tree: 99b95e40a5cb5b8d7070e705660cb203feec26c5
  1. ci/
  2. dl/
  3. doc/
  4. openpower/
  5. output/
  6. .gitignore
  7. .gitmodules
  8. .travis.yml
  9. CONTRIBUTING.md
  10. LICENSE
  11. NOTICE
  12. op-build
  13. op-build-env
  14. README.md
README.md

OpenPOWER Firmware Build Environment

The OpenPOWER firmware build process uses Buildroot to create a toolchain and build the various components of the PNOR firmware, including Hostboot, Skiboot, OCC, Petitboot etc.

Documentation

https://open-power.github.io/op-build/

See the doc/ directory for documentation source. Contributions are VERY welcome!

Development

Issues, Milestones, pull requests and code hosting is on GitHub: https://github.com/open-power/op-build

See CONTRIBUTING.md for howto contribute code.

Building an image

To build an image for a Palmetto system:

git clone --recursive git@github.com:open-power/op-build.git
cd op-build
./op-build palmetto_defconfig && ./op-build

There are also default configurations for other platforms in openpower/configs/. Current POWER8 platforms include Habanero, Firestone, and Garrison. Current POWER9 platforms include Witherspoon, Boston (p9dsu), Romulus, and Zaius.

Buildroot/op-build supports both native and cross-compilation - it will automatically download and build an appropriate toolchain as part of the build process, so you don't need to worry about setting up a cross-compiler. Cross-compiling from a x86-64 host is officially supported.

The machine your building on will need Python 2.7, GCC 6.2 (or later), and a handful of other packages (see below).

Dependencies for 64-bit Ubuntu/Debian systems

  1. Install Ubuntu (>= 18.04) or Debian (>= 9) 64-bit.

  2. Enable Universe (Ubuntu only):

     sudo apt-get install software-properties-common
     sudo add-apt-repository universe
    
  3. Install the packages necessary for the build:

     sudo apt-get install cscope ctags libz-dev libexpat-dev \
       python language-pack-en texinfo \
       build-essential g++ git bison flex unzip \
       libssl-dev libxml-simple-perl libxml-sax-perl libxml-parser-perl libxml2-dev libxml2-utils xsltproc \
       wget bc rsync
    

Dependencies for 64-bit Fedora systems

  1. Install Fedora (>= 25) 64-bit.

  2. Install the packages necessary for the build:

     sudo dnf install gcc-c++ flex bison git ctags cscope expat-devel patch \
       zlib-devel zlib-static texinfo perl-bignum "perl(XML::Simple)" \
       "perl(YAML)" "perl(XML::SAX)" "perl(Fatal)" "perl(Thread::Queue)" \
       "perl(Env)" "perl(XML::LibXML)" "perl(Digest::SHA1)" "perl(ExtUtils::MakeMaker)" \
       libxml2-devel which wget unzip tar cpio python bzip2 bc findutils ncurses-devel \
       openssl-devel make libxslt vim-common