op-build update 2-25-2019

Changes Included for package hostboot, branch master:
8f2fbd8 - Alvin Wang - 2019-02-24 - Reinstates exp_draminit_mc with change_addr_mux_sel fix
361f7d6 - Dan Crowell - 2019-02-23 - Adjust makefile directives for expscomtest
c0e8d17 - Andre Marin - 2019-02-23 - Add empty pos, c_str files to split dimm specialization
a48f4e9 - Daniel M. Crowell - 2019-02-23 - Revert "Enhance RAS for case where boot firmware image is too big to load"
2a2071c - Prasad Bg Ranganath - 2019-02-22 - HB:Cme fir attribute reset fix
ee1cd5b - Nick Bofferding - 2019-02-22 - Enhance RAS for case where boot firmware image is too big to load
acd134b - Jennifer A. Stofer - 2019-02-22 - Revert "Adds exp_draminit_mc"
b377d21 - Alvin Wang - 2019-02-22 - Adds exp_draminit_mc
66a5ca3 - Louis Stermole - 2019-02-22 - Add new MSS attributes for Axone
ca19f71 - Alvin Wang - 2019-02-22 - Adds empty files for exp_draminit_mc and p9a_omi_train
8fd946f - Louis Stermole - 2019-02-22 - Add generic attribute accessor script and makefiles
20e1afb - Jenny Huynh - 2019-02-22 - Adjust PVR Version for Axone
fcb3194 - Stephen Glancy - 2019-02-22 - Adds blank files for generic bad bits code
829034e - shlimeng - 2019-02-22 - Add new algorithm for MREP and error log
e410bcc - Raja Das - 2019-02-22 - Axone pibmem repair logic
a1c6fac - Soma BhanuTej - 2019-02-22 - Update p9a_10 engd - spy name changes
5cf2cfc - Joachim Fenkes - 2019-02-22 - p9_sbe_npll_setup: Enable spread spectrum before starting PLL
0fd6d39 - Caleb Palmer - 2019-02-22 - PRD: MPIPL Make sure PRD is initialized in startScrub
670a4d6 - Caleb Palmer - 2019-02-22 - PRD: Explorer rule and makefile updates
26ccad3 - Caleb Palmer - 2019-02-22 - PRD: Add MCFIR to capture group for mem mirror FFDC
76a1452 - Caleb Palmer - 2019-02-22 - Revert "PRD: Initial NVDIMM Support"
076b28a - Li Meng - 2019-02-22 - Adds RAS features to LRDIMM MRD_FINE and use fine_recorder class
ed2c193 - Li Meng - 2019-02-22 - Adds new algorithm for DWL
475664f - Greg Still - 2019-02-22 - PM: fix cable pull issue in clearing clock sync upon PM Complex Reset
688a973 - Chris Steffen - 2019-02-22 - P9 Obus MNFG Errors Attribute Fix
ab41d47 - Prem Shanker Jha - 2019-02-22 - PM HWP: Fixed error path bug pertaining to query STOP state.
5885d18 - Dan Crowell - 2019-02-22 - Add ATTR_ENABLED_OBUS_BRICKS
1ea4099 - Stephen Glancy - 2019-02-22 - Adds the explorer training response structure
5420b73 - Mike Baiocchi - 2019-02-22 - Secureboot: Enable New Multinode Trustedboot Transfer
09e13a7 - Ilya Smirnov - 2019-02-22 - Secureboot: Enhanced Multinode Comm: Quote Size Fix
eba5c2f - Dan Crowell - 2019-02-22 - Statically allocate work pages for PNOR Resource Provider
99f2963 - Stephen Glancy - 2019-02-22 - Adds blank files for explorer training handler
a47c3bc - Andre Marin - 2019-02-21 - Generalize set fields in pre_data_init
5a0ae42 - Caleb Palmer - 2019-02-21 - Update Bad Bits and Row Repair for new MSS attrs
93809c8 - Sampa Misra - 2019-02-21 - fix VINI RT HW LX keyword for Phyp

Changes Included for package hcode, branch master:
367c951 - hostboot - 2019-02-23 - Release tag information updated for hw022319a.930
a7d5df4 - hostboot - 2019-02-22 - Release tag information updated for hw022219a.930
1ea35ee - hostboot - 2019-02-21 - Release tag information updated for hw022119a.930

Signed-off-by: hostboot <hostboot@us.ibm.com>
2 files changed
tree: 57f7416b50cfb2bee45e7d04384a8346d7756bea
  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-env
  13. 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-env
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.

Dependencies for 64-bit Ubuntu/Debian systems

  1. Install Ubuntu (>= 14.04) or Debian (>= 7.5) 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
    

Dependencies for 64-bit Fedora systems

  1. Install Fedora 25 64-bit (older Fedora should also work).

  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)" libxml2-devel \
       which wget unzip tar cpio python bzip2 bc findutils ncurses-devel