From a5a14a3bbef62e2f139b5b7741b7854f2656d69c Mon Sep 17 00:00:00 2001 From: kraoc Date: Mon, 29 Apr 2024 08:37:23 +0200 Subject: [PATCH] bug de copier/coller (manque d'appel de doDownload & doUncompress) --- README.md | 1 + kernel.sh | 3 +++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 0d9b10d..953ddba 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ sudo bash kernel.sh 6.x 6.8.1 ### 2024-04-29 +- Corrections bug de copier/coller (manque d'appel de doDownload & doUncompress) - Suppression du paramètre STEPS - Ajout du paramètre TARGET (afin de spécifier une distribution cible, ex: debian) - Cibles de compilation: debian, ubuntu diff --git a/kernel.sh b/kernel.sh index d1e8dd8..75b2631 100644 --- a/kernel.sh +++ b/kernel.sh @@ -705,6 +705,9 @@ doKernel() { fi touch $LOGFILE + doDownload > >(tee -a $LOGFILE) 2>&1 + doUncompress > >(tee -a $LOGFILE) 2>&1 + WORKDIR=$WORKDIR/linux-$VERSION doCleanup > >(tee -a $LOGFILE) 2>&1