home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / initramfs-tools / hooks / usplash < prev   
Encoding:
Text File  |  2006-08-02  |  448 b   |  30 lines

  1. #!/bin/sh
  2.  
  3. PREREQ="kernelextras"
  4.  
  5. prereqs()
  6. {
  7.     echo "$PREREQ"
  8. }
  9.  
  10. case $1 in
  11. prereqs)
  12.     prereqs
  13.     exit 0
  14.     ;;
  15. esac
  16.  
  17. [ -x /sbin/usplash ] || exit 0
  18.  
  19. . /usr/share/initramfs-tools/hook-functions
  20.  
  21. mkdir -p ${DESTDIR}/usr/lib/usplash
  22.  
  23. copy_exec /sbin/usplash /sbin
  24. copy_exec /sbin/usplash_write /sbin
  25. copy_exec /etc/usplash.conf /etc
  26.  
  27. if [ -f /usr/lib/usplash/usplash-artwork.so ]; then
  28.     copy_exec /usr/lib/usplash/usplash-artwork.so /usr/lib/usplash
  29. fi
  30.