Remove ram_storage feature

We don't need to build a production key without persistent storage. Tests and
fuzzing continue to use the std feature to use the RAM implementation (that does
sanity checks).
This commit is contained in:
Julien Cretin
2020-12-10 13:06:05 +01:00
parent 8a9a1dc87a
commit 4253854cf1
8 changed files with 11 additions and 31 deletions

View File

@@ -863,14 +863,6 @@ if __name__ == "__main__":
"This is useful to allow flashing multiple OpenSK authenticators "
"in a row without them being considered clones."),
)
main_parser.add_argument(
"--no-persistent-storage",
action="append_const",
const="ram_storage",
dest="features",
help=("Compiles and installs the OpenSK application without persistent "
"storage (i.e. unplugging the key will reset the key)."),
)
main_parser.add_argument(
"--elf2tab-output",