Re: [GIT PULL] Kbuild updates for v5.17-rc1

From: Linus Torvalds
Date: Wed Jan 19 2022 - 04:20:30 EST


On Tue, Jan 18, 2022 at 9:43 PM Masahiro Yamada <masahiroy@xxxxxxxxxx> wrote:
>
> You will see a trivial conflict in scripts/link-vmlinux.sh
> (commit 72b3942a173c in the mainline
> vs 7d153696e5db from this PR)
> The fix is available in linux-next.

The resolution in linux-next seems to be wrong.

It missed a new case of

if [ -n "${CONFIG_SLS}" ]; then

in scripts/link-vmlinux.sh, which no longer works after commit
7d153696e5db ("kbuild: do not include include/config/auto.conf from
shell scripts").

That needed to be converted to

if is_enabled CONFIG_SLS; then

too.

I think that was the only case. Knock wood.

Linus