[Spice-commits] xddm/QXLInstaller.wxs

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Mon Dec 9 14:17:53 UTC 2019


 xddm/QXLInstaller.wxs |   88 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 88 insertions(+)

New commits:
commit e3371bd2d26473dd42798ae392e0c4cdc6a63a06
Author: Yuri Benditovich <yuri.benditovich at daynix.com>
Date:   Fri Nov 22 09:06:44 2019 +0200

    xddm: add Wix script for driver installation
    
    Signed-off-by: Yuri Benditovich <yuri.benditovich at daynix.com>

diff --git a/xddm/QXLInstaller.wxs b/xddm/QXLInstaller.wxs
new file mode 100644
index 0000000..664b3ed
--- /dev/null
+++ b/xddm/QXLInstaller.wxs
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
+     xmlns:difx="http://schemas.microsoft.com/wix/DifxAppExtension">
+
+  <?ifdef QXL64Bit ?>
+    <?define QXLPlatform=x64 ?>
+    <?define QXLProgramFilesFolder= ProgramFiles64Folder ?>
+    <?define QXLWin64= yes ?>
+  <?else?>
+    <?define QXLPlatform=x86 ?>
+    <?define QXLProgramFilesFolder= ProgramFilesFolder ?>
+    <?define QXLWin64= no ?>
+  <?endif?>
+
+  <Product
+    Name="Red Hat QXL GPU"
+    Id="*"
+    UpgradeCode="{67F4CBB7-2CC5-4155-833D-425EA317DE53}"
+    Manufacturer="Red Hat, Inc."
+    Version="$(var.QXLVersion)"
+    Language="1033">
+    <Package
+      Manufacturer="Red Hat, Inc."
+      InstallerVersion="200"
+      Languages="1033"
+      Platform="$(var.QXLPlatform)"
+      Compressed="yes"
+      InstallScope="perMachine"
+      InstallPrivileges="elevated" />
+
+    <?if $(var.QXLPlatform) = x86 ?>
+      <Condition Message="Error: 32-bit version of QXL can not be installed on 64-bit Windows.">
+          <![CDATA[Not VersionNT64]]>
+      </Condition>
+    <?endif?>
+
+    <Condition Message="QXL is only supported on Windows 7 or Windows Server 2008 R2.">
+      <![CDATA[Installed OR (VersionNT = 601)]]>
+    </Condition>
+
+    <Media Id="1" Cabinet="QXL$(var.QXLVersion).cab" EmbedCab="yes" />
+
+    <Property Id="PREVIOUSVERSIONSINSTALLED" Secure="yes" />
+    <Upgrade Id="{67F4CBB7-2CC5-4155-833D-425EA317DE53}">
+      <UpgradeVersion
+        Minimum="0.0.0.0" Maximum="$(var.QXLVersion)"
+        Property="PREVIOUSVERSIONSINSTALLED"
+        IncludeMinimum="yes" IncludeMaximum="no" />
+
+      <UpgradeVersion
+        Minimum="$(var.QXLVersion)" Maximum="99.99.99.99"
+        Property="NEWERVERSIONINSTALLED"
+        IncludeMinimum="no" IncludeMaximum="yes" />
+    </Upgrade>
+
+    <Directory Id="TARGETDIR" Name="SourceDir">
+      <Directory Id="$(var.QXLProgramFilesFolder)">
+        <Directory Id="MANUFACTURERFOLDER" Name="Red Hat">
+          <Directory Id="QXL_Directory" Name="QXL">
+
+            <Component Id="QXL_7" Guid="{B939852D-7780-489A-A19E-8170DB85F61C}" Win64="$(var.QXLWin64)">
+              <File Id="qxl.sys" Name="qxl.sys" Source="qxl.sys" Vital="yes" KeyPath="yes" DiskId="1" ProcessorArchitecture="$(var.QXLPlatform)"/>
+              <File Id="qxl.inf" Name="qxl.inf" Source="qxl.inf" Vital="yes" KeyPath="no" DiskId="1" ProcessorArchitecture="$(var.QXLPlatform)"/>
+              <File Id="qxl.cat" Name="qxl.cat" Source="qxl.cat" Vital="yes" KeyPath="no" DiskId="1" ProcessorArchitecture="$(var.QXLPlatform)"/>
+              <File Id="qxldd.dll" Name="qxldd.dll" Source="qxldd.dll" Vital="yes" KeyPath="no" DiskId="1" ProcessorArchitecture="$(var.QXLPlatform)"/>
+              <difx:Driver AddRemovePrograms="no" PlugAndPlayPrompt="no" />
+            </Component>
+
+          </Directory>
+        </Directory>
+      </Directory>
+    </Directory>
+
+    <CustomAction Id="PreventDowngrading"
+              Error="Error: Newer version of QXL is already installed.">
+    </CustomAction>
+
+    <InstallExecuteSequence>
+      <RemoveExistingProducts After="InstallInitialize">PREVIOUSVERSIONSINSTALLED<>""</RemoveExistingProducts>
+      <Custom Action="PreventDowngrading" After="FindRelatedProducts">NEWERVERSIONINSTALLED<>"" AND NOT Installed</Custom>
+    </InstallExecuteSequence>
+
+    <Feature Id="ProductFeature" Title="QXL" Level="1">
+      <ComponentRef Id="QXL_7" />
+    </Feature>
+
+  </Product>
+</Wix>


More information about the Spice-commits mailing list