mirror of
https://git.proxmox.com/git/pve-kernel-meta
synced 2025-07-04 21:42:32 +00:00

with (sh) pveesptool to format, initialize and refresh synced ESPs, as well as the hooks previously shipped via proxmox-ve. pveesptool based on a never-released version written in perl by Stoiko Ivanov. Co-Developed-By: Stoiko Ivanov <s.ivanov@proxmox.com> Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
17 lines
544 B
Makefile
Executable File
17 lines
544 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
debian/control: $(wildcard debian/*.in)
|
|
sed -e 's/@KERNEL_ABI@/${KERNEL_ABI}/g' < debian/postrm.in > debian/pve-kernel-${KERNEL_VER}.postrm
|
|
sed -e 's/@KERNEL_ABI@/${KERNEL_ABI}/g' -e 's/@KERNEL_VER@/${KERNEL_VER}/g' < debian/postinst.in > debian/pve-kernel-${KERNEL_VER}.postinst
|
|
sed -e 's/@KERNEL_ABI@/${KERNEL_ABI}/g' -e 's/@KERNEL_VER@/${KERNEL_VER}/g' < debian/control.in > debian/control
|
|
|
|
%:
|
|
dh $@
|
|
|
|
.PHONY: build clean
|
|
build clean:
|