diff --git a/.github/workflows/kernel.yml b/.github/workflows/kernel.yml index 4547804..4413504 100644 --- a/.github/workflows/kernel.yml +++ b/.github/workflows/kernel.yml @@ -60,8 +60,8 @@ jobs: run: | PATH="${GITHUB_WORKSPACE}/android/toolchains/proton-clang/bin:/bin:$PATH" cd android/kernel - make ${{ env.MAKE }} ${{ github.event.inputs.KERNEL_DEFCONFIG }} - make ${{ env.MAKE }} -j"$(nproc --all)" + ${{ env.MAKE }} ${{ github.event.inputs.KERNEL_DEFCONFIG }} + ${{ env.MAKE }} -j"$(nproc --all)" - name: Check Kernel run: | @@ -96,4 +96,4 @@ jobs: ### Notes * Kernel were built/compiled using proton-clang. * Test at your own risk. - * Use kernel flasher or any custom recoveries to flash the compressed kernel zip file. \ No newline at end of file + * Use kernel flasher or any custom recoveries to flash the compressed kernel zip file. diff --git a/make.txt b/make.txt index 1a9c9a6..721e7d8 100644 --- a/make.txt +++ b/make.txt @@ -1 +1 @@ -O=out ARCH=arm64 LLVM=1 CROSS_COMPILE=aarch64-linux-gnu CROSS_COMPILE_COMPAT=arm-linux-gnueabi \ No newline at end of file +make O=out ARCH=arm64 LLVM=1 CROSS_COMPILE=aarch64-linux-gnu CROSS_COMPILE_COMPAT=arm-linux-gnueabi