mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
smbios: Add more options for the BIOS version string
At present the version string is obtained from PLAIN_VERSION. Some boards may want to configure this using the device tree, since the build system can more easily insert things there after U-Boot itself is built. Add this option to the code. Also in some cases the version needs to be generated programmatically, such as when it is stored elsewhere in the ROM and must be read first. To handle this, keep a pointer around so that it can be updated later. This works by storing the last string in the context, since it is easier than passing out a little-used extra parameter. Provide a function to update the version string. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
fd3b826da8
commit
e9adaa75bb
3 changed files with 73 additions and 3 deletions
|
@ -257,4 +257,16 @@ const struct smbios_header *smbios_header(const struct smbios_entry *entry, int
|
|||
*/
|
||||
const char *smbios_string(const struct smbios_header *header, int index);
|
||||
|
||||
/**
|
||||
* smbios_update_version() - Update the version string
|
||||
*
|
||||
* This can be called after the SMBIOS tables are written (e.g. after the U-Boot
|
||||
* main loop has started) to update the BIOS version string (SMBIOS table 0).
|
||||
*
|
||||
* @version: New version string to use
|
||||
* @return 0 if OK, -ENOENT if no version string was previously written,
|
||||
* -ENOSPC if the new string is too large to fit
|
||||
*/
|
||||
int smbios_update_version(const char *version);
|
||||
|
||||
#endif /* _SMBIOS_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue