DM: Cleanup vmcfg

Removed the entire vmcfg feature, these changes are made:
1.Deleted devicemodel/vmcfg/
2.Deleted devicemodel/include/vmcfg.h
3.Cleanup vmcfg in devicemodel/Makefile

Tracked-On: #3192
Acked-by: Anthony Xu <anthony.xu@intel.com>
Signed-off-by: Tao Yuhong <yuhong.tao@intel.com>
This commit is contained in:
yuhong.tao@intel.com
2019-05-24 14:37:52 +00:00
committed by ACRN System Integration
parent 7315515c7c
commit 50f50872e0
11 changed files with 2 additions and 933 deletions

View File

@@ -1,25 +0,0 @@
/*
* Copyright (C)2018 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef VMCFG_H
#define VMCFG_H
#include <getopt.h>
struct vmcfg_arg {
char **argv;
int argc;
int (*setup)(void);
int (*clean)(void);
};
extern struct vmcfg_arg **args_buildin;
extern int num_args_buildin;
extern struct vmcfg_arg mrb_vm1_args;
void vmcfg_list(void);
void vmcfg_dump(int index, struct option *long_options, char *optstr);
#endif