]> git.ozlabs.org Git - petitboot/blobdiff - ui/test/discover-test.c
discover/grub2: Allow to separate the --id argument using a space char
[petitboot] / ui / test / discover-test.c
index b099b59128b7bbec99f34845a708d89dc45ea9a7..6fb14dec2059b9c83c0184174b885e1219e1c5d1 100644 (file)
@@ -16,6 +16,8 @@ static const char *device_type_string(enum device_type type)
                return "optical";
        case DEVICE_TYPE_ANY:
                return "any";
+       case DEVICE_TYPE_LUKS:
+               return "encrypted";
        case DEVICE_TYPE_UNKNOWN:
                return "unknown";
        }
@@ -75,14 +77,12 @@ static void print_device_remove(struct device *device,
        printf("\tname: %s\n", device->name);
 }
 
-static void print_status(struct boot_status *status,
+static void print_status(struct status *status,
        void __attribute__((unused)) *arg)
 {
        printf("status:\n");
        printf("\ttype:     %d\n", status->type);
        printf("\tmessage:  %s\n", status->message);
-       printf("\tdetail:   %s\n", status->detail);
-       printf("\tprogress: %d\n", status->progress);
 
 }