Skip to content

Commit

Permalink
Apply submodule fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rodriguezst authored Nov 8, 2024
1 parent da40dc0 commit 5fd5e55
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/patch-boot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
build-uefi-secureboot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: map220v/MU-sm8150pkg
Expand All @@ -16,6 +17,11 @@ jobs:
- name: Build UEFI (SB)
run: |
cd MU
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git submodule update --init MU_BASECORE
sed -i 's/Zeex/wyrover/g' MU_BASECORE/.gitmodules
git submodule update --init --recursive
docker build -t mu:v1 .
docker run -v $(pwd):/build/ mu:v1 ./build_uefi.py -d xiaomi-nabu
find . -type f -name 'SM8150_EFI.fd' -exec cp '{}' ../SM8150_EFI_SB.fd ';'
Expand Down Expand Up @@ -45,6 +51,9 @@ jobs:
cd MU
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git submodule update --init MU_BASECORE
sed -i 's/Zeex/wyrover/g' MU_BASECORE/.gitmodules
git submodule update --init --recursive
git am ../0001-Revert-Enable-Secure-Boot.patch
docker build -t mu:v1 .
docker run -v $(pwd):/build/ mu:v1 ./build_uefi.py -d xiaomi-nabu
Expand Down

0 comments on commit 5fd5e55

Please sign in to comment.