Rename test to user

This commit is contained in:
Ciro Santilli
2017-06-12 06:59:19 +01:00
parent 025ba63a57
commit 95a1840683
8 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ KERNEL_MODULE_SITE = $(BR2_EXTERNAL_KERNEL_MODULE_PATH)
KERNEL_MODULE_SITE_METHOD = local
define KERNEL_MODULE_BUILD_CMDS
$(MAKE) -C '$(@D)/test' CC="$(TARGET_CC)" LD="$(TARGET_LD)"
$(MAKE) -C '$(@D)/user' CC="$(TARGET_CC)" LD="$(TARGET_LD)"
endef
define KERNEL_MODULE_INSTALL_TARGET_CMDS
@@ -19,7 +19,7 @@ define KERNEL_MODULE_INSTALL_TARGET_CMDS
#
# Modules can be still be easily inserted with "modprobe module" however.
$(INSTALL) -D -m 0655 $(@D)/*.ko '$(TARGET_DIR)'
$(INSTALL) -D -m 0755 $(@D)/test/*.out '$(TARGET_DIR)'
$(INSTALL) -D -m 0755 $(@D)/user/*.out '$(TARGET_DIR)'
endef
$(eval $(kernel-module))

View File

@@ -1,4 +1,4 @@
# Test
# User
Userland C programs used to test our kernel module.