mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-14 23:09:45 +01:00
Kernel 6.6 checks for orphan sections and prints a warning about them,
which in turn will make CI fails as we have Werror enabled there.
Issue is that cache-v7-min.S produces .init.text section which is an
orphan section since it is not being handled by the vmlinux.lds.S linker
script.
So, lets put the generated .init.text section under .text.
Fixes:
|
||
|---|---|---|
| .. | ||
| base-files | ||
| files/arch/arm/boot/compressed | ||
| generic | ||
| image | ||
| patches-5.15 | ||
| patches-6.1 | ||
| patches-6.6 | ||
| profiles | ||
| config-5.15 | ||
| config-6.1 | ||
| config-6.6 | ||
| Makefile | ||
| modules.mk | ||