DM: split sw_load.c to sw_load.c and sw_load_direct.c

The common loader code is put to sw_load_common.c
The loader code for directly kernel loading is put to sw_load_bzimage.c
The further change for SBL will be put to sw_load_sbl.c

Signed-off-by: Yin Fengwei <fengwei.yin@intel.com>
This commit is contained in:
Yin Fengwei
2018-03-21 14:57:44 +08:00
committed by Jack Ren
parent 544ec38b97
commit 6ee72d7df9
6 changed files with 266 additions and 147 deletions

View File

@@ -141,9 +141,4 @@ int vm_set_ptdev_intx_info(struct vmctx *ctx, uint16_t virt_bdf,
int vm_reset_ptdev_intx_info(struct vmctx *ctx, int virt_pin, bool pic_pin);
int vm_create_vcpu(struct vmctx *ctx, int vcpu_id);
int acrn_parse_kernel(char *arg);
int acrn_parse_ramdisk(char *arg);
int acrn_parse_bootargs(char *arg);
int acrn_sw_load(struct vmctx *ctx);
#endif /* _VMMAPI_H_ */