/my-boringssl

Primary LanguageCOtherNOASSERTION

libcrypto

GNU Emacs30.0.50に含まれるjava/INSTALLにしたがってパッチを適用したlibcryptoモジュール(libselinuxの依存モジュール)のレポジトリ。

作成した手順

  1. Google Gitのboringsslをclone
$: git clone https://android.googlesource.com/platform/external/boringssl
  1. nougat-releaseブランチから修正用ブランチmy/nougat-releaseをcheckout
$: cd boringssl
$: git checkout nougat-release
$: git checkout -b my/nougat-release
  1. java/INSTALLにしたがいpatchを適用
$: patch -p1 < PATCH_FOR_BORINGSSL.patch
  1. 上記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