Skip to content

Commit

Permalink
added eudev
Browse files Browse the repository at this point in the history
  • Loading branch information
0mark committed Mar 4, 2015
1 parent 6243c23 commit d7dc958
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion minirc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ ENABLED="${CORE} syslog dbus consolefont keymap @acpid @crond @sshd @ldm @nfsmou

# Choose the udev implementation. Default is auto-detection (systemd-udev if available, busybox else)
#UDEV="systemd"
#UDEV="eudev"
#UDEV="busybox"
#UDEV="eudev"

# Parameter for setfont
FONT="Lat2-Terminus16 -m 8859-2"
Expand Down
9 changes: 8 additions & 1 deletion rc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@ DISABLE=""

ENABLED="${CORE} syslog-ng @crond @dhcpcd @sshd"

[ -f /usr/lib/systemd/systemd ] && UDEV="systemd" || [ -f /usr/sbin/udevd ] && UDEV="eudev" || UDEV="busybox";
if [ -f /usr/lib/systemd/systemd ]; then
UDEV="systemd"
elif [ -f /usr/sbin/udevd ]; then
UDEV="eudev"
else
UDEV="busybox"
fi

NETWORK_INTERFACE="eth0"
WIFI_INTERFACE="wlan0"

Expand Down

0 comments on commit d7dc958

Please sign in to comment.