From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932504AbbFRMTS (ORCPT ); Thu, 18 Jun 2015 08:19:18 -0400 Received: from mail-pd0-f171.google.com ([209.85.192.171]:33718 "EHLO mail-pd0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932319AbbFRMSl (ORCPT ); Thu, 18 Jun 2015 08:18:41 -0400 From: Sudip Mukherjee To: David Howells , Ulf Hansson , Matthias Brugger , Johan Hovold , Greg Kroah-Hartman Cc: linux-am33-list@redhat.com, linux-kernel@vger.kernel.org, linux-mmc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, linux-usb@vger.kernel.org, Sudip Mukherjee Subject: [PATCH v2 5/7] samples: kdbus: disable for mn10300 Date: Thu, 18 Jun 2015 17:47:51 +0530 Message-Id: <1434629873-11668-6-git-send-email-sudipm.mukherjee@gmail.com> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1434629873-11668-1-git-send-email-sudipm.mukherjee@gmail.com> References: <1434629873-11668-1-git-send-email-sudipm.mukherjee@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org While building it failed with: In function 'prime_new': error: '__NR_memfd_create' undeclared (first use in this function) memfd_create syscall has not yet been implemented for mn10300. so disable compilation of samples/kdbus for now with mn10300. Signed-off-by: Sudip Mukherjee --- samples/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/Kconfig b/samples/Kconfig index a4c6b2f..20c55af 100644 --- a/samples/Kconfig +++ b/samples/Kconfig @@ -57,7 +57,7 @@ config SAMPLE_KDB config SAMPLE_KDBUS bool "Build kdbus API example" - depends on KDBUS + depends on KDBUS && !MN10300 help Build an example of how the kdbus API can be used from userspace. -- 1.8.1.2 From mboxrd@z Thu Jan 1 00:00:00 1970 From: sudipm.mukherjee@gmail.com (Sudip Mukherjee) Date: Thu, 18 Jun 2015 17:47:51 +0530 Subject: [PATCH v2 5/7] samples: kdbus: disable for mn10300 In-Reply-To: <1434629873-11668-1-git-send-email-sudipm.mukherjee@gmail.com> References: <1434629873-11668-1-git-send-email-sudipm.mukherjee@gmail.com> Message-ID: <1434629873-11668-6-git-send-email-sudipm.mukherjee@gmail.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org While building it failed with: In function 'prime_new': error: '__NR_memfd_create' undeclared (first use in this function) memfd_create syscall has not yet been implemented for mn10300. so disable compilation of samples/kdbus for now with mn10300. Signed-off-by: Sudip Mukherjee --- samples/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/Kconfig b/samples/Kconfig index a4c6b2f..20c55af 100644 --- a/samples/Kconfig +++ b/samples/Kconfig @@ -57,7 +57,7 @@ config SAMPLE_KDB config SAMPLE_KDBUS bool "Build kdbus API example" - depends on KDBUS + depends on KDBUS && !MN10300 help Build an example of how the kdbus API can be used from userspace. -- 1.8.1.2