From 21d28f71b20c1d58e7abb039f12d2c61aadd3f0f Mon Sep 17 00:00:00 2001 From: Kacper Date: Thu, 25 Dec 2025 22:45:19 +0100 Subject: Added more kconfig options --- bin/Kbuild | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) (limited to 'bin/Kbuild') diff --git a/bin/Kbuild b/bin/Kbuild index d33a8bbe..b06279b2 100644 --- a/bin/Kbuild +++ b/bin/Kbuild @@ -1,13 +1,11 @@ -obj-y += playground/ - -obj-y += basename/ -obj-y += clear/ -obj-y += echo/ -obj-y += false/ -obj-y += free/ -obj-y += gzip/ -obj-y += pwd/ -obj-y += sleep/ -obj-y += sync/ -obj-y += true/ -obj-y += yes/ +obj-$(CONFIG_BIN_BASENAME) += basename/ +obj-$(CONFIG_BIN_CLEAR) += clear/ +obj-$(CONFIG_BIN_ECHO) += echo/ +obj-$(CONFIG_BIN_FALSE) += false/ +obj-$(CONFIG_BIN_FREE) += free/ +obj-$(CONFIG_BIN_GZIP) += gzip/ +obj-$(CONFIG_BIN_PWD) += pwd/ +obj-$(CONFIG_BIN_SLEEP) += sleep/ +obj-$(CONFIG_BIN_SYNC) += sync/ +obj-$(CONFIG_BIN_TRUE) += true/ +obj-$(CONFIG_BIN_YES) += yes/ -- cgit v1.2.3