Compare commits
1 Commits
360aced7de
...
9f026bfd96
Author | SHA1 | Date |
---|---|---|
Ani Sinha | 9f026bfd96 |
|
@ -75,6 +75,9 @@
|
|||
<listitem><para>An optional <literal>.ucode</literal> section with an initrd containing microcode, to
|
||||
be handed to the kernel before any other initrd. This initrd must not be compressed.</para></listitem>
|
||||
|
||||
<listitem><para>An optional <literal>.fmw</literal> section with the firmware image.
|
||||
</para></listitem>
|
||||
|
||||
<listitem><para>An optional <literal>.splash</literal> section with an image (in the Windows
|
||||
<filename>.BMP</filename> format) to show on screen before invoking the kernel.</para></listitem>
|
||||
|
||||
|
|
|
@ -9,19 +9,20 @@ const char* const unified_sections[_UNIFIED_SECTION_MAX + 1] = {
|
|||
* https://learn.microsoft.com/en-us/windows/win32/debug/pe-format#section-table-section-headers
|
||||
* (Note that PE *object* files may have longer section names (via indirection in the string table) but
|
||||
* this is not allowed for PE *executables*, which UKIs are.) */
|
||||
[UNIFIED_SECTION_LINUX] = ".linux",
|
||||
[UNIFIED_SECTION_OSREL] = ".osrel",
|
||||
[UNIFIED_SECTION_CMDLINE] = ".cmdline",
|
||||
[UNIFIED_SECTION_INITRD] = ".initrd",
|
||||
[UNIFIED_SECTION_UCODE] = ".ucode",
|
||||
[UNIFIED_SECTION_SPLASH] = ".splash",
|
||||
[UNIFIED_SECTION_DTB] = ".dtb",
|
||||
[UNIFIED_SECTION_UNAME] = ".uname",
|
||||
[UNIFIED_SECTION_SBAT] = ".sbat",
|
||||
[UNIFIED_SECTION_PCRSIG] = ".pcrsig",
|
||||
[UNIFIED_SECTION_PCRPKEY] = ".pcrpkey",
|
||||
[UNIFIED_SECTION_PROFILE] = ".profile",
|
||||
[UNIFIED_SECTION_DTBAUTO] = ".dtbauto",
|
||||
[UNIFIED_SECTION_HWIDS] = ".hwids",
|
||||
[UNIFIED_SECTION_LINUX] = ".linux",
|
||||
[UNIFIED_SECTION_OSREL] = ".osrel",
|
||||
[UNIFIED_SECTION_CMDLINE] = ".cmdline",
|
||||
[UNIFIED_SECTION_INITRD] = ".initrd",
|
||||
[UNIFIED_SECTION_UCODE] = ".ucode",
|
||||
[UNIFIED_SECTION_SPLASH] = ".splash",
|
||||
[UNIFIED_SECTION_DTB] = ".dtb",
|
||||
[UNIFIED_SECTION_UNAME] = ".uname",
|
||||
[UNIFIED_SECTION_SBAT] = ".sbat",
|
||||
[UNIFIED_SECTION_PCRSIG] = ".pcrsig",
|
||||
[UNIFIED_SECTION_PCRPKEY] = ".pcrpkey",
|
||||
[UNIFIED_SECTION_PROFILE] = ".profile",
|
||||
[UNIFIED_SECTION_DTBAUTO] = ".dtbauto",
|
||||
[UNIFIED_SECTION_HWIDS] = ".hwids",
|
||||
[UNIFIED_SECTION_FIRMWARE] = ".fmw",
|
||||
NULL,
|
||||
};
|
||||
|
|
|
@ -20,6 +20,7 @@ typedef enum UnifiedSection {
|
|||
UNIFIED_SECTION_PROFILE,
|
||||
UNIFIED_SECTION_DTBAUTO,
|
||||
UNIFIED_SECTION_HWIDS,
|
||||
UNIFIED_SECTION_FIRMWARE,
|
||||
_UNIFIED_SECTION_MAX,
|
||||
} UnifiedSection;
|
||||
|
||||
|
|
|
@ -105,6 +105,7 @@ static int help(int argc, char *argv[], void *userdata) {
|
|||
" --linux=PATH Path to Linux kernel image file %7$s .linux\n"
|
||||
" --osrel=PATH Path to os-release file %7$s .osrel\n"
|
||||
" --cmdline=PATH Path to file with kernel command line %7$s .cmdline\n"
|
||||
" --firmware=PATH Path to firmware image file %7$s .fmw\n"
|
||||
" --initrd=PATH Path to initrd image file %7$s .initrd\n"
|
||||
" --ucode=PATH Path to microcode image file %7$s .ucode\n"
|
||||
" --splash=PATH Path to splash bitmap file %7$s .splash\n"
|
||||
|
@ -159,8 +160,9 @@ static int parse_argv(int argc, char *argv[]) {
|
|||
ARG_PCRPKEY,
|
||||
ARG_PROFILE,
|
||||
ARG_HWIDS,
|
||||
ARG_DTBAUTO,
|
||||
_ARG_SECTION_LAST,
|
||||
ARG_DTBAUTO = _ARG_SECTION_LAST,
|
||||
ARG_FIRMWARE = _ARG_SECTION_LAST,
|
||||
ARG_BANK,
|
||||
ARG_PRIVATE_KEY,
|
||||
ARG_PRIVATE_KEY_SOURCE,
|
||||
|
@ -181,6 +183,7 @@ static int parse_argv(int argc, char *argv[]) {
|
|||
{ "osrel", required_argument, NULL, ARG_OSREL },
|
||||
{ "cmdline", required_argument, NULL, ARG_CMDLINE },
|
||||
{ "initrd", required_argument, NULL, ARG_INITRD },
|
||||
{ "firmware", required_argument, NULL, ARG_FIRMWARE },
|
||||
{ "ucode", required_argument, NULL, ARG_UCODE },
|
||||
{ "splash", required_argument, NULL, ARG_SPLASH },
|
||||
{ "dtb", required_argument, NULL, ARG_DTB },
|
||||
|
|
|
@ -240,6 +240,7 @@ class UkifyConfig:
|
|||
devicetree: Path
|
||||
efi_arch: str
|
||||
initrd: list[Path]
|
||||
firmware: Path
|
||||
join_profiles: list[Path]
|
||||
json: Union[Literal['pretty'], Literal['short'], Literal['off']]
|
||||
linux: Optional[Path]
|
||||
|
@ -362,6 +363,7 @@ class Uname:
|
|||
DEFAULT_SECTIONS_TO_SHOW = {
|
||||
'.linux': 'binary',
|
||||
'.initrd': 'binary',
|
||||
'.fmw': 'binary',
|
||||
'.ucode': 'binary',
|
||||
'.splash': 'binary',
|
||||
'.dtb': 'binary',
|
||||
|
@ -1050,6 +1052,7 @@ def make_uki(opts: UkifyConfig) -> None:
|
|||
('.splash', opts.splash, True),
|
||||
('.pcrpkey', pcrpkey, True),
|
||||
('.initrd', initrd, True),
|
||||
('.fmw', opts.firmware, True),
|
||||
('.ucode', opts.microcode, True),
|
||||
] # fmt: skip
|
||||
|
||||
|
@ -1106,6 +1109,7 @@ def make_uki(opts: UkifyConfig) -> None:
|
|||
'.osrel',
|
||||
'.cmdline',
|
||||
'.initrd',
|
||||
'.fmw',
|
||||
'.ucode',
|
||||
'.splash',
|
||||
'.dtb',
|
||||
|
@ -1584,6 +1588,12 @@ CONFIG_ITEMS = [
|
|||
config_key='UKI/Initrd',
|
||||
config_push=ConfigItem.config_list_prepend,
|
||||
),
|
||||
ConfigItem(
|
||||
'--firmware',
|
||||
type=Path,
|
||||
help='firmware file [.fmw section]',
|
||||
config_key='UKI/Firmware',
|
||||
),
|
||||
ConfigItem(
|
||||
'--microcode',
|
||||
metavar='UCODE',
|
||||
|
|
Loading…
Reference in New Issue