From: Benjamin Herrenschmidt Date: Mon, 2 Apr 2007 06:36:25 +0000 (+1000) Subject: Add USE_FAKE_SOCKET compile option X-Git-Tag: v0.0.1~33 X-Git-Url: https://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=2ee42ce22b643f865e52088b0f0451ec1f3a8f09 Add USE_FAKE_SOCKET compile option Signed-off-by: Benjamin Herrenschmidt --- 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;