aboutsummaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authorkaihuan.pkh <kaihuan.pkh@alibaba-inc.com>2019-11-18 20:08:36 +0800
committerPaolo Bonzini <bonzini@gnu.org>2019-11-18 15:52:42 +0100
commit94d3b1b5d1fc30bd7b63af9d07cb8db89a5f4868 (patch)
treebcf70ecfa51cb72607f497caf87d0b4050d1d3a4 /string.c
parentcb1c49e0cfac99b9961d136ac0194da62c28cf64 (diff)
downloadqboot-94d3b1b5d1fc30bd7b63af9d07cb8db89a5f4868.zip
qboot-94d3b1b5d1fc30bd7b63af9d07cb8db89a5f4868.tar.gz
qboot-94d3b1b5d1fc30bd7b63af9d07cb8db89a5f4868.tar.bz2
support smbios
alloc buffer in fseg memory and fill it with smbios anchor and tables which read from the fw_cfg, then check type0 table and rebuild it if it's not exist. mainly inspired by the seabios, and borrowed some code from it. Reviewed-by: Ben Luo <luoben@linux.alibaba.com> Signed-off-by: kaihuan.pkh <kaihuan.pkh@alibaba-inc.com>
Diffstat (limited to 'string.c')
-rw-r--r--string.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/string.c b/string.c
index 8d1cb7a..e3ebfa7 100644
--- a/string.c
+++ b/string.c
@@ -132,3 +132,11 @@ long atol(const char *ptr)
return acc;
}
+
+uint8_t csum8(uint8_t *buf, uint32_t len)
+{
+ uint32_t s = 0;
+ while (len-- > 0)
+ s += *buf++;
+ return s;
+}