summaryrefslogtreecommitdiff
path: root/debian/initramfs-tools.postinst
diff options
context:
space:
mode:
authorJeff Bailey <jbailey@ubuntu.com>2005-08-16 13:34:13 -0400
committerJeff Bailey <jbailey@ubuntu.com>2005-08-16 13:34:13 -0400
commit618760b004d07efb11f05e57d46ed4b5adb2823c (patch)
tree196895455a2d38f79e6e742786cccd0b9636f8fe /debian/initramfs-tools.postinst
parent3d319f70b29f804234fa5eb6e93c1168b0d2dddf (diff)
downloadinitramfs-tools-618760b004d07efb11f05e57d46ed4b5adb2823c.tar.gz
initramfs-tools-618760b004d07efb11f05e57d46ed4b5adb2823c.zip
Cleanup commit, sorry for the mess
Diffstat (limited to 'debian/initramfs-tools.postinst')
-rw-r--r--debian/initramfs-tools.postinst22
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/initramfs-tools.postinst b/debian/initramfs-tools.postinst
index 70be9f6..ea92067 100644
--- a/debian/initramfs-tools.postinst
+++ b/debian/initramfs-tools.postinst
@@ -2,6 +2,28 @@
set -e
+if [ "$1" = configure ]; then
+ if [ x${2} = x ]; then
+
+ # First time install. Can we autodetect the RESUME partition?
+ RESUME=$(tail -n $(($(wc -l /proc/swaps | awk ' { print $1 } ') - 1)) /proc/swaps | sort -rk3 | head -n 1 | awk ' { print $1 } ')
+
+ # Inhertic initrd-tools settings if possible.
+ if [ -e /etc/mkinitrd/mkinitrd.conf ]; then
+ . /etc/mkinitrd/mkinitrd.conf
+ fi
+
+ if [ -e ${RESUME} ]; then
+ sed -i -e "s@#RESUME=@RESUME=${RESUME}@" /etc/mkinitramfs/initramfs.conf
+ fi
+
+ if [ -e /etc/mkinitrd/DSDT ]; then
+ cp /etc/mkinitrd/DSDT /etc/mkinitramfs/DSDT.aml
+ fi
+
+ fi
+fi
+
if [ ! -e /etc/mkinitramfs/modules ]; then
cp /usr/share/doc/initramfs-tools/examples/modules /etc/mkinitramfs/
fi