d09de5e522
--HG-- extra : convert_revision : a51aeeb0ccabd552b1547814264115536b78360c
14 lines
240 B
Text
14 lines
240 B
Text
#
|
|
# This script builds the required initramfs.
|
|
#
|
|
_KVER="2.6.34-rc6"
|
|
|
|
case "${ACTION}" in
|
|
post)
|
|
if [ ! -f var/lib/initramfs-tools/${_KVER} ]; then
|
|
update-initramfs -c -t -k ${_KVER}
|
|
else
|
|
update-initramfs -u -t -k ${_KVER}
|
|
fi
|
|
;;
|
|
esac
|