Pino Toscano
2019-Feb-27 14:28 UTC
[Libguestfs] [osinfo-db PATCH 1/2] win: add Windows Server 2019 data
https://docs.microsoft.com/en-us/windows-server/get-started-19/whats-new-19 --- data/os/microsoft.com/win-2k19.xml.in | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 data/os/microsoft.com/win-2k19.xml.in diff --git a/data/os/microsoft.com/win-2k19.xml.in b/data/os/microsoft.com/win-2k19.xml.in new file mode 100644 index 0000000..0f291b6 --- /dev/null +++ b/data/os/microsoft.com/win-2k19.xml.in @@ -0,0 +1,32 @@ +<libosinfo version="0.0.1"> +<!-- Licensed under the GNU General Public License version 2 or later. + See http://www.gnu.org/licenses/ for a copy of the license text --> + <os id="http://microsoft.com/win/2k19"> + <short-id>win2k19</short-id> + <_name>Microsoft Windows Server 2019</_name> + <version>10.0</version> + <_vendor>Microsoft Corporation</_vendor> + <family>winnt</family> + <distro>win</distro> + <derives-from id="http://microsoft.com/win/2k16"/> + <upgrades id="http://microsoft.com/win/2k16"/> + + <release-date>2018-10-02</release-date> + + <resources arch="x86_64"> + <minimum> + <cpu>1400000000</cpu> + <n-cpus>1</n-cpus> + <ram>536870912</ram> + <storage>34359738368</storage> + </minimum> + + <recommended> + <cpu>2000000000</cpu> + <ram>2147483648</ram> + <storage>42949672960</storage> + </recommended> + </resources> + + </os> +</libosinfo> -- 2.20.1
Pino Toscano
2019-Feb-27 14:28 UTC
[Libguestfs] [osinfo-db PATCH 2/2] win2k16: fix minimum storage size
The official documentation [1] specifies that 32 GB is the absolute minimum requirement. [1] https://docs.microsoft.com/en-us/windows-server/get-started/system-requirements --- data/os/microsoft.com/win-2k16.xml.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/os/microsoft.com/win-2k16.xml.in b/data/os/microsoft.com/win-2k16.xml.in index f3db328..a13c628 100644 --- a/data/os/microsoft.com/win-2k16.xml.in +++ b/data/os/microsoft.com/win-2k16.xml.in @@ -46,7 +46,7 @@ <cpu>1400000000</cpu> <n-cpus>1</n-cpus> <ram>536870912</ram> - <storage>10737418240</storage> + <storage>34359738368</storage> </minimum> <recommended> -- 2.20.1
Apparently Analagous Threads
- [PATCH] v2v: -o libvirt: write win2k19 osinfo ID
- [PATCH v2] inspect: return osinfo short IDs for recent Windows versions
- [PATCH] osinfo: revamp db reading (RHBZ#1359652)
- [PATCH v11 2/8] builder: add simple OCaml osinfo-db reader
- [PATCH v10 1/6] builder: add simple OCaml osinfo-db reader