aboutsummaryrefslogtreecommitdiff
path: root/tables.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 /tables.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 'tables.c')
-rw-r--r--tables.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/tables.c b/tables.c
index 9493691..9934a91 100644
--- a/tables.c
+++ b/tables.c
@@ -107,13 +107,6 @@ static void do_ptr(char *dest, char *src, uint32_t offset, uint8_t size)
memcpy(q, &data.b, size);
}
-static inline uint8_t csum8(uint8_t *buf, uint32_t len)
-{
- uint32_t s = 0;
- while (len-- > 0)
- s += *buf++;
- return s;
-}
static void do_checksum(char *file, uint32_t offset, uint32_t start, uint32_t len)
{
uint8_t *p;