Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sysinst/sysinst.c

    ra6fc88a r6c4eedf  
    3838#include <block.h>
    3939#include <byteorder.h>
     40#include <cap.h>
    4041#include <errno.h>
    4142#include <fdisk.h>
     
    8990        fdisk_part_t *part;
    9091        fdisk_part_spec_t pspec;
    91         fdisk_cap_t cap;
     92        cap_spec_t cap;
    9293        service_id_t sid;
    9394        int rc;
     
    171172
    172173        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        }
    175177
    176178        rc = vfs_link_path(MOUNT_POINT, KIND_DIRECTORY, NULL);
     
    209211
    210212        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        }
    213216
    214217        printf("sysinst_copy_boot_files(): create CD mount point\n");
Note: See TracChangeset for help on using the changeset viewer.