You've already forked Raspberry-Pi-Linux-Kernel
Initialize Git Repository: 'Raspberry-Pi-Linux-Kernel'
Some checks failed
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi Linux Sources (push) Successful in 3m12s
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi Linux Kernel (bcm2711) (push) Failing after 1h50m43s
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Kernel (Meta-Package) (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Kernel (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Headers (Meta-Package) (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Headers (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux libc Development (push) Has been skipped
Some checks failed
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi Linux Sources (push) Successful in 3m12s
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi Linux Kernel (bcm2711) (push) Failing after 1h50m43s
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Kernel (Meta-Package) (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Kernel (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Headers (Meta-Package) (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Headers (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux libc Development (push) Has been skipped
This commit is contained in:
49
linux-image-x.x.x+rpt-rpi-v8/DEBIAN/postrm
Normal file
49
linux-image-x.x.x+rpt-rpi-v8/DEBIAN/postrm
Normal file
@@ -0,0 +1,49 @@
|
||||
#!/usr/bin/sh
|
||||
|
||||
set -e
|
||||
set -u
|
||||
|
||||
VERSION='x.x.x+rpt-rpi-v8'
|
||||
IMAGE_PATH="/boot/vmlinuz-${VERSION}"
|
||||
|
||||
/usr/bin/rm --force "/lib/modules/${VERSION}/.fresh-install"
|
||||
|
||||
case "${1}" in
|
||||
remove)
|
||||
if command -v linux-update-symlinks > '/dev/null'; then
|
||||
/usr/bin/linux-update-symlinks remove "${VERSION}" "${IMAGE_PATH}"
|
||||
fi
|
||||
;;
|
||||
purge)
|
||||
if command -v linux-update-symlinks > '/dev/null'; then
|
||||
/usr/bin/linux-update-symlinks remove "${VERSION}" "${IMAGE_PATH}"
|
||||
fi
|
||||
for EXTRA_FILE in modules.\*.bin \
|
||||
modules.alias \
|
||||
modules.ccwmap \
|
||||
modules.dep \
|
||||
modules.devname \
|
||||
modules.generic_string \
|
||||
modules.ieee1394map \
|
||||
modules.ieee1394map \
|
||||
modules.inputmap \
|
||||
modules.isapnpmap \
|
||||
modules.ofmap \
|
||||
modules.parportmap \
|
||||
modules.pcimap \
|
||||
modules.pnpbiosmap \
|
||||
modules.seriomap \
|
||||
modules.softdep \
|
||||
modules.symbols \
|
||||
modules.usbmap \
|
||||
modules.weakdep; do
|
||||
eval /usr/bin/rm --force "/lib/modules/${VERSION}/${EXTRA_FILE}"
|
||||
done
|
||||
/usr/bin/rm --force --recursive "/lib/modules/${VERSION}"
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -d '/etc/kernel/postrm.d' ]; then
|
||||
DEB_MAINT_PARAMS="${*}" run-parts --report --exit-on-error --arg="${VERSION}" \
|
||||
--arg="${IMAGE_PATH}" '/etc/kernel/postrm.d'
|
||||
fi
|
||||
Reference in New Issue
Block a user