From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id CC31A456B8 for ; Fri, 26 Jul 2024 17:04:21 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9499942795; Fri, 26 Jul 2024 17:04:21 +0200 (CEST) Received: from mail-ot1-f42.google.com (mail-ot1-f42.google.com [209.85.210.42]) by mails.dpdk.org (Postfix) with ESMTP id DD07942795 for ; Fri, 26 Jul 2024 17:04:19 +0200 (CEST) Received: by mail-ot1-f42.google.com with SMTP id 46e09a7af769-7093f3a1af9so130398a34.1 for ; Fri, 26 Jul 2024 08:04:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1722006259; x=1722611059; darn=dpdk.org; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=sxz+2keDRJD5dVk+NKotrKnpSI8k9QzpeleJ36rWwrM=; b=UlVh8uJkDizJf9T08OduT26LU4U/CtmZPx94iqEvPbUSYMzuEsb/6LP4sJo/6EzGBv 1w0Kl+js398Wn5mKrx3/H7aktPhGkbGRUUWyHU/Jlyc5RMwllcKkpEthMPTlMzLIpE0/ cFZH/0zEGJtHwMKNtzjnCzaJhuUGAnN4lCc1Zh9zX8jlHxR/ekGJtxMfliGU1+6Cnx+4 t2+fTv08RdSWEK3x7kzHQnLFZ+npMz/MigSKVX6n/3boo1bTk4pNfj3pnyj/E0k7AaNm 56JaUVP88qzm9j2jzyd3vR+TOFYuyDAcGtgnK/sVbtVsFAH6/d+GsnRA5YTDXircvfVJ vAaQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1722006259; x=1722611059; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=sxz+2keDRJD5dVk+NKotrKnpSI8k9QzpeleJ36rWwrM=; b=tZrzLzuI4+dID44CN6ddf9WPc18MBmxQGjQirCkcLeLhu6uupccFCeDmYW07b0WbDP TobfZrS7JA25KMbmCkNaDuozPGqkvAHPMPrmlt/S7PAyetz5Y1EqYJctJpcQQLN8gMCI draVe9mhOStNDL4E2VGPYQWynrFkAVd65pTCc5gWSbmR6OraQAcqoAu0LynK174K8O6G r8OQKsHVElEbkQmgTtaxrbpeWHmMAjsB+1fjD64Y8YwOBeTNzWOd1uZCaOGTH3e8FYK2 jtZ65hwGZ3zcRv00UiZjv39lT/cyGPWjHxrNBCf0ywaOa4EYP9iKfeWYgUgqQ6xtYNsR A1yQ== X-Gm-Message-State: AOJu0YwmatU9j1D0ZHBcJ5+91KgfNQmZplWtPV9Z2fbHnwq+0FPstml2 nMD3IyjcB8UY5df/HCMc4+vrU8Rw9X5swYsVYd1dfrxzfYk3XydG/gOg5u3dAY1qA8ZnGzMIDG1 pCKyCqCfCqlPP2aUCJV2TsH9gE9V6o3K6 X-Google-Smtp-Source: AGHT+IEcxSgXh7KIP6do8APzgNjinKE8AHbnxQ9X+52f2YHL58Glf2ZgkIWJYcRE0jFSnqe74fbG/qKbbmvU5AtvluY= X-Received: by 2002:a05:6870:4209:b0:260:e453:5368 with SMTP id 586e51a60fabf-267d4f3b530mr68011fac.46.1722006258735; Fri, 26 Jul 2024 08:04:18 -0700 (PDT) MIME-Version: 1.0 From: David Aldrich Date: Fri, 26 Jul 2024 16:04:07 +0100 Message-ID: Subject: Unable to build igb_uio To: users Content-Type: text/plain; charset="UTF-8" X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: users-bounces@dpdk.org Hi I am using DPDK 23.11.1. I need to build and install linux kernel module igb_uio. There are instructions here: https://doc.dpdk.org/dts/gsg/usr_guide/igb_uio.html that instruct to clone the dpdk-kmods repo: # git clone http://dpdk.org/git/dpdk-kmods and they state the contents should be: # cp -r ./dpdk-kmods/linux/igb_uio /root/dpdk/kernel/linux/ # ls ./dpdk/kernel/linux/ igb_uio kni meson.build the instruction is then to modify: meson.build but I don't have meson.build. I see: $ ls /opt/intel/dpdk-stable-23.11.1/kernel/linux/ compat.h igb_uio.c Kbuild Makefile which is quite different. Are there more up-to-date instructions, or do I need to compile with make directly rather than use meson? Best regards David