[PATCH v3] Loading new machines and devices from external modules

2022-08-22 Thread Drap Anton
From: "Drap, Anton" Current QEMU politics is to have all the supported platforms inside QEMU source tree, but actually simulator core development, development of the devices standard library and development of virtual platforms are three different tasks. Moreover differ

Re: [PATCH v2] Loading new machines and devices from external modules

2022-07-22 Thread Drap, Anton
actually can’t solve legal problem. Best Regards, Anton Software engineer from Auriga LLC<http://www.auriga.com/> От: Daniel P. Berrangé Отправлено: 19 июля 2022 г. 19:25 Кому: Drap Anton Копия: qemu-devel@nongnu.org; Drap, Anton Тема: Re: [PATCH v2] L

[PATCH v2] Loading new machines and devices from external modules

2022-07-19 Thread Drap Anton
From: "Drap, Anton" There is no mechanism to load external machines and classes from modules at the moment. This patch is to add two parameters `add_machine` and `add_modinfo` for it. `add_machine` is to add machines from external modules. `add_modinfo` is to add devices from extern

[PATCH] There is no mechanism to load external machines and classes from modules at the moment. This patch is to add two parameters `add_machine` and `add_modinfo` for it. `add_machine` is to add mach

2022-07-19 Thread Drap Anton
From: "Drap, Anton" Signed-off-by: Drap Anton --- include/qapi/qmp/qjson.h| 2 + include/qemu/module.h | 4 +- qemu-options.hx | 38 ++ qobject/qjson.c | 14 ++ scripts/modinfo-generate.py | 7 +- softmmu/vl.c| 14 ++ uti