diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-04-29 12:45:19 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-05-17 18:52:01 +0900 |
commit | 87ecdf4fc9fd98f2a4156716d75c342b5bd35c74 (patch) | |
tree | 5187dd553475df4a777b68a16c349b5ab300d093 /samples/Kconfig | |
parent | 8a45fe7053a2c33b786706bdcd77d7ccf1531ef7 (diff) | |
download | linux-87ecdf4fc9fd98f2a4156716d75c342b5bd35c74.tar.gz linux-87ecdf4fc9fd98f2a4156716d75c342b5bd35c74.tar.bz2 linux-87ecdf4fc9fd98f2a4156716d75c342b5bd35c74.zip |
samples: uhid: build sample program for target architecture
This userspace program includes UAPI headers exported to usr/include/.
'make headers' always works for the target architecture (i.e. the same
architecture as the kernel), so the sample program should be built for
the target as well. Kbuild now supports 'userprogs' for that.
Add the entry to samples/Makefile to put this into the build bot
coverage.
I also added the CONFIG option guarded by 'depends on CC_CAN_LINK'
because $(CC) may not provide libc.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'samples/Kconfig')
-rw-r--r-- | samples/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/samples/Kconfig b/samples/Kconfig index 8949e9646125..2560e87c9cae 100644 --- a/samples/Kconfig +++ b/samples/Kconfig @@ -131,6 +131,12 @@ config SAMPLE_SECCOMP Build samples of seccomp filters using various methods of BPF filter construction. +config SAMPLE_UHID + bool "UHID sample" + depends on CC_CAN_LINK && HEADERS_INSTALL + help + Build UHID sample program. + config SAMPLE_VFIO_MDEV_MTTY tristate "Build VFIO mtty example mediated device sample code -- loadable modules only" depends on VFIO_MDEV_DEVICE && m |