diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2005-11-01 17:49:00 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2005-11-01 17:49:00 +0000 |
commit | 5adba470b7929bf1ae8355484d08b353b3d8f77e (patch) | |
tree | 98bbb6942cb32fca690b4303af3b4b1937bf2dfc /tools | |
parent | bbf0b522084d22e9fa1ec5ab6e5d850a298d55d6 (diff) |
Add alternate names for the stores
Diffstat (limited to 'tools')
-rw-r--r-- | tools/pskey.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/pskey.c b/tools/pskey.c index f6bc0a7e..701a47fd 100644 --- a/tools/pskey.c +++ b/tools/pskey.c @@ -363,6 +363,14 @@ int main(int argc, char *argv[]) case 's': if (!strcasecmp(optarg, "default")) stores = 0x0000; + else if (!strcasecmp(optarg, "implementation")) + stores = 0x0001; + else if (!strcasecmp(optarg, "factory")) + stores = 0x0002; + else if (!strcasecmp(optarg, "rom")) + stores = 0x0004; + else if (!strcasecmp(optarg, "ram")) + stores = 0x0008; else if (!strcasecmp(optarg, "psi")) stores = 0x0001; else if (!strcasecmp(optarg, "psf")) |