Blame view

buildroot/buildroot-2016.08.1/package/spidev_test/spidev_test.mk 1.39 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
  ################################################################################
  #
  # spidev_test
  #
  ################################################################################
  
  # v3.15+ requires SPI_TX_QUAD/SPI_RX_QUAD to build
  # Normally kernel headers can't be newer than kernel so switch based on that.
  # If you need quad-pumped spi support you need to upgrade your toolchain.
  ifeq ($(BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15),y)
  SPIDEV_TEST_VERSION = v3.15
  else
  SPIDEV_TEST_VERSION = v3.0
  endif
  SPIDEV_TEST_SITE = http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/plain/Documentation/spi
  SPIDEV_TEST_SOURCE = spidev_test.c?id=$(SPIDEV_TEST_VERSION)
  SPIDEV_TEST_LICENSE = GPLv2
  
  # musl libc requires linux/ioctl.h for _IOC_SIZEBITS. Do a sed patch to keep
  # compatibility with different spidev_test.c versions that we support.
  define SPIDEV_ADD_LINUX_IOCTL
  	$(SED) 's~^#include <sys/ioctl.h>~#include <sys/ioctl.h>
  #include <linux/ioctl.h>~' \
  		$(@D)/spidev_test.c
  endef
  
  SPIDEV_TEST_POST_PATCH_HOOKS += SPIDEV_ADD_LINUX_IOCTL
  
  define SPIDEV_TEST_EXTRACT_CMDS
  	cp $(BR2_DL_DIR)/$(SPIDEV_TEST_SOURCE) $(@D)/spidev_test.c
  endef
  
  define SPIDEV_TEST_BUILD_CMDS
  	$(TARGET_MAKE_ENV) $(TARGET_CC) $(TARGET_CFLAGS) \
  		-o $(@D)/spidev_test $(@D)/spidev_test.c
  endef
  
  define SPIDEV_TEST_INSTALL_TARGET_CMDS
  	$(INSTALL) -D -m 755 $(@D)/spidev_test \
  		$(TARGET_DIR)/usr/sbin/spidev_test
  endef
  
  $(eval $(generic-package))