From b6f2134e8f29b22a7674acc09fdffad4df81ac3c Mon Sep 17 00:00:00 2001 From: flawedworld Date: Mon, 22 Aug 2022 23:51:26 +0100 Subject: [PATCH] Erase DPM on GS101 devices --- static/js/web-install.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/js/web-install.js b/static/js/web-install.js index 53550276..84443fd7 100644 --- a/static/js/web-install.js +++ b/static/js/web-install.js @@ -241,6 +241,9 @@ async function flashRelease(setProgress) { if (gs101Devices.includes(product)) { setProgress("Disabling FIPS..."); await device.runCommand("erase:fips"); + setProgress("Erasing DPM..."); + await device.runCommand("erase:dpm_a"); + await device.runCommand("erase:dpm_b"); } } finally { safeToLeave = true;