template for erase wb 14

This commit is contained in:
Cayo Puigdefabregas 2022-08-11 10:01:20 +02:00
parent 8c1ea5786e
commit 6bcaa94a3d
1 changed files with 18 additions and 2 deletions

View File

@ -3,8 +3,24 @@
DH_TOKEN = {{ token }}
DH_URL = {{ url }}
{% if erease_basic %}
EREASE_BASIC = True
WB_BENCHMARK = True
WB_STRESS_TEST = 0
WB_SMART_TEST = short
WB_ERASE = EraseBasic
WB_ERASE_STEPS = 1
WB_ERASE_LEADING_ZEROS = False
WB_DEBUG = True
{% endif %}
{% if erease_sectors %}
EREASE_SECTORS = True
WB_BENCHMARK = True
WB_STRESS_TEST = 0
WB_SMART_TEST = short
WB_ERASE = EraseSectors
WB_ERASE_STEPS = 1
WB_ERASE_LEADING_ZEROS = True
WB_DEBUG = True
{% endif %}