package: spidev_test: update location for >Kernel 4.5
- document indirect source code fixup affecting spidev_test v2: check against old Kernel versions Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
This commit is contained in:
parent
35782e104a
commit
4c4497ec0d
1 changed files with 9 additions and 0 deletions
|
@ -30,9 +30,18 @@ endef
|
||||||
define Build/Prepare
|
define Build/Prepare
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
# requires 214-spidev_h_portability.patch
|
||||||
|
# or linux/ioctl.h include on musl
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
|
|
||||||
|
ifneq ($(CONFIG_LINUX_3_18)$(CONFIG_LINUX_4_1)$(CONFIG_LINUX_4_4),y)
|
||||||
|
$(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/spidev_test \
|
||||||
|
$(LINUX_DIR)/tools/spi/spidev_test.c
|
||||||
|
else
|
||||||
$(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/spidev_test \
|
$(TARGET_CC) $(TARGET_CFLAGS) -o $(PKG_BUILD_DIR)/spidev_test \
|
||||||
$(LINUX_DIR)/Documentation/spi/spidev_test.c
|
$(LINUX_DIR)/Documentation/spi/spidev_test.c
|
||||||
|
endif
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/spidev-test/install
|
define Package/spidev-test/install
|
||||||
|
|
Loading…
Reference in a new issue