updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / uswsusp-fbsplash / INSTALL
blob97151919c255ab3275ade6587ce99f9bbd53c364
1 #!/bin/bash
3 # args: new-ver
4 post_install() {
5 cat << EOT
6 ------------------------------------------------------------
7 > The new Software Suspend does not use kernel parameters
8 > to determine the suspend partition, instead it consults
9 > /etc/suspend.conf when booting.
10 > You MUST edit this file before you update your initcpio.
11 > Point the "resume device" variable to your swap partition.
12 > You will also need to update your mkinitcpio.conf file to
13 > include the uresume hook. Put it somewhere after udev.
14 > Then rebuild your initcpio with something like:
15 > mkinitcpio -p kernel26
16 ------------------------------------------------------------
17 EOT
20 # args: new-ver old-ver
21 post_upgrade() {
22 cat << EOT
23 ------------------------------------------------------------
24 > To update the uresume hook, please rebuild your initcpio
25 > with something like: mkinitcpio -p kernel26
26 ------------------------------------------------------------
27 EOT
30 # vim:set ft=sh: