Skip to content

Commit 81d3691

Browse files
Refactor kernel build commands to remove unnecessary output directory specification
1 parent b747ed9 commit 81d3691

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/makefile.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ jobs:
4444
if: steps.cache-kernel.outputs.cache-hit != 'true'
4545
run: |
4646
cd ${{ env.VERSION }}
47-
make O=${{ github.workspace }}/iso/boot defconfig
48-
make O=${{ github.workspace }}/iso/boot
49-
sudo make O=${{ github.workspace }}/iso/boot modules_install install
47+
make defconfig
48+
make
49+
sudo make INSTALL_MOD_PATH=${{ github.workspace }}/iso/boot INSTALL_PATH=${{ github.workspace }}/iso/boot modules_install install
5050
5151
# https://docs.kernel.org/filesystems/ramfs-rootfs-initramfs.html
5252
# https://docs.kernel.org/filesystems/ramfs-rootfs-initramfs.html#contents-of-initramfs

0 commit comments

Comments
 (0)