summaryrefslogtreecommitdiffstats
path: root/fcp/src/main.c
Commit message (Collapse)AuthorAgeFilesLines
* fix high memory usage during any operation with '--buffer'Stewart Smith2017-11-301-10/+2
| | | | | | | | | | | | | | | | | | | | | The --buffer command line option was passed to setvbuf(3). Computers are fast enough and libc is good enough that we realistically do not need this. Hostboot's buildpnor.pl would pass --buffer 0x40000000 which resulted in a malloc(2GB), which would fail on systems with less than 2GB of memory because sometimes libc and the kernel are sane. So, we keep the command line option for backwards compatibility but completely ignore it. In the few places where it was used to allocate a buffer to do work in (and this was via a rather round-about way), we instead just allocate something the size of the PNOR image. Fixes: https://github.com/open-power/ffs/issues/7 Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
* remove custom assert implementation and exception.cStewart Smith2015-12-151-1/+0
| | | | Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
* Use correct (Apache) license.Brad Bishop2015-01-071-27/+25
|
* Port FFS tools over from Building Block repository.Brad Bishop2014-07-021-0/+709
OpenPOWER on IntegriCloud