121 lines
2.9 KiB
NSIS
121 lines
2.9 KiB
NSIS
!include "x64.nsh"
|
|
|
|
;--------------------------------
|
|
;Include Modern UI
|
|
|
|
!include "MUI2.nsh"
|
|
|
|
;--------------------------------
|
|
;General
|
|
|
|
;Name and file
|
|
Name "Compute Module Boot Tool"
|
|
OutFile "ComputeModuleBoot.exe"
|
|
|
|
;Default installation folder
|
|
InstallDir "$PROGRAMFILES\Compute Module Boot"
|
|
|
|
;Get installation folder from registry if available
|
|
InstallDirRegKey HKCU "Software\Compute Module Boot" ""
|
|
|
|
;Request application privileges for Windows Vista
|
|
RequestExecutionLevel admin
|
|
|
|
;--------------------------------
|
|
|
|
;Interface Settings
|
|
|
|
ShowInstDetails show
|
|
!define MUI_FINISHPAGE_NOAUTOCLOSE
|
|
!define MUI_ABORTWARNING
|
|
!define MUI_ICON "Raspberry_Pi_Logo.ico"
|
|
!define MUI_UNICON "Raspberry_Pi_Logo.ico"
|
|
|
|
;--------------------------------
|
|
;Pages
|
|
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
!insertmacro MUI_PAGE_LICENSE "LICENSE.txt"
|
|
!insertmacro MUI_PAGE_COMPONENTS
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
!insertmacro MUI_PAGE_FINISH
|
|
|
|
!insertmacro MUI_UNPAGE_WELCOME
|
|
!insertmacro MUI_UNPAGE_CONFIRM
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
!insertmacro MUI_UNPAGE_FINISH
|
|
|
|
;--------------------------------
|
|
;Languages
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
;--------------------------------
|
|
;Installer Sections
|
|
|
|
Section "Compute Module Boot" SecCmBoot
|
|
|
|
SetOutPath "$INSTDIR"
|
|
|
|
File /r redist
|
|
File /r msd
|
|
|
|
DetailPrint "Installing BCM2708 driver..."
|
|
ExecWait '"$INSTDIR\redist\wdi-simple.exe" -v 0x0a5c -p 0x2763 -t 0' $0
|
|
DetailPrint "Driver install returned $0"
|
|
|
|
DetailPrint "Installing BCM2710 driver..."
|
|
ExecWait '"$INSTDIR\redist\wdi-simple.exe" -v 0x0a5c -p 0x2764 -t 0' $0
|
|
DetailPrint "Driver install returned $0"
|
|
|
|
File cyggcc_s-1.dll
|
|
File cygusb-1.0.dll
|
|
File cygwin1.dll
|
|
File rpiboot.exe
|
|
|
|
CreateDirectory $SMPROGRAMS\ComputeModuleBoot
|
|
CreateShortcut "$SMPROGRAMS\ComputeModuleBoot\RPi Boot.lnk" "$INSTDIR\rpiboot.exe"
|
|
CreateShortcut "$SMPROGRAMS\ComputeModuleBoot\Uninstall RPi Boot.lnk" "$INSTDIR\Uninstall.exe"
|
|
|
|
;Store installation folder
|
|
WriteRegStr HKCU "Software\Compute Module Boot" "" $INSTDIR
|
|
|
|
;Create uninstaller
|
|
WriteUninstaller "$INSTDIR\Uninstall.exe"
|
|
|
|
SectionEnd
|
|
|
|
;--------------------------------
|
|
;Descriptions
|
|
|
|
;Language strings
|
|
LangString DESC_SecDummy ${LANG_ENGLISH} "Install drivers for flashing Compute Module."
|
|
|
|
;Assign language strings to sections
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecCmBoot} $(DESC_SecDummy)
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|
|
|
|
;--------------------------------
|
|
;Uninstaller Section
|
|
|
|
Section "Uninstall"
|
|
|
|
RmDir /r /REBOOTOK $INSTDIR\redist
|
|
RmDir /r /REBOOTOK $INSTDIR\msd
|
|
|
|
Delete $INSTDIR\Uninstall.exe
|
|
Delete $INSTDIR\cyggcc_s-1.dll
|
|
Delete $INSTDIR\cygusb-1.0.dll
|
|
Delete $INSTDIR\cygwin1.dll
|
|
Delete $INSTDIR\rpiboot.exe
|
|
|
|
RmDir /REBOOTOK $INSTDIR
|
|
|
|
RmDir /r "$SMPROGRAMS\ComputeModuleBoot"
|
|
|
|
DeleteRegKey /ifempty HKCU "Software\Compute Module Boot"
|
|
|
|
SectionEnd
|