kernel-snapshot: update to 2.6.34-rc1.

--HG--
extra : convert_revision : e3c838996418b53b11f1e11ade022e7b745f0da5
This commit is contained in:
Juan RP
2010-03-13 09:36:02 +01:00
parent 33949f38d1
commit 9560ab8f46
6 changed files with 150 additions and 4867 deletions

View File

@@ -0,0 +1,14 @@
#
# This script builds the required initramfs.
#
_KVER="2.6.34-rc1"
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