aboutsummaryrefslogtreecommitdiff
path: root/post_install.bat
diff options
context:
space:
mode:
authorUmberto Baldi <u.baldi@arduino.cc>2021-12-16 18:48:04 +0100
committerUmberto Baldi <u.baldi@arduino.cc>2021-12-16 18:48:04 +0100
commitae4c7ecb6d6459ccf473906fb2b86a5f43a7d228 (patch)
tree1eedf63975ddb23975e0b6a1b5c113355bee1e55 /post_install.bat
parent2685b9b1426fc8344abe30fdb94254f7d0f770ef (diff)
modify post_install.bat according to https://github.com/arduino/ArduinoCore-megaavr/blob/master/post_install.bat
Diffstat (limited to 'post_install.bat')
-rw-r--r--post_install.bat19
1 files changed, 1 insertions, 18 deletions
diff --git a/post_install.bat b/post_install.bat
index 73b9a24..4b80f1c 100644
--- a/post_install.bat
+++ b/post_install.bat
@@ -1,5 +1,5 @@
@echo off
-set ARGS=/SE /SW /SA
+set ARGS=/LM /SW /SA
if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
drivers\dpinst-amd64.exe %ARGS%
) ELSE IF "%PROCESSOR_ARCHITEW6432%" == "AMD64" (
@@ -8,21 +8,4 @@ if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
drivers\dpinst-x86.exe %ARGS%
)
-@echo off
-setlocal
-for /f "tokens=4-5 delims=[.] " %%i in ('ver') do @(if %%i==Version (set VERSION=%%j) else (set VERSION=%%i))
-if %VERSION% GEQ 10 (
- exit /b 0
-)
-endlocal
-
-REM dpinst /PATH has problems with relative paths, so use absolute path.
-if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
- drivers\dpinst-amd64.exe /PATH %cd%\drivers\prewin10 %ARGS%
-) ELSE IF "%PROCESSOR_ARCHITEW6432%" == "AMD64" (
- drivers\dpinst-amd64.exe /PATH %cd%\drivers\prewin10 %ARGS%
-) ELSE (
- drivers\dpinst-x86.exe /PATH %cd%\drivers\prewin10 %ARGS%
-)
-
exit /b 0