mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
15 lines
692 B
Bash
15 lines
692 B
Bash
#!/bin/bash
|
|
|
|
#desc='/O=Divested Computing Group/CN=DivestOS/emailAddress=support@divestos.org';
|
|
desc='/O=Example/CN=ExampleOS/emailAddress=support@example.com';
|
|
type='rsa'; #Options: rsa, ec
|
|
|
|
"$DOS_BUILD_BASE"/development/tools/make_key extra "$desc" "$type";
|
|
"$DOS_BUILD_BASE"/development/tools/make_key media "$desc" "$type";
|
|
"$DOS_BUILD_BASE"/development/tools/make_key platform "$desc" "$type";
|
|
"$DOS_BUILD_BASE"/development/tools/make_key releasekey "$desc" "$type";
|
|
"$DOS_BUILD_BASE"/development/tools/make_key shared "$desc" "$type";
|
|
"$DOS_BUILD_BASE"/development/tools/make_key verity "$desc" "$type";
|
|
|
|
echo "Please copy created keys to your signing keys directory. Keep them safe!";
|