Skip to content

Commit

Permalink
Fix patch_kernel.sh add downloading bce patch file
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeeq committed Dec 5, 2019
1 parent 03035c4 commit 661d2be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fedora-mbp.ks
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ git clone --single-branch --branch ${BCE_DRIVER_BRANCH_NAME} https://github.com/
git -C /opt/drivers/bce/ checkout ${BCE_DRIVER_COMMIT_HASH}
### Patch bce for kernel 5.3
wget /opt/drivers/
curl -sL https://raw.githubusercontent.com/mikeeq/mbp-fedora/f31/files/patches/bce_5_3.patch -o/opt/drivers/bce_5_3.patch
git -C /opt/drivers/bce apply /opt/drivers/bce_5_3.patch
git clone --single-branch --branch ${APPLE_IB_DRIVER_BRANCH_NAME} https://github.com/roadrunner2/macbook12-spi-driver.git /opt/drivers/touchbar
Expand Down
3 changes: 2 additions & 1 deletion patch_kernel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ git clone --single-branch --branch ${BCE_DRIVER_BRANCH_NAME} https://github.com/
git -C /opt/drivers/bce/ checkout ${BCE_DRIVER_COMMIT_HASH}

### Patch bce for kernel 5.3
git -C /opt/drivers/bce apply $(pwd)/files/patches/bce_5_3.patch
curl -sL https://raw.githubusercontent.com/mikeeq/mbp-fedora/f31/files/patches/bce_5_3.patch -o/opt/drivers/bce_5_3.patch
git -C /opt/drivers/bce apply /opt/drivers/bce_5_3.patch

git clone --single-branch --branch ${APPLE_IB_DRIVER_BRANCH_NAME} https://github.com/roadrunner2/macbook12-spi-driver.git /opt/drivers/touchbar
git -C /opt/drivers/touchbar/ checkout ${APPLE_IB_DRIVER_COMMIT_HASH}
Expand Down

0 comments on commit 661d2be

Please sign in to comment.