[pve-devel] [PATCH kernel 4.15 7/7] build: add abiupdate target
Fabian Grünbichler
f.gruenbichler at proxmox.com
Wed Mar 21 11:27:33 CET 2018
to automatically extract and commit the ABI data from a built
pve-headers binary package.
Signed-off-by: Fabian Grünbichler <f.gruenbichler at proxmox.com>
---
Makefile | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/Makefile b/Makefile
index 1c6c165..06b6dee 100644
--- a/Makefile
+++ b/Makefile
@@ -172,6 +172,24 @@ submodule:
test -f "${ZFSONLINUX_SUBMODULE}/Makefile" || git submodule update --init ${ZFSONLINUX_SUBMODULE}
(test -f "${ZFSSRC}/debian/changelog" && test -f "${SPLZRC}/debian/changelog") || (cd ${ZFSONLINUX_SUBMODULE}; git submodule update --init)
+# call after ABI bump with header deb in working directory
+.PHONY: abiupdate
+abiupdate: abi-prev-${KVNAME}
+abi-prev-${KVNAME}: abi-tmp-${KVNAME}
+ifneq ($(strip $(shell git status --untracked-files=no --porcelain -z)),)
+ @echo "working directory unclean, aborting!"
+ @false
+else
+ git rm "abi-prev-*"
+ mv $< $@
+ git add $@
+ git commit -s -m "update ABI file for ${KVNAME}" -m "(generated with debian/scripts/abi-generate)"
+ @echo "update abi-prev-${KVNAME} committed!"
+endif
+
+abi-tmp-${KVNAME}:
+ @ test -e ${HDR_DEB} || (echo "need ${HDR_DEB} to extract ABI data!" && false)
+ debian/scripts/abi-generate ${HDR_DEB} $@ ${KVNAME} 1
.PHONY: clean
clean:
--
2.14.2
More information about the pve-devel
mailing list