Changes in uspace/app/sysinst/sysinst.c [a6fc88a:6c4eedf] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sysinst/sysinst.c
ra6fc88a r6c4eedf 38 38 #include <block.h> 39 39 #include <byteorder.h> 40 #include <cap.h> 40 41 #include <errno.h> 41 42 #include <fdisk.h> … … 89 90 fdisk_part_t *part; 90 91 fdisk_part_spec_t pspec; 91 fdisk_cap_t cap;92 cap_spec_t cap; 92 93 service_id_t sid; 93 94 int rc; … … 171 172 172 173 printf("sysinst_fs_mount(): verify filesystem server result\n"); 173 if (texit != TASK_EXIT_NORMAL || trc != 0) 174 return EIO; 174 if (texit != TASK_EXIT_NORMAL || trc != 0) { 175 printf("sysinst_fs_mount(): not successful, but could be already loaded.\n"); 176 } 175 177 176 178 rc = vfs_link_path(MOUNT_POINT, KIND_DIRECTORY, NULL); … … 209 211 210 212 printf("sysinst_copy_boot_files(): verify filesystem server result\n"); 211 if (texit != TASK_EXIT_NORMAL || trc != 0) 212 return EIO; 213 if (texit != TASK_EXIT_NORMAL || trc != 0) { 214 printf("sysinst_fs_mount(): not successful, but could be already loaded.\n"); 215 } 213 216 214 217 printf("sysinst_copy_boot_files(): create CD mount point\n");
Note:
See TracChangeset
for help on using the changeset viewer.