This commit is contained in:
Olivier 2025-04-11 19:34:42 +02:00
parent 0ff9c9b34f
commit e47118fd91
2 changed files with 11 additions and 11 deletions

View File

@ -22,15 +22,15 @@ sudo bash kernel.sh [branch] [version] [compile]
Exemple : Exemple :
```bash ```bash
sudo bash kernel.sh 6.x 6.14.1 sudo bash kernel.sh 6.x 6.14.2
``` ```
## Résultats ## Résultats
- linux-headers-6.14.1-secure-clang-amd64_6.14.1-1_amd64.deb : 8.4 Mo - linux-headers-6.14.2-secure-clang-amd64_6.14.2-1_amd64.deb: 8.4 Mo
- linux-image-6.14.1-secure-clang-amd64-dbg_6.14.1-1_amd64.deb : 400 Mo - linux-image-6.14.2-secure-clang-amd64-dbg_6.14.2-1_amd64.deb: 400 Mo
- linux-image-6.14.1-secure-clang-amd64_6.14.1-1_amd64.deb : 22 Mo - linux-image-6.14.2-secure-clang-amd64_6.14.2-1_amd64.deb: 22 Mo
- linux-libc-dev_6.14.1-1_amd64.deb : 1.3 Mo - linux-libc-dev_6.14.2-1_amd64.deb: 1.3 Mo
## TODO ## TODO

View File

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
UPDATED="2025-04-10" UPDATED="2025-04-11"
DISABLE=1 # disable some options DISABLE=1 # disable some options
ENABLE=1 # enable some options ENABLE=1 # enable some options
@ -614,8 +614,8 @@ doGenerateUninstall() {
cat <<-EOF >${READY}/uninstall.sh cat <<-EOF >${READY}/uninstall.sh
#!/bin/bash #!/bin/bash
# ${UPDATED} # ${UPDATED}
apt remove --purge ${PACKAGES} apt remove --purge ${PACKAGES}
sudo sync sudo sync
exit 0 exit 0
EOF EOF
@ -623,9 +623,9 @@ EOF
cat <<-EOF >${READY}/install.sh cat <<-EOF >${READY}/install.sh
#!/bin/bash #!/bin/bash
# ${UPDATED} # ${UPDATED}
echo 'blacklist pcspkr' > /etc/modprobe.d/pcspkr.conf echo 'blacklist pcspkr' > /etc/modprobe.d/pcspkr.conf
sudo dpkg -i *.deb sudo dpkg -i *.deb
sudo sync sudo sync
exit 0 exit 0
EOF EOF