From 78d0256f1d2bb09e4430f2bd56b58df78d54311b Mon Sep 17 00:00:00 2001 From: Marcello Sylvester Bauer Date: Sun, 11 Nov 2018 18:03:26 +0100 Subject: 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 Reviewed-on: https://review.coreboot.org/c/29581 Tested-by: build bot (Jenkins) Reviewed-by: Philipp Deppenwiese --- .../external/LinuxBoot/arm64/kernel_fdt_lzma.its | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'payloads/external/LinuxBoot/arm64') 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"; + }; }; }; -- cgit v1.2.3