X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=ui%2Ftest%2Fdiscover-test.c;h=6fb14dec2059b9c83c0184174b885e1219e1c5d1;hp=576f293f6b92881f2944baca4681cbcfc288a307;hb=5f8fa2c151b8f0e568dc4015b7d307250b354a04;hpb=bc4114e2235163bd88456c25cc0a908d86151f93 diff --git a/ui/test/discover-test.c b/ui/test/discover-test.c index 576f293..6fb14de 100644 --- a/ui/test/discover-test.c +++ b/ui/test/discover-test.c @@ -8,10 +8,16 @@ static const char *device_type_string(enum device_type type) switch (type) { case DEVICE_TYPE_DISK: return "disk"; + case DEVICE_TYPE_USB: + return "usb"; case DEVICE_TYPE_NETWORK: return "network"; case DEVICE_TYPE_OPTICAL: return "optical"; + case DEVICE_TYPE_ANY: + return "any"; + case DEVICE_TYPE_LUKS: + return "encrypted"; case DEVICE_TYPE_UNKNOWN: return "unknown"; } @@ -71,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); }