I had to make another change to /etc/init.d/udev:

in mount_tmpfs() I had to change tmpfs to devtmpfs:


mount_tmpfs() {
  if grep -E -q "^[^[:space:]]+ /dev (dev)?tmpfs" /proc/mounts; then
    mount -n -o remount,${dev_mount_options} -t devtmpfs devtmpfs /dev
    return
  fi

  if ! mount -n -o $dev_mount_options -t devtmpfs devtmpfs /dev; then
    log_failure_msg "udev requires tmpfs support, not started"
    log_end_msg 1
  fi

  return 0
}


Regards,
-- 
Wolfgang Walter
Studentenwerk München
Anstalt des öffentlichen Rechts


--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to