summaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
Diffstat (limited to 'boot')
-rw-r--r--boot/boot.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/boot/boot.c b/boot/boot.c
index 66810fbe..b2a5a377 100644
--- a/boot/boot.c
+++ b/boot/boot.c
@@ -481,7 +481,9 @@ main (int argc, char **argv, char **envp)
mach_port_allocate (mach_task_self (), MACH_PORT_RIGHT_PORT_SET,
&receive_set);
- if (root_store->class == &store_device_class && root_store->name)
+ if (root_store->class == &store_device_class && root_store->name
+ && (root_store->flags & STORE_ENFORCED)
+ && root_store->num_runs == 1 && store->runs[0].start == 0)
/* Let known device nodes pass through directly. */
bootdevice = root_store->name;
else