pass takeover arg to xen postinst update-initramfs call

svn path=/dists/sid/linux-2.6/; revision=8209
This commit is contained in:
maximilian attems 2007-01-25 09:05:42 +00:00
parent 798f36971c
commit 384cd946b8
2 changed files with 4 additions and 2 deletions

4
debian/changelog vendored
View File

@ -4,8 +4,10 @@ linux-2.6 (2.6.18.dfsg.1-10) unstable; urgency=low
- [amd64] Don't leak NT bit into next task
- IB/srp: Fix FMR mapping for 32-bit kernels and addresses above 4G
- SCSI: add missing cdb clearing in scsi_execute()
* Xen postinst: Use takeover for update-initramfs. Makes postinst idempotent.
On creation it should always overwrite. (closes: #401183)
-- maximilian attems <maks@stro.at> Thu, 25 Jan 2007 09:52:09 +0100
-- maximilian attems <maks@stro.at> Thu, 25 Jan 2007 10:03:15 +0100
linux-2.6 (2.6.18.dfsg.1-9) unstable; urgency=low

View File

@ -7,7 +7,7 @@ case "$1" in
if [ "$2" ]; then
update-initramfs -u -k @upstreamversion@@abiname@@localversion@
else
update-initramfs -c -k @upstreamversion@@abiname@@localversion@
update-initramfs -c -t -k @upstreamversion@@abiname@@localversion@
command -v update-grub > /dev/null && update-grub
fi
;;