]> git.ozlabs.org Git - petitboot/blobdiff - discover/boot.h
discover/platform-powerpc: Avoid confusing gateway and URL
[petitboot] / discover / boot.h
index 21904950c0cb74f077919210876fcb2ce6a1aa45..0f3dcf7cdbf246ebd04da62f29c736dc487b5cea 100644 (file)
@@ -7,7 +7,7 @@
 struct boot_option;
 struct boot_command;
 
-typedef void (*boot_status_fn)(void *arg, struct boot_status *);
+typedef void (*boot_status_fn)(void *arg, struct status *);
 
 struct boot_task *boot(void *ctx, struct discover_boot_option *opt,
                struct boot_command *cmd, int dry_run,
@@ -26,12 +26,13 @@ struct boot_task {
        char *local_initrd_override;
        char *local_dtb_override;
        const char *args;
-       const char *boot_tty;
+       const char *boot_console;
        boot_status_fn status_fn;
        void *status_arg;
        bool dry_run;
        bool cancelled;
        bool verify_signature;
+       bool decrypt_files;
        struct load_url_result *image_signature;
        struct load_url_result *initrd_signature;
        struct load_url_result *dtb_signature;
@@ -40,9 +41,20 @@ struct boot_task {
        const char *local_initrd_signature;
        const char *local_dtb_signature;
        const char *local_cmdline_signature;
+       struct list resources;
+};
+
+struct boot_resource {
+       struct load_url_result *result;
+       struct pb_url *url;
+       const char **local_path;
+       const char *name;
+
+       struct list_item list;
 };
 
 enum {
+       KEXEC_LOAD_DECRYPTION_FALURE = 252,
        KEXEC_LOAD_SIG_SETUP_INVALID = 253,
        KEXEC_LOAD_SIGNATURE_FAILURE = 254,
 };