]> git.proxmox.com Git - pve-kernel-meta.git/blame - efiboot/zz-pve-efiboot
efiboot: be less verbose if UUID file does not exist
[pve-kernel-meta.git] / efiboot / zz-pve-efiboot
CommitLineData
b17a1cf3
SI
1#! /bin/sh
2set -e
3
4# adapted from '/etc/kernel/postinst.d/zz-update-grub and
5# /usr/lib/kernel/install.d/90-loaderentry.install, see also
6# https://kernel-team.pages.debian.net/kernel-handbook/ch-update-hooks.html
7
b17a1cf3
SI
8
9MOUNTROOT="${TMPDIR:-/var/tmp}/espmounts"
10
b17a1cf3
SI
11# - cleanup - gently delete all kernels not in kernel-keep-list
12
b17a1cf3
SI
13if command -V systemd-detect-virt >/dev/null 2>&1 &&
14 systemd-detect-virt --quiet --container; then
15 exit 0
16fi
17
18cleanup() {
19
b17a1cf3
SI
20 for mount in "${MOUNTROOT}"/* ; do
21 if echo "${mount}" | grep -qE '[0-9a-fA-F]{4}-[0-9a-fA-F]{4}' && \
22 mountpoint -q "${mount}"; then
23 umount "${mount}"
24 fi
25 done
26
27}
28
29trap cleanup EXIT INT TERM QUIT
30
fbf55ac2 31. /usr/share/pve-kernel-helper/scripts/functions
b17a1cf3
SI
32
33BOOT_KVERS="$(boot_kernel_list "$@")"
34
0b3c3df6
SI
35potential_esps(){
36 lsblk --list -o PATH,UUID,FSTYPE,PARTTYPE,MOUNTPOINT |
37 awk '$3 == "vfat" && $4 == "c12a7328-f81f-11d2-ba4b-00a0c93ec93b" && $5 == "" {print $1,$2}'
38}
b17a1cf3
SI
39
40update_esps() {
0b3c3df6 41 if [ ! -f "${ESP_LIST}" ]; then
5b03b1fd
FG
42 warn "No ${ESP_LIST} found, skipping ESP sync."
43 exit 0
0b3c3df6 44 fi
2d87fee5
FG
45 if [ -f /etc/kernel/cmdline ]; then
46 CMDLINE="$(cat /etc/kernel/cmdline)"
47 else
48 warn "No /etc/kernel/cmdline found - falling back to /proc/cmdline"
49 CMDLINE="$(cat /proc/cmdline)"
50 fi
51
0b3c3df6
SI
52 cat "${ESP_LIST}" | while IFS= read -r uuid; do
53 if ! (echo "${uuid}" | grep -qE '[0-9a-fA-F]{4}-[0-9a-fA-F]{4}'); then
54 warn "WARN: ${uuid} read from ${ESP_LIST} does not look like a VFAT-UUID - skipping"
55 continue
56 fi
b17a1cf3 57
0b3c3df6
SI
58 path="/dev/disk/by-uuid/$uuid"
59 if [ ! -e "${path}" ]; then
60 warn "WARN: ${path} does not exist - clean ${ESP_LIST}! - skipping"
61 continue
62 fi
b17a1cf3 63
0b3c3df6 64 mountpoint="${MOUNTROOT}/${uuid}"
b17a1cf3
SI
65 mkdir -p "${mountpoint}"
66 mount "${path}" "${mountpoint}" || \
0b3c3df6 67 { warn "mount of ${path} failed - skipping"; continue; }
e3928378 68 if [ ! -f "${mountpoint}/$PMX_LOADER_CONF" ]; then
b17a1cf3
SI
69 warn "${path} contains no loader.conf - skipping"
70 continue
71 fi
e3928378
FG
72 if [ ! -d "${mountpoint}/$PMX_ESP_DIR" ]; then
73 warn "${path}/$PMX_ESP_DIR does not exist- skipping"
b17a1cf3
SI
74 continue
75 fi
76
77 warn "Copying and configuring kernels on ${path}"
78 copy_and_config_kernels "${mountpoint}"
79 remove_old_kernels "${mountpoint}"
80
81 umount "${mountpoint}" || \
0b3c3df6 82 { warn "umount of ${path} failed - failure"; exit 2; }
b17a1cf3
SI
83
84 rmdir "${mountpoint}"
85 done
86
87}
88
89copy_and_config_kernels() {
90 esp="$1"
91
92
93 for kver in ${BOOT_KVERS}; do
94
95 linux_image="/boot/vmlinuz-${kver}"
96 initrd="/boot/initrd.img-${kver}"
97
98 if [ ! -f "${linux_image}" ]; then
99 warn "No linux-image ${linux_image} found - skipping"
100 continue
101 fi
102 if [ ! -f "${initrd}" ]; then
103 warn "No initrd-image ${initrd} found - skipping"
104 continue
105 fi
106
107 warn " Copying kernel and creating boot-entry for ${kver}"
108 KERNEL_ESP_DIR="${PMX_ESP_DIR}/${kver}"
109 KERNEL_LIVE_DIR="${esp}/${KERNEL_ESP_DIR}"
110 mkdir -p "${KERNEL_LIVE_DIR}"
111 cp -u --preserve=timestamps "${linux_image}" "${KERNEL_LIVE_DIR}/"
112 cp -u --preserve=timestamps "${initrd}" "${KERNEL_LIVE_DIR}/"
113
114 # create loader entry
115 cat > "${esp}/loader/entries/proxmox-${kver}.conf" <<- EOF
116 title Proxmox
117 version ${kver}
118 options ${CMDLINE}
119 linux /${KERNEL_ESP_DIR}/vmlinuz-${kver}
120 initrd /${KERNEL_ESP_DIR}/initrd.img-${kver}
121 EOF
122 done
123
124}
125
126remove_old_kernels() {
127 esp="$1"
128
129 for kerneldir in "${esp}/${PMX_ESP_DIR}"/*; do
130 if [ ! -d "${kerneldir}" ]; then
131 warn " ${kerneldir} is not a directory - skipping"
132 continue
133 fi
134
135 kver="$(echo "${kerneldir}" | sed -r "s#^${esp}/${PMX_ESP_DIR}/(.+)\$#\\1#")"
136
137 echo "${BOOT_KVERS}" | grep -q "${kver}" && continue;
138 warn " Removing old version ${kver}"
139 rm -rf "${kerneldir}"
140 rm -f "${esp}/loader/entries/proxmox-${kver}.conf"
141 done
142
143}
144
145set -- $DEB_MAINT_PARAMS
146mode="${1#\'}"
147mode="${mode%\'}"
148case $0:$mode in
149 # Only run on postinst configure and postrm remove, to avoid wasting
150 # time by calling update-grub multiple times on upgrade and removal.
151 # Also run if we have no DEB_MAINT_PARAMS, in order to work with old
152 # kernel packages.
153 */postinst.d/*:|*/postinst.d/*:configure|*/postrm.d/*:|*/postrm.d/*:remove)
154 update_esps
155 ;;
156esac
157
158exit 0