summaryrefslogtreecommitdiffstats
path: root/fpart/src/cmd_read.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove references to removed clib/assert.hStewart Smith2017-11-301-1/+0
| | | | | Fixes: 281345fdc962398cfdb5a25f2794f0b1c1418728 Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
* fix high memory usage during any operation with '--buffer'Stewart Smith2017-11-301-3/+0
| | | | | | | | | | | | | | | | | | | | | 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>
* Use correct (Apache) license.Brad Bishop2015-01-071-17/+24
|
* Port FFS tools over from Building Block repository.Brad Bishop2014-07-021-0/+166
OpenPOWER on IntegriCloud