- Add default udev.conf and fix a mkdir call.

Thanks to Petr Stetiar.
This commit is contained in:
Bernhard Reutner-Fischer 2006-12-10 13:53:28 +00:00
parent 0186dab79f
commit f4d23f7ead
2 changed files with 8 additions and 1 deletions

7
package/udev/udev.conf Normal file
View File

@ -0,0 +1,7 @@
# udev.conf
# The initial syslog(3) priority: "err", "info", "debug" or its
# numerical equivalent. For runtime debugging, the daemons internal
# state can be changed with: "udevcontrol log_priority=<value>".
udev_log="err"
udev_root=/dev

View File

@ -49,7 +49,7 @@ UDEV_CONF:=etc/udev/frugalware/*
$(TARGET_DIR)/$(UDEV_TARGET_BINARY): $(UDEV_DIR)/$(UDEV_BINARY)
-mkdir $(TARGET_DIR)/sys
-mkdir $(TARGET_DIR)/etc/udev/rules.d
-mkdir -p $(TARGET_DIR)/etc/udev/rules.d
$(INSTALL) -D -m 0644 $(UDEV_DIR)/$(UDEV_CONF) \
$(TARGET_DIR)/etc/udev/rules.d
$(MAKE) CROSS_COMPILE=$(TARGET_CROSS) CC=$(TARGET_CC) LD=$(TARGET_CC) \