GNU Emacs30.0.50に含まれるjava/INSTALL
にしたがってパッチを適用したlibcryptoモジュール(libselinuxの依存モジュール)のレポジトリ。
- Google Gitのboringsslをclone
$: git clone https://android.googlesource.com/platform/external/boringssl
nougat-release
ブランチから修正用ブランチmy/nougat-release
をcheckout
$: cd boringssl
$: git checkout nougat-release
$: git checkout -b my/nougat-release
java/INSTALL
にしたがいpatchを適用
$: patch -p1 < PATCH_FOR_BORINGSSL.patch
- 上記patch ファイルとpatch適用後ファイルをcommitして空レポジトリにpush
$: git add -A
$: git commit -m 'nanika commit messages...'
$: gh repo create my-boringssl --public
$: git remote add mine https://github.com/JIBUN/my-boringssl.git
$: git branch -M my/nougat-release
$: git push -u mine my/nougat-release