diff options
author | first last <mainaddress@runbox.com> | 2024-05-07 18:57:21 -0400 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-05-09 16:57:39 +0200 |
commit | 78480003853381e959592572038b064777228fb3 (patch) | |
tree | 9619867e5ea06c64a6cd2319f38a0b5c96ee6d38 /startup | |
parent | b4d1e3e3a9a8ff17aaef006289c05830801c7c52 (diff) | |
download | hurd-78480003853381e959592572038b064777228fb3.tar.gz hurd-78480003853381e959592572038b064777228fb3.tar.bz2 hurd-78480003853381e959592572038b064777228fb3.zip |
startup: wait for any kind of bootstrap filesystem
The bootstrap filesystem doesn't have to be ext2fs
Message-ID: <8932f426-8ab5-4344-81a6-52a90dfada09@runbox.com>
Diffstat (limited to 'startup')
-rw-r--r-- | startup/startup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/startup/startup.c b/startup/startup.c index 27af818b..a1214800 100644 --- a/startup/startup.c +++ b/startup/startup.c @@ -1516,7 +1516,7 @@ S_startup_essential_task (mach_port_t server, } else if (!strcmp (name, "proc")) procinit = 1; - else if (!strcmp (name, "ext2fs")) + else if (strlen (name) >= 2 && !strcmp (name + strlen(name) - 2, "fs")) fsinit = 1; else { |