From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Hunt Subject: [PATCH v3 0/3] mk: make config enhancements Date: Wed, 7 Jun 2017 15:37:54 +0100 Message-ID: <1496846277-280267-1-git-send-email-david.hunt@intel.com> References: <1495788764-37652-2-git-send-email-david.hunt@intel.com> Cc: thomas@monjalon.net, shreyansh.jain@nxp.com To: dev@dpdk.org Return-path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 04BED2BBD for ; Wed, 7 Jun 2017 16:38:04 +0200 (CEST) In-Reply-To: <1495788764-37652-2-git-send-email-david.hunt@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch series is a couple of small patches to make the 'make config' of the build a bit easier for users. Users can now 'make defconfig' which will pick a sensible default based on some 'uname' queries of the system. Users can also set RTE_TEMPLATE in their environment which will get picked users type 'make config' without T=template. The changes are documented in docs/build-sdk-quick.txt. v2 changes: Added better handling for non-IA platforms. The list is now as follows: uname -m Output Target -------- ------------------ aarch64 arm64-armv8a-... armv7l arm-armv7a-... ppc64 ppc_64-power8-... x86_64 x86_64-native-... i686 i686-native-... v3 changes: * Changed the use of RTE_TARGET back to it's original purpose and added new environmental variable RTE_TEMPLATE. Fully backward compatible if this is not set. * Added documentation changes to build-sdk-quick.txt to describe additions. [1/3] mk: add sensible default target with defconfig [2/3] mk: allow use of environment var for template [3/3] doc: update build-sdk-quick txt file