summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-07-11Merge pull request #464 from anoo1/libv1.0.3Patrick Williams1-1/+1
Bump IPMI version for v1.0-stable
2016-07-11Bump IPMI versionAdriana Kobylak1-1/+1
Pick up support for versioned libraries. Closes openbmc/openbmc#423 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
2016-07-05Merge pull request #454 from anoo1/0701_1.0v1.0.2Patrick Williams2-2/+2
Bump skeleton version for v1.0-stable
2016-07-02Bump skeleton version for v1.0-stableAdriana Kobylak2-2/+2
Pick up fixes and the ability to update at runtime and get the bmc code update progress. Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
2016-07-01Merge pull request #451 from mdmillerii/runtime-update-1Patrick Williams7-51/+166
Update flash update to be useable at runtime for v1.0-stable
2016-06-30initfs: Store whiltelist in a directory of filesMilton Miller3-5/+8
Change the whiltelist definition to be files in a directory instead of a single file. This will allow us to store which files should be saved in individual recipes and also supports comments in the whitelist. The actual split into separate files is deferred for prototyping what assistance classes should look like to make the whitelist (eg systemd service files); also the packages will need to be added to the package list for the initramfs image. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30initfs: whitelist: Sanitize obmc events whitelist entryMilton Miller1-1/+1
Remove the trailing / so that the update script doesn't have to loop. It was determined the trailing slash confused the code that makes the save subdirectory. The update script was fixed but this removes the extra work needed. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30initfs: update: Sanitize whitelist directory entriesMilton Miller1-2/+13
Repeatedly strip trailing "/" and "/." from whitelist entries and fail if an entry includes "/../", ends with "/..", or doesn't start with a "/". Also use the entries quoted to avoid any glob. It was noticed the save code was saving directories that ended in "/" into a subdirectory of the last component name. This was traced the the code creating the directory just stripping the last "/" and then copying to the directory. Choose to sanitize the entry where possible for ease of use verses a small performance penalty. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30initfs: update: handle no images to updateMilton Miller1-2/+11
Notify the user if image wildcard expansion fails instead of printing message about failing to find partition to flash. The update script errors with the message that it can't figure out what partition to flash for /run/initramfs/image-* if there are no images pending. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30image-types_uboot: Package a self contained netboot imageMilton Miller1-0/+10
Create a cpio containing the base read-only image, and create a single combined initramfs image consisting of the image-rofs and the existing initramfs. There has been a desire to have a self contained netboot image present for developer testing and experimentation. The init script already supports having the rofs layer sourced from a file packaged into the initramfs, and will use it if found. While this image will not fit in the current flash layout in the initrd space, it will load over the network. This method leaves the squashfs compressed in RAM, decompreses is invoked as needed at runtime, trading boot time and memory space for runtime decompress on demand. This will also give similar file access overheads and performance to reading the data from flash. Because the rofs is already compressed with xz compression, don't try to compress this cpio (the cpio packaging adds about 40 bytes of ascii before and after, plus some alignment padding). Because the kernel requires uncompressed cpios to appear on a 4-byte boundary with 0 byte fill between archives, place this cpio first in the combined image. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30initfs: init: add file for base optionsMilton Miller1-1/+9
Allow an initrd image to include options for init while still allowing additional options to come from the kernel command line and/or u-boot environment variables. This will allow building a netboot image that can specify to run from RAM while allowing the command line to initiate debug or skip copying files from the read-write overlay file system. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30initfs: update: add --help messageMilton Miller1-1/+19
Now that update is intended for use at runtime and not just by the init and shutdown scripts, add a short help message listing the options so people don't have to understand how to read shell. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30initfs: update: add check for image size vs mtd sizeMilton Miller1-0/+17
The flashcp command will check the file size vs the partition size, so add a check when looking at images. Use stat -L -c "%s" to get the file size, and compare it to the mtd size from the sysfs size attribute. If this check is suppressed the enforcement is left to flashcp. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30initfs: update: check individual mtd partitions for mountsMilton Miller1-5/+41
Instead of checking for any mtd device, only check mtd devices that are to be updated. Include child mtd devices when looking for mounted filesystems. If this check is suppressed flash updates are suppressed. Suppressing the check may be useful to verify a update could succeed at shutdown. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30initfs: update: add option to perform checks but skip actual updateMilton Miller1-12/+19
Provide a way to check if update is likely to succeed without attempting actual updates. This will check the image names correspond to mtd partition names, and will be enhanced with additional checking for file size and individual partition mounts. This is not called --dry-run because it will still do file save and restore if those are enabled. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30initfs: update: Consistently add ERROR: and print to stderrMilton Miller1-3/+7
Make sure all error messages start with the tag ERROR and its printed to stderr by creating an echoerr function. Previously one case had the file descriptors backwards in the redirection. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30initfs: update: Do not cause an error if no files were savedMilton Miller1-1/+1
If there were no files in the read-write overlay file system that were in the persistent file list, then the save directory will not be created and therefore not exist. Skip attempting copying the non-existent directory in that case to avoid the error message. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30initfs: update: Don't exec sh or sulogin on error just exit 1Milton Miller1-17/+6
When update was written it was exec'd from the shutdown script and hence took over pid 1. Since exiting in that environment was a panic situation, the script instead started a rescue shell with its output presumably on the console. The calling convention was updated to be a simple invocation in commit dbacf104885c ("obmc-initfs: run update as a sub-script") but the error handling was not updated. That error handling is now becoming a hindrance to use from additional environments so change it. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30initfs: shutdown: comment on update successMilton Miller1-0/+8
Print an error from the shutdown script when the update fails. Update is changing to return codes when its preconditions are not met, so be more verbose about its success to provide a means to debug flash updates not occurring. We could add a sulogin or sushell but its not clear what would be desired here. If so the message should include "rmdir /oldroot to get a PID 1 shell" like /takever works in init. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30initfs: Fix recipe, remove unnecessary classMilton Miller2-5/+0
Because the recipe was named with trailing part init instead of initfs, the package didn't match the package name requiring PROVIDES, RPROVIDES and other bitbake workarounds. Fix the recipe name to match the package removing the overly verbose packaging. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-30image_types_uboot: Don't truncate when assembling flashMilton Miller1-5/+5
The generate_flash_image step was creating a file then using dd to fill in the pieces, but missed adding the conv=notrunc flag, so each step was shortening the file to its output. Add the forgotten conversion flag to each dd command. Signed-off-by: Milton Miller <miltonm@us.ibm.com>
2016-06-27Merge pull request #414 from anoo1/0624v1.0.1Patrick Williams4-3/+4
Bump versions for skeleton, IPMI, obmc-mapper
2016-06-24Bump versions for skeleton, IPMI, obmc-mapperAdriana Kobylak4-3/+4
Pick changes for: Encoding firmware version in BCD format Handle floating point sensor values Performance improvements Extend the mapper service startup timeout Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
2016-06-21Merge pull request #402 from bradbishop/pflash-buildPatrick Williams2-0/+29
Add pflash parallel build fix patch
2016-06-21Add pflash parallel build fix patchBrad Bishop2-0/+29
This resolves https://github.com/openbmc/openbmc/issues/325 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2016-06-20Merge pull request #394 from vishwabmc/masterPatrick Williams2-1/+15
Update recipe and service file for phosphor-networkd
2016-06-20Merge pull request #393 from anoo1/0617v1.0Patrick Williams7-7/+8
Bump versions for skeleton, rest, inarp, event
2016-06-20Update recipe and service file for phosphor-networkdvishwa2-1/+15
Commit c69c3d3 for phosphor-netword introduced DNS support. This change will update the bitbake file to point to correct commit and also creates the service file to start DNS updater. Fixes openbmc/openbmc#134
2016-06-18Bump versions for skeleton, rest, inarp, eventAdriana Kobylak7-7/+8
Bump recipe versions and add python dependencies. The rest-dbus recipe was adding pythong packages needed by other processes, so when rest-dbus was removed from the Barreleye image, these processes (skeleton and obmc-rest) would fail, so adding the python dependencies to those recipes. Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
2016-06-18Merge pull request #379 from anoo1/portPatrick Williams3-1/+11
Remove rest-dbus from Barreleye
2016-06-17Remove rest-dbus from Barreleye imageAdriana Kobylak1-0/+4
The rest-dbus is a package intended for development debug. Remove it from the Barreleye image now that Barreleye is entering production. The rest-dbus packages in part of the development package. Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
2016-06-17Move rest-dbus to development packageAdriana Kobylak2-1/+7
The rest-dbus package is a lightweight REST interface intended for development debug. Classify it as a dev package so that it is easy to remove from production images. Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
2016-06-17Merge pull request #373 from bradbishop/witherspoonPatrick Williams15-0/+208
support for building witherspoon images
2016-06-17Add 4.7 kernel recipeBrad Bishop1-0/+6
Using this kernel tree for Witherspoon until the necessary support is backported to 4.6 or 4.7 is released. Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2016-06-17Initial Witherspoon layerBrad Bishop14-0/+202
Witherspoon is an IBM branded OpenPOWER system aimed at the HPC market. It should be noted that this doesn't boot cleanly with the current 4.6 branch. Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2016-06-16Merge pull request #371 from bradbishop/skeleton-pythonPatrick Williams2-1/+3
Add build time dependencies to python for skeleton
2016-06-16Merge pull request #372 from bradbishop/garrisonPatrick Williams7-28/+20
Fix Garrison/Firestone build breaks
2016-06-16Fix Garrison/Firestone build breaksBrad Bishop7-28/+20
A number of skeleton patches no longer applied due to 40a360c and 54decc8. Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2016-06-16Add build time dependencies to python for skeletonBrad Bishop2-1/+3
Skeleton now invokes python setuptools to install its python applications in a top level makefile, so a build time dependency on native-python is required. It should be noted that skeleton invoking python from make is an interim thing until its python applications get their own repository. Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2016-06-15Merge pull request #326 from bradbishop/host-ipmidPatrick Williams1-12/+9
Add shared library versioning for host-ipmid-fru
2016-06-15Merge pull request #369 from bradbishop/pyphosphor-bumpPatrick Williams3-4/+4
Bump pyphosphor, host-ipmid versions
2016-06-15Merge pull request #324 from bradbishop/dir-structurePatrick Williams17-60/+89
Add virtual workbook / config-in-skeleton classes
2016-06-15Bump host-ipmid versionBrad Bishop1-3/+4
This picks up a ipmi-fru-parser update that addresses a bitbake warning message about missing runtime shared library dependencies. Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2016-06-15Merge pull request #331 from kc8apf/gitignore-buildsPatrick Williams1-1/+1
Ignore build*, not just 'build'
2016-06-15Whitespace fixes for host-ipmid-fru recipeBrad Bishop1-9/+5
No functional changes. Replace tab with spaces. Removed dead code. Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2016-06-15Merge pull request #368 from bradbishop/upload-statePatrick Williams2-11/+0
Remove openpower inventory upload systemd startup
2016-06-15Bump pyphosphor, host-ipmid versionsBrad Bishop3-4/+4
This picks up a couple fixes that addresses non-standard DBUS naming conventions. Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2016-06-15Add virtual workbook / config-in-skeleton classesBrad Bishop14-43/+69
This patch introduces a new abstraction 'skeleton-workbook' for representing a system configuration. At present it is pulled in by the skeleton recipe so the requirement on what is implemented by a package providing obmc-phosphor-workbook is something compatible with the existing System.py python modules in skeleton. Additionally this patch adds a new recipe for each system using a configuration file from skeleton today, and a class for common configuration. This enables a couple of things: - No need to patch skeleton.service for each system. - New systems don't have to put their configuration in the skeleton repository. Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2016-06-15Bump skeleton versionBrad Bishop1-14/+17
This bump picks up a refactored version of skeleton with a new directory layout, and a couple of hwmon regression fixes for the Barreleye system. Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2016-06-15Remove openpower inventory upload systemd startupBrad Bishop2-11/+0
The launching of this application is temporarily being moved to the skeleton state management framework to avoid race conditions with the host power-on process. Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>