Your IP : 216.73.216.155


Current Path : /usr/share/initramfs-tools/scripts/init-bottom/
Upload File :
Current File : //usr/share/initramfs-tools/scripts/init-bottom/udev

#!/bin/sh -e

PREREQS=""

prereqs() { echo "$PREREQS"; }

case "$1" in
    prereqs)
    prereqs
    exit 0
    ;;
esac

# Stop udevd, we'll miss a few events while we run init, but we catch up
for proc in /proc/[0-9]*; do
  [ -x $proc/exe ] || continue
  if [ "$(readlink $proc/exe)" = /sbin/udevd ]; then
    # errors must be ignored due to a race with udevd child processes
    # naturally terminating
    kill ${proc#/proc/} 2> /dev/null || true
  fi
done

udev_root="/dev"
if [ -e /etc/udev/udev.conf ]; then
  . /etc/udev/udev.conf
fi

# move the /dev tmpfs to the rootfs
mount -n -o move /dev ${rootmnt}${udev_root}

# create a temporary symlink to the final /dev for other initramfs scripts
nuke /dev
ln -s ${rootmnt}${udev_root} /dev