device/testing/starqltechn: u-boot: fix FIT image (MR 5090)
- increase memory for bootm command to 0x5000000 - change initramfs and fdt loading addresses to leave more space for kernel decompression and loading
This commit is contained in:
parent
a7d0d3f85b
commit
53a5a7a836
3 changed files with 7 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
# Reference: <https://postmarketos.org/devicepkg>
|
||||
pkgname=device-samsung-starqltechn
|
||||
pkgdesc="Samsung Galaxy S9 SM-G9600"
|
||||
pkgver=2
|
||||
pkgver=3
|
||||
pkgrel=0
|
||||
url="https://postmarketos.org"
|
||||
license="MIT"
|
||||
|
@ -32,7 +32,7 @@ package() {
|
|||
|
||||
sha512sums="
|
||||
75d405e0574c095f96fb37074968120ff429b862f6d00f4f3ccfc3a9ff3473e19d9e65879b1e6523042de9081b95fbc0c6d73b92e529feef84f7ff5f3a113624 deviceinfo
|
||||
8ecd6621738b14fecfb8bb32f06fa86053649f46d6ef7e50cdc6dd44175d459a8b5f185e0b1d6168d23d6b8474ea31ae9aaf306385eb106df6489e6838b4fbe1 boot_image.its
|
||||
f74d2f68ab78ae1f84c2a56f6b016147d3d819b8ae816ae7300e73de95cb14082a27315941031be4ebd0d0ed455db4796b41412d81855a4cd09bb21fb2442483 boot_image.its
|
||||
ba782c324c14cf0947c752b51a607ae1b08def885b0cf0afe89d1fcade3491ab2f547551eb08bd8074f608dac46bdcdf75c5c633bd7a15e6eb63a10f30994c82 payload_mock.dts
|
||||
2f75b924dda1679f013362b7af284bc8026bec56c1360121e5673b359c7e789111b699829b3d7ef3c0e9b6465d652777a3475483e1bd457d873aead23a4564c4 bootscript.sh
|
||||
1ae956562df26c458654c178efcba4862ff9a8b55d5f27bb74f1667bb2434f4bf95ec4f3ffc54d7bc84a6d075e9caadf46716dd72bc9d6b7b623ec4f25940f36 bootscript.sh
|
||||
"
|
||||
|
|
|
@ -35,8 +35,8 @@
|
|||
type = "flat_dt";
|
||||
arch = "arm64";
|
||||
compression = "none";
|
||||
load = <0x81a80000>;
|
||||
entry = <0x81a80000>;
|
||||
load = <0x82700000>;
|
||||
entry = <0x82700000>;
|
||||
hash {
|
||||
algo = "sha1";
|
||||
};
|
||||
|
@ -47,7 +47,7 @@
|
|||
data = /incbin/("initramfs");
|
||||
type = "ramdisk";
|
||||
arch = "arm64";
|
||||
load = <0x81000000>;
|
||||
load = <0x82800000>;
|
||||
os = "linux";
|
||||
hash {
|
||||
algo = "sha1";
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# FIXME: Console enabled to workaround a race condition with display initialisation
|
||||
# See https://gitlab.freedesktop.org/drm/msm/-/issues/46
|
||||
setenv bootargs 'console=ttyMSM0,115200'
|
||||
setenv bootm_size 0x5000000
|
||||
|
||||
bootm $prevbl_initrd_start_addr
|
||||
|
|
Loading…
Add table
Reference in a new issue