diff options
author | Benoît Ganne <bganne@cisco.com> | 2019-03-25 11:41:34 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-03-28 19:31:59 +0000 |
commit | fe750c248be58b76479836639fbd0c4617210aa5 (patch) | |
tree | 471a48243fb13e3eb84c95cf0be0b270607ae286 /build/external/packages.mk | |
parent | 6bc6fd0aebd7feb523604973bcf593bfe14bbd30 (diff) |
Add RDMA ibverb driver plugin
RDMA ibverb is a userspace API to efficiently rx/tx packets. This is an
initial, unoptimized driver targeting Mellanox cards.
Next steps should include batching, multiqueue and additional cards.
Change-Id: I0309c7a543f75f2f9317eaf63ca502ac7a093ef9
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'build/external/packages.mk')
-rw-r--r-- | build/external/packages.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/external/packages.mk b/build/external/packages.mk index 4056b2f63b5..005c2a958b2 100644 --- a/build/external/packages.mk +++ b/build/external/packages.mk @@ -31,12 +31,12 @@ $1_install_log ?= $(B)/$1.install.log downloads/$($1_tarball): mkdir -p downloads @if [ -e $(DL_CACHE_DIR)/$($1_tarball) ] ; \ - then cp $(DL_CACHE_DIR)/$($1_tarball) downloads/ ; \ + then cp $(DL_CACHE_DIR)/$($1_tarball) $$@ ; \ else \ echo "Downloading $($1_url)" ; \ - curl -o downloads/$($1_tarball) -LO $($1_url) ; \ + curl -o $$@ -LO $($1_url) ; \ fi - @rm -f $(B)/.download.ok + @rm -f $(B)/.$1.download.ok $(B)/.$1.download.ok: downloads/$($1_tarball) @mkdir -p $(B) |