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 :
```bash
sudo bash kernel.sh 6.x 6.14.1
sudo bash kernel.sh 6.x 6.14.2
```
## Résultats
- linux-headers-6.14.1-secure-clang-amd64_6.14.1-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.1-secure-clang-amd64_6.14.1-1_amd64.deb : 22 Mo
- linux-libc-dev_6.14.1-1_amd64.deb : 1.3 Mo
- linux-headers-6.14.2-secure-clang-amd64_6.14.2-1_amd64.deb: 8.4 Mo
- linux-image-6.14.2-secure-clang-amd64-dbg_6.14.2-1_amd64.deb: 400 Mo
- linux-image-6.14.2-secure-clang-amd64_6.14.2-1_amd64.deb: 22 Mo
- linux-libc-dev_6.14.2-1_amd64.deb: 1.3 Mo
## TODO

View File

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