X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=lib%2Fpb-config%2Fpb-config.h;h=2bcc251a47bee565798b4574131755ee17064254;hp=523cada5cab3f745c792ff2d748610ee14f6832e;hb=1a72ffef7837cd2aa3e6be945ec03fb6b5caa51a;hpb=c12cebabba5c4647f558ef40f8cbc8c6a204593e diff --git a/lib/pb-config/pb-config.h b/lib/pb-config/pb-config.h index 523cada..2bcc251 100644 --- a/lib/pb-config/pb-config.h +++ b/lib/pb-config/pb-config.h @@ -1,54 +1,9 @@ -#ifndef CONFIGURATION_H -#define CONFIGURATION_H - -#include -#include +#ifndef PB_CONFIG_H +#define PB_CONFIG_H #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); -void config_set_autoboot(bool autoboot_enabled); -int config_fini(void); +struct config *config_copy(void *ctx, const struct config *src); -#endif /* CONFIGURATION_H */ +#endif /* PB_CONFIG_H */