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:
15
linux-image-x.x.x+rpt-rpi-v8/DEBIAN/control
Normal file
15
linux-image-x.x.x+rpt-rpi-v8/DEBIAN/control
Normal file
@@ -0,0 +1,15 @@
|
||||
Package: linux-image-x.x.x+rpt-rpi-v8
|
||||
Version: x.x.x
|
||||
Architecture: arm64
|
||||
Installed-Size:
|
||||
Depends: kmod, linux-base, initramfs-tools
|
||||
Recommends: apparmor
|
||||
Suggests: firmware-brcm80211, firmware-linux-free, firmware-realtek, raspi-firmware
|
||||
Breaks: fwupdate
|
||||
Priority: optional
|
||||
Section: kernel
|
||||
Homepage: http://www.privlab.it
|
||||
Maintainer: PrivLab <repository@privlab.it>
|
||||
Description: Raspberry Pi Proxmox v8 Linux kernel, version x.x.x+rpt-rpi-v8
|
||||
This package contains the Linux kernel, modules and corresponding other
|
||||
files, version: x.x.x+rpt-rpi-v8.
|
||||
41
linux-image-x.x.x+rpt-rpi-v8/DEBIAN/postinst
Normal file
41
linux-image-x.x.x+rpt-rpi-v8/DEBIAN/postinst
Normal file
@@ -0,0 +1,41 @@
|
||||
#!/usr/bin/sh
|
||||
|
||||
set -e
|
||||
set -u
|
||||
|
||||
VERSION='x.x.x+rpt-rpi-v8'
|
||||
IMAGE_PATH="/boot/vmlinuz-${VERSION}"
|
||||
|
||||
skip_initramfs_gen () {
|
||||
if [ -r '/etc/default/raspi-firmware' ]; then
|
||||
. /etc/default/raspi-firmware
|
||||
fi
|
||||
if [ "$(/usr/bin/echo "${SKIP_INITRAMFS_GEN}" | /usr/bin/tr '[:upper:]' '[:lower:]' | /usr/bin/sed 's/true\|1/yes/')" = 'yes' ]; then
|
||||
return 0
|
||||
fi
|
||||
return 1
|
||||
}
|
||||
|
||||
case "${1}" in
|
||||
configure)
|
||||
depmod "${VERSION}"
|
||||
if [ -f "/lib/modules/${VERSION}/.fresh-install" ]; then
|
||||
CHANGE='install'
|
||||
else
|
||||
CHANGE='upgrade'
|
||||
fi
|
||||
/usr/bin/linux-update-symlinks "${CHANGE}" "${VERSION}" "${IMAGE_PATH}"
|
||||
/usr/bin/rm --force "/lib/modules/${VERSION}/.fresh-install"
|
||||
;;
|
||||
*)
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -d '/etc/kernel/postinst.d' ]; then
|
||||
if skip_initramfs_gen; then
|
||||
export INITRD='No'
|
||||
fi
|
||||
DEB_MAINT_PARAMS="${*}" run-parts --report --exit-on-error --arg="${VERSION}" \
|
||||
--arg="${IMAGE_PATH}" '/etc/kernel/postinst.d'
|
||||
fi
|
||||
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
|
||||
21
linux-image-x.x.x+rpt-rpi-v8/DEBIAN/preinst
Normal file
21
linux-image-x.x.x+rpt-rpi-v8/DEBIAN/preinst
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/sh
|
||||
|
||||
set -e
|
||||
set -u
|
||||
|
||||
VERSION='x.x.x+rpt-rpi-v8'
|
||||
IMAGE_PATH="/boot/vmlinuz-${VERSION}"
|
||||
|
||||
case "${1}" in
|
||||
abort-upgrade)
|
||||
exit 0
|
||||
;;
|
||||
install)
|
||||
/usr/bin/touch "/lib/modules/${VERSION}/.fresh-install"
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -d '/etc/kernel/preinst.d' ]; then
|
||||
DEB_MAINT_PARAMS="${*}" run-parts --report --exit-on-error --arg="${VERSION}" \
|
||||
--arg="${IMAGE_PATH}" '/etc/kernel/preinst.d'
|
||||
fi
|
||||
21
linux-image-x.x.x+rpt-rpi-v8/DEBIAN/prerm
Normal file
21
linux-image-x.x.x+rpt-rpi-v8/DEBIAN/prerm
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/sh
|
||||
|
||||
set -e
|
||||
set -u
|
||||
|
||||
VERSION='x.x.x+rpt-rpi-v8'
|
||||
IMAGE_PATH="/boot/vmlinuz-${VERSION}"
|
||||
|
||||
case "${1}" in
|
||||
remove)
|
||||
exit 0
|
||||
;;
|
||||
*)
|
||||
/usr/bin/linux-check-removal "${VERSION}"
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -d '/etc/kernel/prerm.d' ]; then
|
||||
DEB_MAINT_PARAMS="${*}" run-parts --report --exit-on-error --arg="${VERSION}" \
|
||||
--arg="${IMAGE_PATH}" '/etc/kernel/prerm.d'
|
||||
fi
|
||||
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/sh
|
||||
|
||||
set -e
|
||||
set -u
|
||||
|
||||
VERSION=$(
|
||||
/usr/bin/zfs version | \
|
||||
/usr/bin/grep --perl-regexp --only-matching '\d+\.\d+\.\d+' | \
|
||||
/usr/bin/head --lines='1'
|
||||
)
|
||||
|
||||
if [ -z "${VERSION}" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -f '/usr/lib/dkms/common.postinst' ]; then
|
||||
/usr/lib/dkms/common.postinst 'zfs' "${VERSION}"
|
||||
fi
|
||||
Reference in New Issue
Block a user