10 lines
132 B
Text
10 lines
132 B
Text
#
|
|
# This script removes the initramfs.
|
|
#
|
|
_KVER="2.6.38-rc1"
|
|
|
|
case "${ACTION}" in
|
|
post)
|
|
update-initramfs -d -t -k ${_KVER}
|
|
;;
|
|
esac
|