This website requires JavaScript.
Explore
Help
Sign In
OrgACRN
/
acrn-hypervisor
mirror of
https://github.com/projectacrn/acrn-hypervisor.git
Watch
1
Star
0
Fork
You've already forked acrn-hypervisor
0
Code
Issues
Releases
Wiki
Activity
ac9824cd54
acrn-hypervisor
/
misc
/
config_tools
/
config_app
/
requirements
6 lines
85 B
Plaintext
Raw
Normal View
History
Unescape
Escape
acrn-config: web UI app for acrn-config tool The web UI application for ACRN VM configuration tool based on Flask web framework: 1. import board info xml which is generated by acrn-config/target on target boards; or select one board from the imported list of UI. 2. load scenario settings or import scenario settings from local. 3. edit scenario settings from web UI. 4. export and save the edited scenario setting, the application will prompt error messages from UI if there are illegal configured items. 5. generate board source code, generate scenario source code. 6. load launch settings or import launch settings from local. 7. edit launch settings from web UI. 8. export and save the edited launch setting; the application will prompt error messages from UI if there are illegal configurable items 9. generate launch scripts based on current launch setting. Tracked-On: #3602 Signed-off-by: Shuang Zheng <shuang.zheng@intel.com> Reviewed-by: Victor Sun <victor.sun@intel.com> Acked-by: Terry Zou <terry.zou@intel.com>
2019-09-09 19:05:29 +08:00
Flask==1.1.1
flask_bootstrap==3.3.7.1
config_tools: scenario setting UI with xsd schema config render scenario setting UI with xsd schema config, validate scenario setting with xsd validation. Tracked-On: #5672 Signed-off-by: Shuang Zheng <shuang.zheng@intel.com> Reviewed-by: Mao, Junjie <junjie.mao@intel.com> Reviewed-by: Victor Sun <victor.sun@intel.com>
2021-01-28 18:17:15 +08:00
xmlschema==1.4.1
lxml==4.6.2
config-tools: replace xml.etree.ElementTree with defusedxml.ElementTree Using xml.etree.ElementTree to parse the untrusted data is known to raise security issue. Replaced it using defusedxml. Tracked-On: #6342 Signed-off-by: Yang,Yu-chu <yu-chu.yang@intel.com>
2021-07-30 05:02:50 +08:00
defusedxml==0.7.1