[Spice-devel] [NSIS] Install virtio-rng driver

Uri Lublin uril at redhat.com
Sun Jan 22 15:22:33 UTC 2017


On 01/22/2017 04:07 PM, Yedidyah Bar David wrote:
> Bug-Url: https://bugzilla.redhat.com/1398560
> Change-Id: Ic7bad17fd01dc3d2d9c6a4f530eff724c4ea9403
> Signed-off-by: Yedidyah Bar David <didi at redhat.com>
> ---
>  win-guest-tools.nsis | 15 +++++++++++++++
>  1 file changed, 15 insertions(+)
>
> diff --git a/win-guest-tools.nsis b/win-guest-tools.nsis
> index 1951721..9a90444 100644
> --- a/win-guest-tools.nsis
> +++ b/win-guest-tools.nsis
> @@ -188,6 +188,21 @@ Section "install"
>    Push "PCI\VEN_1AF4&DEV_1000&SUBSYS_00011AF4&REV_00"
>    Call InstallDriver
>
> +  # Install rng driver
> +  ${If}  ${IsWinVista}
> +  ${OrIf} ${IsWin2008}
> +  ${OrIf} ${IsWin7}
> +  ${OrIf} ${IsWin2008R2}
> +  ${OrIf} ${IsWin8}
> +  ${OrIf} ${IsWin2012}
> +  ${OrIf} ${IsWin8.1}
> +  ${OrIf} ${IsWin2012R2}
> +    Push "viorng"
> +    Push "viorng"
> +    Push "PCI\VEN_1AF4&DEV_1002"

Hi,

1. I think device ID should be 1005 (see /usr/share/hwdata/pci.ids)
2. There are a long white-list compared to other drivers with no list
    at all. Why do you need it ? Only for WinXP ? or maybe just because
    it's a bit safer ?
3. Do you have to bump virtio-win version or the scripts automatically
    download the latest virtio available ?

Thanks,
     Uri.

> +    Call InstallDriver
> +  ${EndIf}
> +
>  !ifdef OVIRT
>    Call InstallOVirtAgentService
>  !endif
>



More information about the Spice-devel mailing list