X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=lib%2Fpb-config%2Fpb-config.h;h=1cfaca3b1a28332124b00cbd50b79587701c97c7;hp=90babaa1d22dabe07e5652bca7080dbab8531bba;hb=5ac810ae1779fdd730637d146faf8a762bedd522;hpb=4a2dbb71fdcf234302760d20333420a6e6566d56 diff --git a/lib/pb-config/pb-config.h b/lib/pb-config/pb-config.h index 90babaa..1cfaca3 100644 --- a/lib/pb-config/pb-config.h +++ b/lib/pb-config/pb-config.h @@ -6,44 +6,6 @@ #include -#define HWADDR_SIZE 6 - -struct interface_config { - uint8_t hwaddr[HWADDR_SIZE]; - bool ignore; - enum { - CONFIG_METHOD_DHCP, - CONFIG_METHOD_STATIC, - } method; - union { - struct { - } dhcp_config; - struct { - char *address; - char *gateway; - } static_config; - }; -}; - -struct network_config { - struct interface_config **interfaces; - int n_interfaces; - const char **dns_servers; - 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; -}; - int config_init(void *ctx); const struct config *config_get(void);