mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-05-07 16:59:30 +00:00
arm-bsp/u-boot: corstone1000: update initramfs bundle size
increase the size of the initramfs bundle used in the boot command The new trusted services support increases the rootfs size. When decompressed the initramfs bundle size is around 15M. u-boot boot command needs to be updated with this size to be able to load all the initramfs bundle. When compressed the initramfs bundle size is around 5.4M (Image.gz-initramfs--5.15.59) Signed-off-by: Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com>
This commit is contained in:
committed by
Jon Mason
parent
fc26f65b1c
commit
63c7e60c1e
+10
-8
@@ -1,7 +1,7 @@
|
||||
From df70c467c5d100f1522b4521f48da4c51e43688c Mon Sep 17 00:00:00 2001
|
||||
From 26c8a8528b794dbaba49bcf3e1bae8a1e15a8448 Mon Sep 17 00:00:00 2001
|
||||
From: Jon Mason <jon.mason@arm.com>
|
||||
Date: Thu, 25 Aug 2022 13:48:22 +0000
|
||||
Subject: [PATCH 25/25] corstone1000: use a compressed kernel
|
||||
Date: Thu, 25 Aug 2022 11:21:28 +0100
|
||||
Subject: [PATCH] corstone1000: add compressed kernel support
|
||||
|
||||
The corstone1000 kernel has become too large to fit in the available
|
||||
storage. Swtiching to a compressed kernel avoids the problem, but
|
||||
@@ -9,24 +9,26 @@ requires uncompressing it. Add this decompression to the default boot
|
||||
instructions.
|
||||
|
||||
Signed-off-by: Jon Mason <jon.mason@arm.com>
|
||||
Signed-off-by: Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com>
|
||||
Upstream-Status: Pending [Not submitted to upstream yet]
|
||||
---
|
||||
include/configs/corstone1000.h | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/include/configs/corstone1000.h b/include/configs/corstone1000.h
|
||||
index d9855bf91e..d0cbc40121 100644
|
||||
index 815239590e..a8aa105fe6 100644
|
||||
--- a/include/configs/corstone1000.h
|
||||
+++ b/include/configs/corstone1000.h
|
||||
@@ -126,7 +126,8 @@
|
||||
@@ -120,7 +120,8 @@
|
||||
#define CONFIG_BOOTCOMMAND \
|
||||
"run retrieve_kernel_load_addr;" \
|
||||
"echo Loading kernel from $kernel_addr to memory ... ;" \
|
||||
- "loadm $kernel_addr $kernel_addr_r 0xc00000;" \
|
||||
+ "unzip $kernel_addr 0x90000000;" \
|
||||
+ "loadm 0x90000000 $kernel_addr_r 0xd00000;" \
|
||||
+ "unzip $kernel_addr 0x90000000;" \
|
||||
+ "loadm 0x90000000 $kernel_addr_r 0xf00000;" \
|
||||
"usb start; usb reset;" \
|
||||
"run distro_bootcmd;" \
|
||||
"bootefi $kernel_addr_r $fdtcontroladdr;"
|
||||
--
|
||||
2.30.2
|
||||
2.17.1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user