45pcmcia 336 B

12345678910111213141516171819202122
  1. #!/bin/bash
  2. . "${PM_FUNCTIONS}"
  3. command_exists /sbin/pccardctl || exit $NA
  4. case "$1" in
  5. hibernate|suspend)
  6. echo "ejecting PCMCIA cards..."
  7. /sbin/pccardctl eject
  8. ;;
  9. thaw|resume)
  10. echo "inserting PCMCIA cards..."
  11. /sbin/pccardctl insert
  12. ;;
  13. *) exit $NA
  14. ;;
  15. esac
  16. exit 0