d081182741
--HG-- extra : convert_revision : 7b3bacc26fc3b5b108075348d89cba844492428d
12 lines
253 B
Text
12 lines
253 B
Text
#
|
|
# This script builds the required initramfs.
|
|
#
|
|
case "${ACTION}" in
|
|
post)
|
|
if [ ! -f var/lib/initramfs-tools/${VERSION}-xen-dom0 ]; then
|
|
update-initramfs -B -c -k ${VERSION}-xen-dom0
|
|
else
|
|
update-initramfs -B -u -k ${VERSION}-xen-dom0
|
|
fi
|
|
;;
|
|
esac
|