From 2ee42ce22b643f865e52088b0f0451ec1f3a8f09 Mon Sep 17 00:00:00 2001 From: Benjamin Herrenschmidt Date: Mon, 2 Apr 2007 16:36:25 +1000 Subject: [PATCH] Add USE_FAKE_SOCKET compile option Signed-off-by: Benjamin Herrenschmidt --- devices/udev-helper.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/devices/udev-helper.c b/devices/udev-helper.c index f54ca23..c113e55 100644 --- a/devices/udev-helper.c +++ b/devices/udev-helper.c @@ -16,10 +16,14 @@ #include #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; -- 2.39.2