Advertisement
Guest User

linux-lqx.install-3.1.3-1

a guest
Nov 30th, 2011
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 6.07 KB | None | 0 0
  1. # arg 1:  the new package version
  2. # arg 2:  the old package version
  3.  
  4. KERNEL_NAME=-lqx
  5. KERNEL_VERSION=3.1.0-lqx
  6.  
  7. post_install () {
  8.   # updating module dependencies
  9.   echo ">>> Updating module dependencies. Please wait ..."
  10.   depmod $KERNEL_VERSION
  11.   # generate init ramdisks
  12.   echo ">>> MKINITCPIO SETUP"
  13.   echo ">>> ----------------"
  14.   echo ">>> If you use LVM2, Encrypted root or software RAID,"
  15.   echo ">>> Ensure you enable support in /etc/mkinitcpio.conf ."
  16.   echo ">>> More information about mkinitcpio setup can be found here:"
  17.   echo ">>> http://wiki.archlinux.org/index.php/Mkinitcpio"
  18.   echo ""
  19.   echo ">>> Generating initial ramdisk, using mkinitcpio.  Please wait..."
  20.   /usr/bin/mkinitcpio -p linux${KERNEL_NAME}
  21. }
  22.  
  23. post_upgrade() {
  24.   pacman -Q grub &>/dev/null
  25.   hasgrub=$?
  26.   pacman -Q grub2 &>/dev/null
  27.   hasgrub2=$?
  28.   pacman -Q lilo &>/dev/null
  29.   haslilo=$?
  30.   # reminder notices
  31.   if [ $haslilo -eq 0 ]; then
  32.     echo ">>>"
  33.     if [ $hasgrub -eq 0 -o $hasgrub2 -eq 0 ]; then
  34.       echo ">>> If you use the LILO bootloader, you should run 'lilo' before rebooting."
  35.     else
  36.       echo ">>> You appear to be using the LILO bootloader. You should run"
  37.       echo ">>> 'lilo' before rebooting."
  38.     fi
  39.     echo ">>>"
  40.   fi
  41.  
  42.   if grep "^[^#]*/boot" /etc/fstab 2>&1 >/dev/null; then
  43.     if ! grep "/boot" /etc/mtab 2>&1 >/dev/null; then
  44.       echo "WARNING: /boot appears to be a seperate partition but is not mounted"
  45.       echo "         This is most likely not what you want.  Please mount your /boot"
  46.       echo "         partition and reinstall the kernel unless you are sure this is OK"
  47.     fi
  48.   fi
  49.  
  50.   if [ "`vercmp $2 2.6.13`" -lt 0 ]; then
  51.     # important upgrade notice
  52.     echo ">>>"
  53.     echo ">>> IMPORTANT KERNEL UPGRADE NOTICE"
  54.     echo ">>> -------------------------------"
  55.     echo ">>> As of kernel 2.6.13, DevFS is NO LONGER AVAILABLE!"
  56.     echo ">>> If you still use DevFS, please make the transition to uDev before"
  57.     echo ">>> rebooting.  If you really need to stay with DevFS for some reason,"
  58.     echo ">>> then you can manually downgrade to an older version:"
  59.     echo ">>>"
  60.     echo ">>> # pacman -U http://archlinux.org/~judd/kernel/kernel26-scsi-2.6.12.2-1.pkg.tar.gz"
  61.     echo ">>>"
  62.     echo ">>> If you choose to downgrade, don't forget to add kernel26-scsi to your"
  63.     echo ">>> IgnorePkg list in /etc/pacman.conf"
  64.     echo ">>>"
  65.     echo ">>> (NOTE: The following portion applies to uDev users as well!)"
  66.     echo ">>>"
  67.     echo ">>> If you use any DevFS paths in your GRUB menu.lst, then you will not"
  68.     echo ">>> be able to boot!  Change your root= parameter to use the classic"
  69.     echo ">>> naming scheme."
  70.     echo ">>>"
  71.     echo ">>> EXAMPLES:"
  72.     echo ">>> - change root=/dev/discs/disc0/part3 to root=/dev/sda3"
  73.     echo ">>> - change root=/dev/md/0 to root=/dev/md0"
  74.     echo ">>>"
  75.   fi
  76.   # generate new init ramdisk
  77.   if [ "`vercmp $2 2.6.18`" -lt 0 ]; then
  78.     echo ">>> --------------------------------------------------------------"
  79.     echo ">>> |                          WARNING:                          |"
  80.     echo ">>> |mkinitrd is not supported anymore in kernel >=2.6.18 series!|"
  81.     echo ">>> |              Please change to Mkinitcpio setup.            |"
  82.     echo ">>> --------------------------------------------------------------"
  83.     echo ">>>"
  84.   fi
  85.   # updating module dependencies
  86.   echo ">>> Updating module dependencies. Please wait ..."
  87.   depmod $KERNEL_VERSION
  88.   echo ">>> MKINITCPIO SETUP"
  89.   echo ">>> ----------------"
  90.   if [ "`vercmp $2 2.6.18`" -lt 0 ]; then
  91.     echo ">>> Please change your bootloader config files:"
  92.     echo ">>> Grub: /boot/grub/menu.lst | Lilo: /etc/lilo.conf"
  93.     echo "------------------------------------------------"
  94.     echo "| - initrd26.img to kernel26${KERNEL_NAME}.img               |"
  95.     echo "| - initrd26-full.img to kernel26${KERNEL_NAME}-fallback.img |"
  96.     echo "------------------------------------------------"
  97.   fi
  98.   if [ "`vercmp $2 2.6.19`" -lt 0 ]; then
  99.     echo ""
  100.     echo ">>> New PATA/IDE subsystem - EXPERIMENTAL"
  101.     echo ">>> ----------"
  102.     echo ">>> To use the new pata drivers, change the 'ide' hook "
  103.     echo ">>> to 'pata' in /etc/mkinicpio.conf HOOKS="
  104.     echo ">>> The new system changes: /dev/hd? to /dev/sd?"
  105.     echo ">>> Don't forget to modify GRUB, LILO and fstab to the"
  106.     echo ">>> new naming system. "
  107.     echo ">>> eg: hda3 --> sda3, hdc8 --> sdc8"
  108.     echo ""
  109.     echo ">>> piix/ata_piix (Intel chipsets) - IMPORTANT"
  110.     echo "----------"
  111.     echo ">>> If you have enabled ide/pata/sata HOOKs in /etc/mkinitcpio.conf"
  112.     echo ">>> the 'ata_piix' module will be used."
  113.     echo ">>> This may cause your devices to shift names, eg:"
  114.     echo ">>> - IDE: devices from hd? to sd?"
  115.     echo ">>> - SATA: sda might shift to sdc if you have 2 other disks on a PIIX IDE port."
  116.     echo ">>> To check if this will affect you, check 'mkinitcpio -M' for piix/ata_piix"
  117.     echo ""
  118.   fi
  119.  
  120.   echo ">>> If you use LVM2, Encrypted root or software RAID,"
  121.   echo ">>> Ensure you enable support in /etc/mkinitcpio.conf ."
  122.   echo ">>> More information about mkinitcpio setup can be found here:"
  123.   echo ">>> http://wiki.archlinux.org/index.php/Mkinitcpio"
  124.   echo ""
  125.   echo ">>> Generating initial ramdisk, using mkinitcpio.  Please wait..."
  126. if [ "`vercmp $2 2.6.19`" -lt 0 ]; then
  127.   /usr/bin/mkinitcpio -p linux${KERNEL_NAME} -m "ATTENTION:\nIf you get a kernel panic below
  128. and are using an Intel chipset, append 'earlymodules=piix' to the
  129. kernel commandline"
  130. else
  131.   /usr/bin/mkinitcpio -p linux${KERNEL_NAME}
  132. fi
  133. if [ "`vercmp $2 2.6.21`" -lt 0 ]; then
  134.   echo ""
  135.   echo "Important ACPI Information:"
  136.   echo ">>> Since 2.6.20.7 all possible ACPI parts are modularized."
  137.   echo ">>> The modules are located at:"
  138.   echo ">>> /lib/modules/$(uname -r)/kernel/drivers/acpi"
  139.   echo ">>> For more information about ACPI modules check this wiki page:"
  140.   echo ">>> 'http://wiki.archlinux.org/index.php/ACPI_modules'"
  141. fi
  142. }
  143.  
  144. post_remove() {
  145.   rm -f /boot/initramfs-linux${KERNEL_NAME}.img
  146.   rm -f /boot/initramfs-linux${KERNEL_NAME}-fallback.img
  147. }
  148.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement