mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2024-12-14 01:14:08 +01:00
11 lines
211 B
Bash
11 lines
211 B
Bash
#!/bin/sh
|
|
# => /etc/kernel/postinst.d/zzz-UpdateEfiBoot
|
|
set -ex
|
|
cd /boot/efi
|
|
|
|
cp ./vmlinuz.mint ./vmlinuz.mint.old
|
|
cp ./initrd.mint ./initrd.mint.old
|
|
|
|
cp ../vmlinuz ./vmlinuz.mint
|
|
cp ../initrd.img ./initrd.mint
|