X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=lib%2Fpb-config%2Fpb-config.h;h=523cada5cab3f745c792ff2d748610ee14f6832e;hp=6a64ef116670030783e685350b82313f24add494;hb=c12cebabba5c4647f558ef40f8cbc8c6a204593e;hpb=f53d1e4dc6735b90806ceed54f9d73572b5960f5 diff --git a/lib/pb-config/pb-config.h b/lib/pb-config/pb-config.h index 6a64ef1..523cada 100644 --- a/lib/pb-config/pb-config.h +++ b/lib/pb-config/pb-config.h @@ -4,6 +4,8 @@ #include #include +#include + #define HWADDR_SIZE 6 struct interface_config { @@ -30,9 +32,16 @@ struct network_config { int n_dns_servers; }; +struct boot_priority { + enum device_type type; +}; + struct config { bool autoboot_enabled; + int autoboot_timeout_sec; struct network_config network; + struct boot_priority *boot_priorities; + int n_boot_priorities; };