]> git.ozlabs.org Git - petitboot/blobdiff - devices/udev-helper.c
Add USE_FAKE_SOCKET compile option
[petitboot] / devices / udev-helper.c
index f54ca238fd03178d165a169c520c36efa2f6b5e0..c113e55432177217c7fc144ded1b9e4ddc11ce69 100644 (file)
 #include <sys/ioctl.h>
 
 #include "udev-helper.h"
-#define REMOVABLE_SLEEP_DELAY  2
-
 #include "petitboot-paths.h"
 
+/* Define below to operate without the frontend */
+#undef USE_FAKE_SOCKET
+
+/* Delay in seconds between polling of removable devices */
+#define REMOVABLE_SLEEP_DELAY  2
+
 extern struct parser native_parser;
 extern struct parser yaboot_parser;
 static FILE *logf;
@@ -195,7 +199,7 @@ int remove_device(const char *dev_path)
 
 int connect_to_socket()
 {
-#if 1
+#ifndef USE_FAKE_SOCKET
        int fd;
        struct sockaddr_un addr;