Idunn is an small system aiming to give an early rescue/install environment with ssh support, making life easier when one doesn't have physical access to machine.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.1 KiB

  1. #!/bin/sh
  2. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. #
  5. # Filename: target/idunn/initramfs/sbin_resume.sh
  6. # Copyright (C) 2008 The OpenSDE Project
  7. #
  8. # More information can be found in the files COPYING and README.
  9. #
  10. # This program is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; version 2 of the License. A copy of the
  13. # GNU General Public License can be found in the file COPYING.
  14. # --- SDE-COPYRIGHT-NOTE-END ---
  15. # just once!
  16. LOCK=/var/run/init.lock
  17. ln -s / $LOCK 2> /dev/null || return
  18. if /etc/rc.d/rc.trymount -v; then
  19. # rootfs mounted
  20. . /etc/rc.d/functions.in
  21. . /etc/conf/idunn
  22. if ! grep -q "^[^ ]* $rootfs [^ ]* $root_mode[, ]" /proc/mounts; then
  23. title "Remouting $rootfs as $root_mode"
  24. check mount -o remount,$root_mode "$rootfs"
  25. status
  26. fi
  27. title "Checking for init ($init)"
  28. if [ -n "$init" -a -x "$rootfs$init" ]; then
  29. check touch /var/run/.idunn-resume
  30. else
  31. check false
  32. fi
  33. status
  34. else
  35. error=1
  36. fi
  37. rm -f $LOCK
  38. exit $error