2018-06-23 00:21:48 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-09-13 20:26:43 -04:00
|
|
|
#Reference: https://grapheneos.org/build#generating-release-signing-keys
|
|
|
|
|
2018-06-29 00:55:21 -04:00
|
|
|
type='rsa'; #Options: rsa, ec
|
2018-06-10 17:04:58 -04:00
|
|
|
|
2020-02-17 18:06:39 -05:00
|
|
|
#source build/envsetup.sh && breakfast lineage_sailfish-user && make -j20 generate_verity_key;
|
2019-09-13 20:26:43 -04:00
|
|
|
|
2019-09-25 13:21:47 -04:00
|
|
|
cd "$DOS_SIGNING_KEYS/NEW";
|
2019-09-13 20:26:43 -04:00
|
|
|
mkdir $1; cd $1;
|
2019-09-25 13:21:47 -04:00
|
|
|
|
2019-09-13 20:26:43 -04:00
|
|
|
desc="/O=Divested Computing Group/CN=DivestOS for $1/emailAddress=support@divestos.org";
|
2019-09-25 13:21:47 -04:00
|
|
|
|
|
|
|
sed -i '/blank for none/,+1 d' "$DOS_BUILD_BASE"/development/tools/make_key;
|
2020-02-26 18:42:08 -05:00
|
|
|
|
|
|
|
sed -i 's/4096/2048/' "$DOS_BUILD_BASE"/development/tools/make_key;
|
|
|
|
"$DOS_BUILD_BASE"/development/tools/make_key releasekey "$desc" "$type";
|
2019-09-28 01:01:47 -04:00
|
|
|
sed -i 's/2048/4096/' "$DOS_BUILD_BASE"/development/tools/make_key;
|
2018-06-29 00:55:21 -04:00
|
|
|
"$DOS_BUILD_BASE"/development/tools/make_key extra "$desc" "$type";
|
2019-09-25 13:21:47 -04:00
|
|
|
"$DOS_BUILD_BASE"/development/tools/make_key future-1 "$desc" "$type";
|
|
|
|
"$DOS_BUILD_BASE"/development/tools/make_key future-2 "$desc" "$type";
|
2018-06-29 00:55:21 -04:00
|
|
|
"$DOS_BUILD_BASE"/development/tools/make_key media "$desc" "$type";
|
2019-09-25 13:21:47 -04:00
|
|
|
"$DOS_BUILD_BASE"/development/tools/make_key networkstack "$desc" "$type";
|
2018-06-29 00:55:21 -04:00
|
|
|
"$DOS_BUILD_BASE"/development/tools/make_key platform "$desc" "$type";
|
|
|
|
"$DOS_BUILD_BASE"/development/tools/make_key shared "$desc" "$type";
|
2019-09-25 13:21:47 -04:00
|
|
|
|
|
|
|
sed -i 's/4096/2048/' "$DOS_BUILD_BASE"/development/tools/make_key;
|
2018-06-29 00:55:21 -04:00
|
|
|
"$DOS_BUILD_BASE"/development/tools/make_key verity "$desc" "$type";
|
2019-09-13 20:26:43 -04:00
|
|
|
"$DOS_BUILD_BASE"/out/host/linux-x86/bin/generate_verity_key -convert verity.x509.pem verity_key;
|
|
|
|
openssl x509 -outform der -in verity.x509.pem -out verifiedboot_relkeys.der.x509;
|
2019-09-25 13:21:47 -04:00
|
|
|
|
2019-09-28 01:01:47 -04:00
|
|
|
openssl genrsa -out avb.pem 4096;
|
2019-09-13 20:26:43 -04:00
|
|
|
"$DOS_BUILD_BASE"/external/avb/avbtool extract_public_key --key avb.pem --output avb_pkmd.bin;
|
2019-09-25 13:21:47 -04:00
|
|
|
|
2019-09-13 20:26:43 -04:00
|
|
|
cd "$DOS_BUILD_BASE";
|