From: Ross Lagerwall Date: Mon, 9 May 2016 09:08:02 +0000 (+0100) Subject: Update format of .xsplice.depends section X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b09aef65ffa2ab78cbdee641c82c9e588de45eaf;p=livepatch-build-tools.git Update format of .xsplice.depends section .xsplice.depends is expected to contain an ELF note, not a plain binary checksum. --- diff --git a/xsplice-build b/xsplice-build index a67ebc0..35b9aae 100755 --- a/xsplice-build +++ b/xsplice-build @@ -140,7 +140,7 @@ function create_patch() # Create a dependency section > depends.bin if [ -n "$DEPENDS" ]; then - perl -e "print pack 'H*', '${DEPENDS}'" >> depends.bin + perl -e "print pack 'VVVZ*H*', 4, 20, 3, 'GNU', '${DEPENDS}'" >> depends.bin fi echo "Creating patch module..."