forked from Locietta/xanmod-kernel-WSL2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
root
committed
Sep 18, 2024
1 parent
2ee8382
commit 8291aed
Showing
8 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/linux-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
set -v | ||
cd linux_kernel_build_dir | ||
make help | ||
make LLVM=1 LLVM_IAS=1 ARCH=riscv menuconfig V=2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
set -v | ||
cd linux-6.11 | ||
make LLVM=1 LLVM_IAS=1 ARCH=riscv O=../linux_kernel_build_dir defconfig V=2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
set -v | ||
cd linux-6.11 | ||
rm -rf ../linux_kernel_build_dir | ||
cp ../riscv_defconfig ./arch/riscv/configs/riscv_defconfig | ||
make ARCH=riscv LLVM=1 LLVM_IAS=1 O=../linux_kernel_build_dir mrproper V=2 | ||
make ARCH=riscv LLVM=1 LLVM_IAS=1 O=../linux_kernel_build_dir riscv_defconfig V=2 | ||
make ARCH=riscv LLVM=1 LLVM_IAS=1 O=../linux_kernel_build_dir oldconfig V=2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
set -v | ||
cd linux_kernel_build_dir | ||
cp -v ../riscv_defconfig .config | ||
make LLVM=1 LLVM_IAS=1 ARCH=riscv oldconfig V=12 O=../linux_kernel_build_dir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
set -v | ||
cd linux_kernel_build_dir | ||
cp -v .config ../riscv_defconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
set -v | ||
cd linux_kernel_build_dir | ||
make LLVM=1 LLVM_IAS=1 ARCH=riscv V=12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters