45_mount_xenfs 195 B

123456789
  1. #!/bin/sh
  2. # Copyright (C) 2010 OpenWrt.org
  3. do_mount_xenfs() {
  4. grep -q xenfs /proc/filesystems && \
  5. mount -o noatime -t xenfs none /proc/xen
  6. }
  7. boot_hook_add preinit_mount_root do_mount_xenfs