diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2020-11-11 18:37:58 -0500 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2020-11-11 18:37:58 -0500 |
| commit | 1a8bb04a8c4b1678a183f092afa4960ea55b148b (patch) | |
| tree | f074141735b1ab604fc0d88aa11c3829e7742737 /static | |
| parent | b257eb0a05d3d45a64f5d9c02b397a5acdfbe7eb (diff) | |
move generating Vanadium signing key earlier
Diffstat (limited to 'static')
| -rw-r--r-- | static/build.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/static/build.html b/static/build.html index 96ff2d38..a325a2b2 100644 --- a/static/build.html +++ b/static/build.html @@ -749,6 +749,14 @@ cd ../..</pre> cd Vanadium git checkout $CORRECT_BRANCH_OR_TAG</pre> + <p>Generate a signing key for Vanadium if this is the initial build:</p> + + <pre>keytool -genkey -v -keystore vanadium.keystore -storetype pkcs12 -alias vanadium -keyalg RSA -keysize 4096 -sigalg SHA512withRSA -validity 10000 -dname "cn=GrapheneOS"</pre> + + <p>You will be prompted to enter a password which will be requested by the + <code>generate_release.sh</code> script for signing releases. You should back up + the generated keystore with your other keys.</p> + <p>Fetch the Chromium sources:</p> <pre>fetch --nohooks android</pre> @@ -758,14 +766,6 @@ git checkout $CORRECT_BRANCH_OR_TAG</pre> <pre>gclient sync -D --with_branch_heads --with_tags -r $VERSION --jobs 32</pre> - <p>Generate a signing key for Vanadium if this is the initial build:</p> - - <pre>keytool -genkey -v -keystore vanadium.keystore -storetype pkcs12 -alias vanadium -keyalg RSA -keysize 4096 -sigalg SHA512withRSA -validity 10000 -dname "cn=GrapheneOS"</pre> - - <p>You will be prompted to enter a password which will be requested by the - <code>generate_release.sh</code> script for signing releases. You should back up - the generated keystore with your other keys.</p> - <p>Apply the GrapheneOS patches on top of the tagged release:</p> <pre>cd src |
