device/testing/starqltechn: u-boot: add bootscript to prebootscript (MR 5090)

U-boot doesn't output bootscript logs, which makes it hard to debug.

Put bootscript to prebootscript section. Preboot is executed before
boot, and u-boot displays it's logs.
This commit is contained in:
Dzmitry Sankouski 2024-05-01 22:40:11 +03:00 committed by Dzmitry
parent 53a5a7a836
commit 75c5b04652
No known key found for this signature in database
GPG key ID: 30C0D50BEF63BF54
2 changed files with 13 additions and 2 deletions

View file

@ -1,7 +1,7 @@
# Reference: <https://postmarketos.org/devicepkg>
pkgname=device-samsung-starqltechn
pkgdesc="Samsung Galaxy S9 SM-G9600"
pkgver=3
pkgver=4
pkgrel=0
url="https://postmarketos.org"
license="MIT"
@ -32,7 +32,7 @@ package() {
sha512sums="
75d405e0574c095f96fb37074968120ff429b862f6d00f4f3ccfc3a9ff3473e19d9e65879b1e6523042de9081b95fbc0c6d73b92e529feef84f7ff5f3a113624 deviceinfo
f74d2f68ab78ae1f84c2a56f6b016147d3d819b8ae816ae7300e73de95cb14082a27315941031be4ebd0d0ed455db4796b41412d81855a4cd09bb21fb2442483 boot_image.its
f45c72e77a97a8ec78da25df17682e86767672b2024ae9455a5a8db4dde95e5f9b0519361ab950b9dd77134054b2754e90ea844ceb5fccffa79d5bb51ff0c583 boot_image.its
ba782c324c14cf0947c752b51a607ae1b08def885b0cf0afe89d1fcade3491ab2f547551eb08bd8074f608dac46bdcdf75c5c633bd7a15e6eb63a10f30994c82 payload_mock.dts
1ae956562df26c458654c178efcba4862ff9a8b55d5f27bb74f1667bb2434f4bf95ec4f3ffc54d7bc84a6d075e9caadf46716dd72bc9d6b7b623ec4f25940f36 bootscript.sh
"

View file

@ -16,6 +16,17 @@
algo = "sha1";
};
};
prebootscript {
description = "Boot script";
data = /incbin/("bootscript.sh");
type = "script";
compression = "none";
load = <0x90000000>;
entry = <0x90000000>;
hash {
algo = "sha1";
};
};
kernel {
description = "Kernel";
data = /incbin/("vmlinuz");