aboutsummaryrefslogtreecommitdiff
path: root/include/string.h
AgeCommit message (Collapse)AuthorFilesLines
2019-12-18limit C headers to freestanding onesPaolo Bonzini1-1/+1
inttypes.h is not part of the subset of standard headers for freestanding environments. Replace it with stdint.h. Also include string.h with quotes, since we provide it. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2019-11-18support smbioskaihuan.pkh1-0/+2
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>
2017-03-30qboot: modified the malloc for fseg and high momory.Yang Zhong1-2/+11
The fseg and high memory malloc all use the up align mode in do_alloc(),which will result in qboot hang issue.The high memory use the down align mode and fseg memory use the up align mode. With those changes,the qemu can boot up the image with qboot. Signed-off-by: Yang Zhong <yang.zhong@intel.com> Message-Id: <1490869250-4357-1-git-send-email-yang.zhong@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-09-06inline string functions to movsb/stosbPaolo Bonzini1-2/+10
2015-05-29avoid reserved identifiers for header guardsPaolo Bonzini1-2/+2
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2015-05-21add mallocPaolo Bonzini1-0/+3
Allocate the e820 map in the E-segment. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2015-05-21make a bootable BIOSPaolo Bonzini1-0/+18
includes source from kvm-unit-tests Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>