diff options
author | Marcello Sylvester Bauer <info@marcellobauer.com> | 2018-11-11 18:03:26 +0100 |
---|---|---|
committer | Philipp Deppenwiese <zaolin.daisuki@gmail.com> | 2018-11-28 18:28:45 +0000 |
commit | 78d0256f1d2bb09e4430f2bd56b58df78d54311b (patch) | |
tree | 193c5725f2d51a6dba1454ccf7861566bffce6a3 /payloads/external/LinuxBoot/arm64 | |
parent | 5d8f02f3ef624e9055cc48cd354497a583133b1d (diff) |
LinuxBoot: refactor payload
Clean and refactor the structure of the LinuxBoot payload integration,
to make it more modular and readable. The kernel and initramfs should
handled in separated makefiles.
tested with:
- qemu-i440fx (x86, x86_64)
- cavium CN8100 (arm64)
Change-Id: I41d0275a5f7efb920e881f43b0acda29f41ee221
Signed-off-by: Marcello Sylvester Bauer <info@marcellobauer.com>
Reviewed-on: https://review.coreboot.org/c/29581
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
Diffstat (limited to 'payloads/external/LinuxBoot/arm64')
-rw-r--r-- | payloads/external/LinuxBoot/arm64/kernel_fdt_lzma.its | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/payloads/external/LinuxBoot/arm64/kernel_fdt_lzma.its b/payloads/external/LinuxBoot/arm64/kernel_fdt_lzma.its index 50f6a2f4d8..26a81207b5 100644 --- a/payloads/external/LinuxBoot/arm64/kernel_fdt_lzma.its +++ b/payloads/external/LinuxBoot/arm64/kernel_fdt_lzma.its @@ -45,20 +45,20 @@ }; }; ramdisk-1 { - description = "Compressed Initramfs"; - data = /incbin/("initramfs.cpio.xz"); - type = "ramdisk"; - arch = "arm64"; - os = "linux"; - compression = "none"; - load = <00000000>; - entry = <00000000>; - hash-1 { - algo = "sha1"; - }; - hash-2 { - algo = "sha256"; - }; + description = "Compressed Initramfs"; + data = /incbin/("u-initramfs"); + type = "ramdisk"; + arch = "arm64"; + os = "linux"; + compression = "none"; + load = <00000000>; + entry = <00000000>; + hash-1 { + algo = "sha1"; + }; + hash-2 { + algo = "sha256"; + }; }; }; |