Lines Matching full:version
32 /** @brief Verify if the current PNOR version meets the min ship level
37 /** @brief Version components */
38 struct Version struct in openpower::software::image::MinimumShipLevel
45 /** @brief Get the functional PNOR version on the system
46 * @details If the PNOR version file is not found, don't log an error since
48 * the VERSION partition, it should be caught by the host fw code.
49 * @return The populated or empty version string
53 /** @brief Parse the version components into a struct
54 * @details Version format follows a git tag convention: vX.Y[.Z]
56 * https://github.com/open-power/op-build/blob/master/openpower/package/VERSION.readme
57 * @param[in] versionStr - The version string to be parsed
58 * @param[out] version - The version struct to be populated
60 void parse(const std::string& versionStr, Version& version);
63 * @param[in] a - The first version to compare
64 * @param[in] b - The second version to compare
69 int compare(const Version& a, const Version& b);