45_mount_xenfs 185 B

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