Merge tag 'kbuild-fixes-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild

Pull Kbuild fixes from Masahiro Yamada:

- Fix a section mismatch warning in modpost

- Fix Debian package build error with the O= option

* tag 'kbuild-fixes-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
kbuild: deb-pkg: fix build error with O=
modpost: Add .irqentry.text to OTHER_SECTIONS

Changed files
+3 -3
scripts
+1 -1
scripts/mod/modpost.c
··· 772 772 ".ltext", ".ltext.*" 773 773 #define OTHER_TEXT_SECTIONS ".ref.text", ".head.text", ".spinlock.text", \ 774 774 ".fixup", ".entry.text", ".exception.text", \ 775 - ".coldtext", ".softirqentry.text" 775 + ".coldtext", ".softirqentry.text", ".irqentry.text" 776 776 777 777 #define ALL_TEXT_SECTIONS ".init.text", ".exit.text", \ 778 778 TEXT_SECTIONS, OTHER_TEXT_SECTIONS
+2 -2
scripts/package/install-extmod-build
··· 69 69 # 70 70 # Use the single-target build to avoid the modpost invocation, which 71 71 # would overwrite Module.symvers. 72 - "${MAKE}" HOSTCC="${CC}" KBUILD_EXTMOD="${destdir}" scripts/ 72 + "${MAKE}" HOSTCC="${CC}" KBUILD_OUTPUT=. KBUILD_EXTMOD="${destdir}" scripts/ 73 73 74 74 cat <<-'EOF' > "${destdir}/scripts/Kbuild" 75 75 subdir-y := basic ··· 78 78 EOF 79 79 80 80 # Run once again to rebuild scripts/basic/ and scripts/mod/modpost. 81 - "${MAKE}" HOSTCC="${CC}" KBUILD_EXTMOD="${destdir}" scripts/ 81 + "${MAKE}" HOSTCC="${CC}" KBUILD_OUTPUT=. KBUILD_EXTMOD="${destdir}" scripts/ 82 82 83 83 rm -f "${destdir}/Kbuild" "${destdir}/scripts/Kbuild" 84 84 fi