| #
b85b57e0 |
| 24-Dec-2021 |
Jessica Clarke <[email protected]> |
arm64: Don't rely on host readelf for u-boot booti image generation
readelf is not a bootstrap tool and so cannot be relied upon to exist. On macOS there is no system readelf, and even on Linux or F
arm64: Don't rely on host readelf for u-boot booti image generation
readelf is not a bootstrap tool and so cannot be relied upon to exist. On macOS there is no system readelf, and even on Linux or FreeBSD where it does exist, BUILD_WITH_STRICT_TMPPATH builds won't be able to use it. Instead of making it a bootstrap tool, just use nm as that suffices and already is a bootstrap tool.
Fixes: 28482babd08a ("arm64: Use new arm_kernel_boothdr script for generating booti images.") Reviewed by: emaste, mmel MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D32734
(cherry picked from commit 1846bbd1b34e0269e0edd829dcff4729b37a149b)
show more ...
|
| #
8e3cc69a |
| 09-Jul-2021 |
Michal Meloun <[email protected]> |
booti: Enable loading the kernel image to any address aligned to 2 MB
We've supported this for a long time, plus most u-boot setups quietly expect
MFC after: 2 weeks
(cherry picked from commit b07
booti: Enable loading the kernel image to any address aligned to 2 MB
We've supported this for a long time, plus most u-boot setups quietly expect
MFC after: 2 weeks
(cherry picked from commit b07a6bd15a58aa6e23761c51eba78d449cd2cbf3)
show more ...
|
| #
59f46e34 |
| 29-Dec-2020 |
Michal Meloun <[email protected]> |
sys/tools: Add a tool for generating arm and arm64 kernel images.
This tool can generate kernel images without changing the offsets in the final executable. It replaces the ELF header by properly si
sys/tools: Add a tool for generating arm and arm64 kernel images.
This tool can generate kernel images without changing the offsets in the final executable. It replaces the ELF header by properly sized zeroed block then emits a relative jump to _start(for 'v7jump' or 'v8jump' option) or the booti header (for 'v8booti' option) to the beginning of the converted file. Submited by: ian
show more ...
|