From: Tobias Hunger Date: Sat, 11 Apr 2015 00:13:31 +0000 (+0200) Subject: efi-boot-generator: Continue if /boot does not exist X-Git-Tag: v220~449 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=776c441941632c9bf0fb97a78e4127aff4a60e4e;p=thirdparty%2Fsystemd.git efi-boot-generator: Continue if /boot does not exist /boot does not exist on a stateless system, so do not get confused by that. --- diff --git a/src/efi-boot-generator/efi-boot-generator.c b/src/efi-boot-generator/efi-boot-generator.c index 58c4cc278a2..4842286e2e5 100644 --- a/src/efi-boot-generator/efi-boot-generator.c +++ b/src/efi-boot-generator/efi-boot-generator.c @@ -68,8 +68,10 @@ int main(int argc, char *argv[]) { return EXIT_SUCCESS; } - if (path_is_mount_point("/boot", true) <= 0 && - dir_is_empty("/boot") <= 0) { + r = path_is_mount_point("/boot", true); + if (r == -ENOENT) + log_debug("/boot does not exist, continuing."); + else if (r <= 0 && dir_is_empty("/boot") <= 0) { log_debug("/boot already populated, exiting."); return EXIT_SUCCESS; }