X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=lib%2Ftypes%2Ftypes.h;h=b71f0dd5903027685d53dade24a3a03b551fd65d;hp=9bb800ca4d125daa5d57169c8256e3d898eb05ea;hb=5ac810ae1779fdd730637d146faf8a762bedd522;hpb=6f381c405612e0056f48d2871ff1be3faaca4776 diff --git a/lib/types/types.h b/lib/types/types.h index 9bb800c..b71f0dd 100644 --- a/lib/types/types.h +++ b/lib/types/types.h @@ -73,5 +73,42 @@ struct system_info { unsigned int n_interfaces; }; +#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; +}; #endif /* _TYPES_H */