chiark / gitweb /
[PATCH] Initial namedev parsing of config files
[elogind.git] / udev.h
diff --git a/udev.h b/udev.h
index 83004bb791f5520d9130370f7857d475a60f7dbb..fb35cad49ac608fb02eef055ce4abdc3de1df967 100644 (file)
--- a/udev.h
+++ b/udev.h
 
 
 /* Lots of constants that should be in a config file sometime */
+
+/* Location of sysfs mount */
 #define SYSFS_ROOT     "/sys"
-#define MKNOD          "/bin/mknod"
 
+/* Where udev should create its device nodes, trailing / needed */
+#define UDEV_ROOT      "/udev/"
+
+/* device file in sysfs that contains major/minor number, leading / needed */
+#define DEV_FILE       "/dev"
+
+/* Binaries that udev calls to do stuff */
+#define MKNOD          "/bin/mknod"
 
 extern int log_message (int level, const char *format, ...);