op-build update 6-2-2021

Changes Included for package hostboot, branch master-p10:
a8938c0 - Deb McLemore - 2021-06-01 - OCMB I2C Security Configuration
0f2794c - Matt Derksen - 2021-06-01 - Allow multicast child to get parent proc
488ce75 - Corey Swenson - 2021-06-01 - Remove ipmi power limit function from htmgt_activate
f1f0e96 - Greg Still - 2021-06-01 - DDS: attribute defaults change for enablement
a857528 - Greg Still - 2021-06-01 - WOF/UV/OV: default enablement fixes
1402c10 - Joe McGill - 2021-06-01 - cleanup PM related output from Cronus IPL
3873e00 - aravnair-in - 2021-06-01 - Enable i2c callouts in common code
7c28ce8 - Sneha Kadam - 2021-06-01 - Added a new plug rule for no mixing dimm heights within a subchannel pair.
81ffc91 - Isaac Salem - 2021-05-28 - Only prevent writes to EECACHE for MVPD during hbrt
1e1a119 - Christian Geddes - 2021-05-28 - Setup trace hooks for libmctp
082d2d9 - Caleb Palmer - 2021-05-28 - PRD: Implement workaround for clearing PAU_PHY_FIR[22]
17620c3 - Caleb Palmer - 2021-05-28 - PRD: Runtime TPS update, remove predictive after symMark placed
74afb97 - Zane Shelley - 2021-05-28 - PRD: remove unused symbolic FRUs
62c1ca4 - Caleb Palmer - 2021-05-28 - PRD: TPS skip chip mark cleanup if VCM event queued
da8317a - hostboot - 2021-05-27 - Update SBE commit to 512f46e... PM HWP: Bug fix in static io link comput
05472ce - hostboot - 2021-05-27 - Update simics level to: 2021-05-25_bcbbb9_simics.tar.gz bcbbb9457b2c1381
8fe84b4 - Louis Stermole - 2021-05-27 - Add BOOT_CONFIG0 DLL_LOCK RC to exp_omi_setup
d3e686c - Joe McGill - 2021-05-27 - pm_plat_attributes -- adjust default for SYSTEM_MMA_POWEROFF_DISABLE
bd0649d - hostboot - 2021-05-26 - Update HCODE commit to aae8c3b... PM HWP: Bug fix in static io link comp
046f031 - Daniel Crowell - 2021-05-26 - Remove setting of FREQ_PAU in standalone
8cd4114 - Corey Swenson - 2021-05-26 - Add PLDM BIOS attributes for hb power mode
e37bec4 - Daniel Crowell - 2021-05-26 - Adjust PAU frequency setup for new HWP logic
cb0e66c - Daniel Crowell - 2021-05-26 - Make exp_mss_thermal_init errors non-fatal
0bfc018 - Daniel Crowell - 2021-05-26 - Support for fapi procedure callout FIND_DECONFIGURED_PART
978d791 - Daniel Crowell - 2021-05-26 - Add testcase for invalid system level attributes
b15b568 - hostboot - 2021-05-26 - Reapply PLDM subtree changes made from a5fb49 to f204682
ce4dffd - hostboot - 2021-05-26 - Update to latest openbmc/pldm commit c073a20
08f8273 - hostboot - 2021-05-26 - Update SBE commit to 0010186... Fixing wrong trace in pmic_health_check
971d39f - Deb McLemore - 2021-05-26 - DDIMM Telemetry Test Fix
c7b21ec - Lilith Hale - 2021-05-26 - Restore OMI to using meso buffer
1d7e36b - prasrang - 2021-05-26 - PM HWP: Bug fix in static io link computation
6051999 - Ilya Smirnov - 2021-05-25 - Fetch BMC PDRs in MPIPL
47d324e - hostboot - 2021-05-25 - Update simics level to: 2021-05-24_742b18_simics.tar.gz 742b18ecd88c6bd8
fb1f948 - Joe McGill - 2021-05-25 - p10_fabric_iovalid -- fix DL_HALF_NOT_TRAINED_RETRAIN_NONE_ERR FFDC
7972efd - Joe McGill - 2021-05-25 - p10_fabric_iovalid -- additional traces for HWSV debug
f204682 - hostboot - 2021-05-25 - Reapply PLDM subtree changes made from 9b6a48 to 341f828
a5fb497 - hostboot - 2021-05-25 - Update to latest openbmc/pldm commit 6496b03

Signed-off-by: hostboot <hostboot@us.ibm.com>
1 file changed
tree: 2f6286bf8df239c2f117be26ae65ade0473b5e29
  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 Blackbird system:

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

There are also default configurations for other platforms in openpower/configs/. 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 gawk cpio xxd \
       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(bigint)" "perl(XML::Simple)" \
       "perl(YAML)" "perl(XML::SAX)" "perl(Fatal)" "perl(Thread::Queue)" \
       "perl(Env)" "perl(XML::LibXML)" "perl(Digest::SHA1)" "perl(ExtUtils::MakeMaker)" \
       "perl(FindBin)" "perl(English)" "perl(Time::localtime)" \
       libxml2-devel which wget unzip tar cpio python bzip2 bc findutils ncurses-devel \
       openssl-devel make libxslt vim-common lzo-devel python2 rsync hostname