1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
# ipmctl
This branch is for development work which is intended to be merged into the
main branch (likely as 3.0 version)
## Dependencies
* ndctl
* asciidoc or asciidoctor (if building documentation)
* gcc
* gcc-c++
* cmake
* python (version 2 or 3 make work depending on your distribution)
* rpm-build (to use the rpmbuild script)
* files from edk2 (see building instructions below)
## Building
1. clone the ipmctl and edk2 repositories:
`git clone -b development https://github.com/intel/ipmctl.git`
`git clone https://github.com/tianocore/edk2.git`
`cd ipmctl`
2. Give execution permissions to the .sh files:
`chmod +x *.sh`
4. Run updateedk.sh, this will copy relevant folders from edk2 into ipmctl
`./updateedk.sh`
5. Build the ipmctl rpms specifying the version number to use
`./rpmbuild.sh 03.00.00.1234`
|