ia64/xen-unstable
changeset 16812:1e6455d608bd
minios: do not exit if FS backend not found.
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Fri Jan 18 16:20:47 2008 +0000 (2008-01-18) |
parents | 420f98121491 |
children | a868bd4236e6 3f26758bcc02 |
files | extras/mini-os/fs-front.c |
line diff
1.1 --- a/extras/mini-os/fs-front.c Fri Jan 18 16:20:13 2008 +0000 1.2 +++ b/extras/mini-os/fs-front.c Fri Jan 18 16:20:47 2008 +0000 1.3 @@ -1121,9 +1121,6 @@ void init_fs_frontend(void) 1.4 1.5 fs_import = import; 1.6 1.7 - if (!fs_import) { 1.8 + if (!fs_import) 1.9 printk("No FS import\n"); 1.10 - sleep(1000); 1.11 - do_exit(); 1.12 - } 1.13 }