Root/target/linux/ifxmips/nfs/base-files/lib/preinit/01_init_nfs_ifxmips

1#!/bin/sh
2
3
4init_nfs() {
5    grep "/dev/root" /proc/mounts | grep -q nfs && {
6        echo "- init nfs -"
7        exec /sbin/init
8    }
9}
10
11boot_hook_add preinit_main init_nfs
12
13

Archive Download this file



interactive