mirror of
https://github.com/Evolution-X/vendor_evolution-priv_keys-template
synced 2026-01-27 15:31:05 +00:00
10 lines
320 B
Bash
10 lines
320 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# SPDX-FileCopyrightText: 2024 The LineageOS Project
|
||
|
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
|
||
|
|
set -u
|
||
|
|
bash <(sed "s/2048/${2:-2048}/;/Enter password/,+1d" ../../../development/tools/make_key) \
|
||
|
|
$1 \
|
||
|
|
'/C=US/ST=California/L=Mountain View/O=Android/OU=Android/CN=Android/emailAddress=android@android.com'
|