From 2f8734a2e2f438dfc437ce7f29d98e3ff9572980 Mon Sep 17 00:00:00 2001 From: Geoff Levand Date: Sun, 12 Feb 2012 11:41:16 -0800 Subject: Rename pb-test.c to discover-test.c Signed-off-by: Geoff Levand --- ui/test/discover-test.c | 61 +++++++++++++++++++++++++++++++++++++++++++++++++ ui/test/pb-test.c | 61 ------------------------------------------------- 2 files changed, 61 insertions(+), 61 deletions(-) create mode 100644 ui/test/discover-test.c delete mode 100644 ui/test/pb-test.c diff --git a/ui/test/discover-test.c b/ui/test/discover-test.c new file mode 100644 index 0000000..f3ef746 --- /dev/null +++ b/ui/test/discover-test.c @@ -0,0 +1,61 @@ + +#include + +#include "ui/common/discover-client.h" + +static int print_device_add(struct device *device, + void __attribute__((unused)) *arg) +{ + struct boot_option *opt; + + printf("new device:\n"); + printf("\tid: %s\n", device->id); + printf("\tname: %s\n", device->name); + printf("\tdesc: %s\n", device->description); + printf("\ticon: %s\n", device->icon_file); + + printf("\tboot options:\n"); + list_for_each_entry(&device->boot_options, opt, list) { + printf("\t\tid: %s\n", opt->id); + printf("\t\tname: %s\n", opt->name); + printf("\t\tdesc: %s\n", opt->description); + printf("\t\ticon: %s\n", opt->icon_file); + printf("\t\tboot: %s\n", opt->boot_image_file); + printf("\t\tinit: %s\n", opt->initrd_file); + printf("\t\targs: %s\n", opt->boot_args); + } + + return 0; +} + +static void print_device_remove(struct device *device, + void __attribute__((unused)) *arg) +{ + printf("removed device:\n"); + printf("\tid: %s\n", device->id); + printf("\tname: %s\n", device->name); +} + +static struct discover_client_ops client_ops = { + .device_add = print_device_add, + .device_remove = print_device_remove, +}; + +int main(void) +{ + struct discover_client *client; + + client = discover_client_init(&client_ops, NULL); + if (!client) + return -1; + + for (;;) { + int rc; + + rc = discover_client_process(client); + if (rc) + break; + } + + return 0; +} diff --git a/ui/test/pb-test.c b/ui/test/pb-test.c deleted file mode 100644 index f3ef746..0000000 --- a/ui/test/pb-test.c +++ /dev/null @@ -1,61 +0,0 @@ - -#include - -#include "ui/common/discover-client.h" - -static int print_device_add(struct device *device, - void __attribute__((unused)) *arg) -{ - struct boot_option *opt; - - printf("new device:\n"); - printf("\tid: %s\n", device->id); - printf("\tname: %s\n", device->name); - printf("\tdesc: %s\n", device->description); - printf("\ticon: %s\n", device->icon_file); - - printf("\tboot options:\n"); - list_for_each_entry(&device->boot_options, opt, list) { - printf("\t\tid: %s\n", opt->id); - printf("\t\tname: %s\n", opt->name); - printf("\t\tdesc: %s\n", opt->description); - printf("\t\ticon: %s\n", opt->icon_file); - printf("\t\tboot: %s\n", opt->boot_image_file); - printf("\t\tinit: %s\n", opt->initrd_file); - printf("\t\targs: %s\n", opt->boot_args); - } - - return 0; -} - -static void print_device_remove(struct device *device, - void __attribute__((unused)) *arg) -{ - printf("removed device:\n"); - printf("\tid: %s\n", device->id); - printf("\tname: %s\n", device->name); -} - -static struct discover_client_ops client_ops = { - .device_add = print_device_add, - .device_remove = print_device_remove, -}; - -int main(void) -{ - struct discover_client *client; - - client = discover_client_init(&client_ops, NULL); - if (!client) - return -1; - - for (;;) { - int rc; - - rc = discover_client_process(client); - if (rc) - break; - } - - return 0; -} -- cgit v1.2.1