diff mbox series

[v3,1/1] kbuild: Add a help message for "headers"

Message ID 20250312033421.2365201-1-xin@zytor.com (mailing list archive)
State New
Headers show
Series [v3,1/1] kbuild: Add a help message for "headers" | expand

Commit Message

Xin Li (Intel) March 12, 2025, 3:34 a.m. UTC
Meanwhile explicitly state that the headers are uapi headers.

Suggested-by: Borislav Petkov <bp@alien8.de>
Signed-off-by: Xin Li (Intel) <xin@zytor.com>
---

Change in v3:
* Fix a typo and write uapi in capital letters (Nicolas Schier).

Changes in v2:
* Revise the help message for "headers" (Masahiro Yamada).
* Revise the shortlog (Masahiro Yamada).
---
 Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


base-commit: 7eb172143d5508b4da468ed59ee857c6e5e01da6

Comments

Masahiro Yamada March 13, 2025, 1:08 a.m. UTC | #1
On Wed, Mar 12, 2025 at 12:35 PM Xin Li (Intel) <xin@zytor.com> wrote:
>
> Meanwhile explicitly state that the headers are uapi headers.
>
> Suggested-by: Borislav Petkov <bp@alien8.de>
> Signed-off-by: Xin Li (Intel) <xin@zytor.com>
> ---
>

Applied to linux-kbuild.
Thanks!



> Change in v3:
> * Fix a typo and write uapi in capital letters (Nicolas Schier).
>
> Changes in v2:
> * Revise the help message for "headers" (Masahiro Yamada).
> * Revise the shortlog (Masahiro Yamada).
> ---
>  Makefile | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/Makefile b/Makefile
> index 70bdbf2218fc..08918088ab35 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -1659,7 +1659,8 @@ help:
>         @echo  '  kernelrelease   - Output the release version string (use with make -s)'
>         @echo  '  kernelversion   - Output the version stored in Makefile (use with make -s)'
>         @echo  '  image_name      - Output the image name (use with make -s)'
> -       @echo  '  headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \
> +       @echo  '  headers         - Build ready-to-install UAPI headers in usr/include'
> +       @echo  '  headers_install - Install sanitised kernel UAPI headers to INSTALL_HDR_PATH'; \
>          echo  '                    (default: $(INSTALL_HDR_PATH))'; \
>          echo  ''
>         @echo  'Static analysers:'
>
> base-commit: 7eb172143d5508b4da468ed59ee857c6e5e01da6
> --
> 2.48.1
>


--
Best Regards
Masahiro Yamada
diff mbox series

Patch

diff --git a/Makefile b/Makefile
index 70bdbf2218fc..08918088ab35 100644
--- a/Makefile
+++ b/Makefile
@@ -1659,7 +1659,8 @@  help:
 	@echo  '  kernelrelease	  - Output the release version string (use with make -s)'
 	@echo  '  kernelversion	  - Output the version stored in Makefile (use with make -s)'
 	@echo  '  image_name	  - Output the image name (use with make -s)'
-	@echo  '  headers_install - Install sanitised kernel headers to INSTALL_HDR_PATH'; \
+	@echo  '  headers	  - Build ready-to-install UAPI headers in usr/include'
+	@echo  '  headers_install - Install sanitised kernel UAPI headers to INSTALL_HDR_PATH'; \
 	 echo  '                    (default: $(INSTALL_HDR_PATH))'; \
 	 echo  ''
 	@echo  'Static analysers:'