Displaying 3 results from an estimated 3 matches for "cmdlin".
Did you mean:
cmdline
2016 Mar 20
0
[PATCH 0/1] EFI image booting capabilities
...gt; { "fdimage", IMAGE_TYPE_FDIMAGE },
> { "com32", IMAGE_TYPE_COM32 },
> { "config", IMAGE_TYPE_CONFIG },
> + { "efi", IMAGE_TYPE_EFI },
> { NULL, 0 },
> };
>
> @@ -89,6 +90,13 @@ __export void execute(const char *cmdlin
> do_sysappend(q);
> }
>
> +#ifdef __FIRMWARE_BIOS__
> + if(type==IMAGE_TYPE_EFI) {
> + printf("Bios core cannot load efi image %s\n",kernel);
> + return;
> + }
> +#endif
> +
> dpr...
2015 Feb 20
6
[PATCH 0/1] EFI image booting capabilities
...t struct image_types image_boot_type
{ "fdimage", IMAGE_TYPE_FDIMAGE },
{ "com32", IMAGE_TYPE_COM32 },
{ "config", IMAGE_TYPE_CONFIG },
+ { "efi", IMAGE_TYPE_EFI },
{ NULL, 0 },
};
@@ -89,6 +90,13 @@ __export void execute(const char *cmdlin
do_sysappend(q);
}
+#ifdef __FIRMWARE_BIOS__
+ if(type==IMAGE_TYPE_EFI) {
+ printf("Bios core cannot load efi image %s\n",kernel);
+ return;
+ }
+#endif
+
dprintf("kernel is %s, args = %s type = %d \n", kernel, args, type);...
2017 Feb 04
8
[PATCH v8 0/4] Import directly from OVA tar archive if possible
v8:
- split the big patch into several commits
v7:
- rebased because patch 1/3 has been pushed
- changes to nsplit have been dropped (2/3)
- addressed Richard's comments, notably the subfolder function was moved to
mllib and renamed to subdirectory
v6:
- just rebase
v5:
- rebase, patches 1,3,5 were merged
- 1/3: we still need to discuss whether to detect compressed discs
- 2/3:
-