From 8740df74a9e0d42a579c152b20a3827ac9e33533 Mon Sep 17 00:00:00 2001 From: kraoc Date: Fri, 23 Feb 2024 12:52:55 +0100 Subject: [PATCH] =?UTF-8?q?corrections=20de=20stabilit=C3=A9s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++++ kernel.sh | 28 ++++++++++++++-------------- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 9516848..9862f0a 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,10 @@ sudo bash kernel.sh 6.x 6.6.10 ## CHANGELOG +### 2024-02-23 + +- Correction de problèmes de configuration produisant un kernel défaillant + ### 2024-02-22 - Mise à jour de la configuration du patch 'more uarch' (6.1.79-6.8-rc3) diff --git a/kernel.sh b/kernel.sh index 305af2c..dd10da7 100644 --- a/kernel.sh +++ b/kernel.sh @@ -1,5 +1,5 @@ #!/bin/bash -UPDATED="2024-02-22" +UPDATED="2024-02-23" TESTING=0 CLANG=0 @@ -203,18 +203,18 @@ doOldOne() { doAllMods() { cd $WORKDIR - doEchoStep "Set all modules to be 'module'" - if [ "$CLANG" == "1" ]; then - make -j$(nproc) LLVM=1 CC="ccache clang" allmodconfig - else - make -j$(nproc) CC="ccache gcc" allmodconfig - fi - result=$? - if [ ! result==0 ]; then - echo ">>> Error in set all modules not in kernel !" - exit 1 - fi - cp .config .config.3.allmodconfig + # doEchoStep "Set all modules to be 'module'" + # if [ "$CLANG" == "1" ]; then + # make -j$(nproc) LLVM=1 CC="ccache clang" allmodconfig + # else + # make -j$(nproc) CC="ccache gcc" allmodconfig + # fi + # result=$? + # if [ ! result==0 ]; then + # echo ">>> Error in set all modules not in kernel !" + # exit 1 + # fi + # cp .config .config.3.allmodconfig } # Define permissions (user/group) to first user created (default 1000) @@ -1155,7 +1155,7 @@ doKernel() { doCleanup > >(tee -a $LOGFILE) 2>&1 doConfigCloud > >(tee -a $LOGFILE) 2>&1 doOldOne > >(tee -a $LOGFILE) 2>&1 - doAllMods > >(tee -a $LOGFILE) 2>&1 + # doAllMods > >(tee -a $LOGFILE) 2>&1 doDefaults > >(tee -a $LOGFILE) 2>&1 doPermissions > >(tee -a $LOGFILE) 2>&1 doEditSettings