diff options
| author | Ilias Apalodimas <[email protected]> | 2025-06-27 21:57:16 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-07-08 13:10:03 -0600 |
| commit | 5f520875bdf0ff1269e535fe215ec0ce481c7792 (patch) | |
| tree | b7eee5545ef300b867538cb7e39b9b6e36b529e4 /board/phytec | |
| parent | 22595e7430b878fdc769d7cd126828cf6a385b83 (diff) | |
kbuild: Bump the build system to 5.1
Our last sync with the kernel was 5.1. Even that was a partial one
as some patches from 4.x kernels were already missing making the
transition to a modern kbuild infeasible.
We are so out of sync now, that tracking the patches and backporting
them one by one makes little sense and it's going to take ages.
This is an attempt to sync up Makefile[.lib/.kbuild].
Unfortunately due to sheer amount of patches this is not easy to review,
but that's what we decided during a community call.
One of the biggest changes is get rid of partial linking entirely and
build .a archives isntead of .o.
We diaviate from the kernel on that. Instead of calling a custom script
to create the archive symbol table, we call ar with rcTP (isntead of
rcSTP) since we want a resulting archive that's sauble with the linker.
The only affected platforms are PPC ones. Unfortunately I don't have any
of them around to test, but the objdump of the resulting files --
arch/powerpc/lib/built-in.[oa] looks identical.
Signed-off-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'board/phytec')
| -rw-r--r-- | board/phytec/common/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/phytec/common/Makefile b/board/phytec/common/Makefile index 8126f7356e1..948f9dab626 100644 --- a/board/phytec/common/Makefile +++ b/board/phytec/common/Makefile @@ -3,8 +3,8 @@ # Author: Teresa Remmet <[email protected]> ifdef CONFIG_XPL_BUILD -# necessary to create built-in.o -obj- := __dummy__.o +# necessary to create built-in.a +obj- := __dummy__.a endif obj-y += phytec_som_detection.o phytec_som_detection_blocks.o |
