]> git.ozlabs.org Git - petitboot/blobdiff - lib/pb-config/pb-config.h
lib/pb-config: Implement config_set
[petitboot] / lib / pb-config / pb-config.h
index 6a64ef116670030783e685350b82313f24add494..90babaa1d22dabe07e5652bca7080dbab8531bba 100644 (file)
@@ -4,6 +4,8 @@
 #include <stdbool.h>
 #include <stdint.h>
 
+#include <types/types.h>
+
 #define HWADDR_SIZE    6
 
 struct interface_config {
@@ -30,16 +32,27 @@ 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;
 };
 
 
 int config_init(void *ctx);
 const struct config *config_get(void);
+int config_set(struct config *config);
 void config_set_autoboot(bool autoboot_enabled);
 int config_fini(void);
 
+/* for use by the storage backends */
+void config_set_defaults(struct config *config);
+
 #endif /* CONFIGURATION_H */