summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-04-27 09:13:00 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-04-27 09:16:50 +0200
commit8dee4ff6368c73705f9e397d69afa3a6a8b93825 (patch)
tree643603124e455c7083a1538428826cc650dc04a2
parenta8eaa139916db0dcf51a77f3c2c6767f4473ab2f (diff)
downloadptxdist-8dee4ff6368c73705f9e397d69afa3a6a8b93825.tar.gz
ptxdist-8dee4ff6368c73705f9e397d69afa3a6a8b93825.tar.xz
usbip: use one URL and don't share stuff with the kernel
The last change had the problem, that the patches may be shared with the kernel package. This is a problem because usbip needs the autogen.sh script. So don't use kernel-url and the the variables like any other package. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/usbip.make9
1 files changed, 4 insertions, 5 deletions
diff --git a/rules/usbip.make b/rules/usbip.make
index eb5ec201a..c3879c674 100644
--- a/rules/usbip.make
+++ b/rules/usbip.make
@@ -17,14 +17,13 @@ PACKAGES-$(PTXCONF_USBIP) += usbip
# Paths and names
#
USBIP_VERSION := 5.0
-USBIP := linux-$(USBIP_VERSION)
+USBIP := usbip-$(USBIP_VERSION)
USBIP_MD5 := 7381ce8aac80a01448e065ce795c19c0
USBIP_SUFFIX := tar.xz
-USBIP_URL := $(call kernel-url, USBIP)
-USBIP_SOURCE := $(SRCDIR)/$(USBIP).$(USBIP_SUFFIX)
+USBIP_URL := https://www.kernel.org/pub/linux/kernel/v5.x/linux-$(USBIP_VERSION).$(USBIP_SUFFIX)
+USBIP_SOURCE := $(SRCDIR)/linux-$(USBIP_VERSION).$(USBIP_SUFFIX)
USBIP_SUBDIR := tools/usb/usbip
-USBIP_DIR := $(BUILDDIR)/usbip-$(USBIP_VERSION)
-USBIP_PKGDIR := $(PKGDIR)/usbip-$(USBIP_VERSION)
+USBIP_DIR := $(BUILDDIR)/$(USBIP)
USBIP_LICENSE := GPL-2.0-only
# ----------------------------------------------------------------------------