[systemd-devel] [PATCH v2] efi-boot-generator: Continue if /boot does not exist

Tobias Hunger tobias.hunger at gmail.com
Fri Apr 10 17:13:31 PDT 2015


/boot does not exist on a stateless system, so do not get
confused by that.
---
 src/efi-boot-generator/efi-boot-generator.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/efi-boot-generator/efi-boot-generator.c b/src/efi-boot-generator/efi-boot-generator.c
index 58c4cc2..5a9bfd3 100644
--- a/src/efi-boot-generator/efi-boot-generator.c
+++ b/src/efi-boot-generator/efi-boot-generator.c
@@ -68,7 +68,10 @@ int main(int argc, char *argv[]) {
                 return EXIT_SUCCESS;
         }
 
-        if (path_is_mount_point("/boot", true) <= 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;
-- 
2.3.5



More information about the systemd-devel mailing list