Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Sep 18, 2024
1 parent 2ee8382 commit 8291aed
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/linux-*
4 changes: 4 additions & 0 deletions make_kernel_change_config.sh
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
3 changes: 3 additions & 0 deletions make_kernel_defconfig.sh
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
7 changes: 7 additions & 0 deletions make_kernel_reset_config.sh
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
4 changes: 4 additions & 0 deletions make_kernel_restore_config.sh
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
3 changes: 3 additions & 0 deletions make_kernel_save_config.sh
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
3 changes: 3 additions & 0 deletions make_kernel_test_config.sh
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
2 changes: 1 addition & 1 deletion riscv_defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ CONFIG_THREAD_INFO_IN_TASK=y
CONFIG_INIT_ENV_ARG_LIMIT=32
# CONFIG_COMPILE_TEST is not set
# CONFIG_WERROR is not set
CONFIG_LOCALVERSION="6.11.1"
CONFIG_LOCALVERSION="6.11.2"
CONFIG_LOCALVERSION_AUTO=y
CONFIG_BUILD_SALT=""
CONFIG_HAVE_KERNEL_GZIP=y
Expand Down

0 comments on commit 8291aed

Please sign in to comment.