]> git.ozlabs.org Git - petitboot/blobdiff - lib/pb-config/pb-config.h
lib/pb-config/powerpc-nvram: Use talloc_zero for interface configs
[petitboot] / lib / pb-config / pb-config.h
index 748b409ada3c04a5ff85602c55b33fc53291685a..523cada5cab3f745c792ff2d748610ee14f6832e 100644 (file)
@@ -4,6 +4,8 @@
 #include <stdbool.h>
 #include <stdint.h>
 
+#include <types/types.h>
+
 #define HWADDR_SIZE    6
 
 struct interface_config {
@@ -19,7 +21,6 @@ struct interface_config {
                struct {
                        char *address;
                        char *gateway;
-                       char *dns;
                } static_config;
        };
 };
@@ -27,11 +28,20 @@ struct interface_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;
 };