Summary: | systemd-217 Failed to start udev Kernel Device Manager | ||
---|---|---|---|
Product: | systemd | Reporter: | Ralph_Ulrich <eulenreich> |
Component: | general | Assignee: | Zbigniew Jedrzejewski-Szmek <zbyszek> |
Status: | RESOLVED FIXED | QA Contact: | systemd-bugs |
Severity: | normal | ||
Priority: | medium | ||
Version: | unspecified | ||
Hardware: | Other | ||
OS: | All | ||
Whiteboard: | |||
i915 platform: | i915 features: |
Description
Ralph_Ulrich
2014-10-30 17:12:00 UTC
This little check config script: #!/bin/bash cd /usr/share/doc c=/usr/src/linux/.config bzcat systemd*/README.bz2 \ |grep ' CONFIG_' \ |sed -e's/^[[:blank:]]*//' -e's/ .*$//' -e's/\=.*$//' \ |while read l ; do grep -v '#' $c | grep "${l}=" \ || echo " ${l} is not activated" done --- outputs me: CONFIG_DEVTMPFS=y CONFIG_CGROUPS=y CONFIG_INOTIFY_USER=y CONFIG_SIGNALFD=y CONFIG_TIMERFD=y CONFIG_EPOLL=y CONFIG_NET=y CONFIG_SYSFS=y CONFIG_PROC_FS=y CONFIG_FHANDLE=y CONFIG_SYSFS_DEPRECATED is not activated CONFIG_UEVENT_HELPER_PATH is not activated CONFIG_FW_LOADER_USER_HELPER is not activated CONFIG_DMIID=y CONFIG_BLK_DEV_BSG=y CONFIG_NET_NS=y CONFIG_IPV6=y CONFIG_AUTOFS4_FS=m CONFIG_TMPFS_POSIX_ACL=y CONFIG_TMPFS_XATTR=y CONFIG_SECCOMP=y CONFIG_CGROUP_SCHED is not activated CONFIG_FAIR_GROUP_SCHED is not activated CONFIG_SCHEDSTATS is not activated CONFIG_SCHED_DEBUG is not activated CONFIG_EFIVAR_FS=y CONFIG_EFI_PARTITION=y CONFIG_AUDIT is not activated This solved my issue: Adding a single comment sign to /etc/udev/udev.conf #udev_log="warn" I am pretty sure "warn" once was a valid loglevel. Reconfirmed by uncommenting - again the same failure. Docs fixed in http://cgit.freedesktop.org/systemd/systemd/commit/?id=e03234a160, and behaviour in http://cgit.freedesktop.org/systemd/systemd/commit/?id=ee7122c0ec. Please check that current git works for you. # cat /etc/udev/udev.conf |grep log udev_log="somthin" --- # journalctl -b ... Nov 01 23:15:02 maci kernel: random: nonblocking pool is initialized Nov 01 23:15:02 maci systemd-journal[84]: Journal started Nov 01 23:15:02 maci systemd-fsck[77]: libudev: udev_new: /etc/udev/udev.conf:4: invalid logging level 'somthin', ignoring. Nov 01 23:15:02 maci udevadm[80]: libudev: udev_new: /etc/udev/udev.conf:4: invalid logging level 'somthin', ignoring. Nov 01 23:15:02 maci udevadm[90]: libudev: udev_new: /etc/udev/udev.conf:4: invalid logging level 'somthin', ignoring. Nov 01 23:15:03 maci systemd-fsck[77]: gentoo: clean, 220201/786432 files, 1707596/3145728 blocks Nov 01 23:15:03 maci kernel: EXT4-fs (sda4): re-mounted. Opts: (null) Nov 01 23:15:04 maci systemd-udevd[113]: libudev: udev_new: /etc/udev/udev.conf:4: invalid logging level 'somthin', ignoring. Nov 01 23:15:04 maci systemd-udevd[113]: starting version 217 Nov 01 23:15:04 maci systemd-udevd[113]: Network interface NamePolicy= disabled on kernel commandline, ignoring. Nov 01 23:15:04 maci kernel: Monitor-Mwait will be used to enter C-1 state .... --- Wonderful ! > check that current git works for you.
Though I only patched systemd-217 using your two commits shown here.
I didnt test your current devel branch!
|
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.