From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f54.google.com (mail-wm0-f54.google.com [74.125.82.54]) by dpdk.org (Postfix) with ESMTP id F3E902C47 for ; Tue, 7 Jun 2016 11:34:57 +0200 (CEST) Received: by mail-wm0-f54.google.com with SMTP id k204so60495946wmk.0 for ; Tue, 07 Jun 2016 02:34:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=92D8krhTj8OqdVvOqPqK1DZM3J+XQaDQ1rIU7+efonA=; b=T9AexDXPL07tU6zfxzGz4C1tz/1HOMegu5MxvQF+e4Juna1lBVsCcIQvSnaQSaflgx dXkp/ukratBd3SrFPBeGjZ/oUW4hcFYIWcFew3cAJT6DQqXMFWhgvM8sT7HFeY5rUhnf /ZufYmgybLprokJctzA5c2+DcAPp4H4ch4ftM8wSKTKOrmOyo7mjVFZ8dHoYmOrhOIvP bc07zKIu1IxTWZU4k2JZvPxPjcpT1xT+jR5uqjws+e4TvKu9gWpwaICif7mMoq2+owst uHGIodsi/PmapDPbR4qbuZFRqoZn58Xnfsyxpj2hOn4gieDP+sDw1Vl4PdWKeTKFYwHe o6Xw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=92D8krhTj8OqdVvOqPqK1DZM3J+XQaDQ1rIU7+efonA=; b=IBJ46It3wSyiGHLuW1Z5WPj0/XKsBabTg65kvUyJtAUroVGRGQ+mJ6SbF5730PTuwp TTVw0v8qvVI/39hBG4AhGP14G+ZlD+qeYZnzRTyA9cwmma26EcMNT4tPjrWuHiRw1+je R2N3FE2gjcyopoU2qi4M6kUbMoNGUtkiiCT6U3GqhwMuvrbOk75BrRFoO7TXL+7wZV7j ByeOss4cdCxmqheK8FaN1F+HBA3AKPUSddunsp5C0q8+BaMiWQ35IjakYttUZSEtlhzP Ftsln/xKbx+fZmb+9q7KKigjnrogekDpLV/2mltWBY/0x91orbXEgNbFRxA1mj9TcgJG jEUQ== X-Gm-Message-State: ALyK8tIktIgMJU7vQVKsNKsxwNov6z+6SQYau7yzOAjTxiUOJBlv+EOtTJ+D/C6wMLTJ3YhZ X-Received: by 10.194.117.3 with SMTP id ka3mr19377234wjb.38.1465292097793; Tue, 07 Jun 2016 02:34:57 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id y6sm18472436wmy.8.2016.06.07.02.34.56 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 07 Jun 2016 02:34:57 -0700 (PDT) From: Thomas Monjalon To: Neil Horman Cc: dev@dpdk.org, Bruce Richardson , Stephen Hemminger , Panu Matilainen Date: Tue, 07 Jun 2016 11:34:56 +0200 Message-ID: <5001673.vShpV6f8hz@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1464703068-2924-1-git-send-email-nhorman@tuxdriver.com> References: <1463431287-4551-1-git-send-email-nhorman@tuxdriver.com> <1464703068-2924-1-git-send-email-nhorman@tuxdriver.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCHv6 0/7] Implement pmd hardware support exports X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Jun 2016 09:34:58 -0000 Hi Neil, You are creating a new directory buildtools/ which depends on mk/ We also have some scripts used in the build process: scripts/auto-config-h.sh scripts/depdirs-rule.sh scripts/gen-build-mk.sh scripts/gen-config-h.sh scripts/relpath.sh I think we should move these scripts somewhere else, probably in mk. So we would have only 2 directories for the build system and we would keep the scripts directory only for dev tools. If we want to make a step further, we can rename scripts/ to devtools/ and tools/ to usertools/. Opinions?