From patchwork Wed Sep 2 16:54:12 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Baruch Siach X-Patchwork-Id: 513580 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 145CC140293 for ; Thu, 3 Sep 2015 02:54:36 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 17E4CA481C; Wed, 2 Sep 2015 16:54:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1UMJCdqnfNXC; Wed, 2 Sep 2015 16:54:33 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 6F7F1A4805; Wed, 2 Sep 2015 16:54:31 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 792031C0B99 for ; Wed, 2 Sep 2015 16:54:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 740C391EDD for ; Wed, 2 Sep 2015 16:54:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id m6d-VQjqhT+V for ; Wed, 2 Sep 2015 16:54:26 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mx.tkos.co.il (guitar.tcltek.co.il [192.115.133.116]) by whitealder.osuosl.org (Postfix) with ESMTPS id 7E16D91EE0 for ; Wed, 2 Sep 2015 16:54:26 +0000 (UTC) Received: from tarshish.tkos.co.il (unknown [10.0.8.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mx.tkos.co.il (Postfix) with ESMTPSA id B974A4409C5; Wed, 2 Sep 2015 19:54:23 +0300 (IDT) From: Baruch Siach To: buildroot@busybox.net Date: Wed, 2 Sep 2015 19:54:12 +0300 Message-Id: <0bc73d48fdc587c9efd46e5d1c18bd1485bc1e28.1441212853.git.baruch@tkos.co.il> X-Mailer: git-send-email 2.5.0 Subject: [Buildroot] [PATCH 1/2] imx-vpu: remove kernel dependency X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" The imx-vpu package builds just fine without any special kernel header. Cc: Gary Bisson Signed-off-by: Baruch Siach Tested-by: Gary Bisson --- package/freescale-imx/imx-vpu/Config.in | 5 ----- package/freescale-imx/imx-vpu/imx-vpu.mk | 5 +---- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/package/freescale-imx/imx-vpu/Config.in b/package/freescale-imx/imx-vpu/Config.in index 8a9541607bcf..220385cec83d 100644 --- a/package/freescale-imx/imx-vpu/Config.in +++ b/package/freescale-imx/imx-vpu/Config.in @@ -1,6 +1,5 @@ config BR2_PACKAGE_IMX_VPU bool "imx-vpu" - depends on BR2_LINUX_KERNEL depends on BR2_arm # Only relevant for i.MX select BR2_PACKAGE_FIRMWARE_IMX help @@ -11,7 +10,3 @@ config BR2_PACKAGE_IMX_VPU This library is provided by Freescale as-is and doesn't have an upstream. - -comment "imx-vpu needs an imx-specific Linux kernel to be built" - depends on BR2_arm - depends on !BR2_LINUX_KERNEL diff --git a/package/freescale-imx/imx-vpu/imx-vpu.mk b/package/freescale-imx/imx-vpu/imx-vpu.mk index 4c4a0311144f..599dce85c945 100644 --- a/package/freescale-imx/imx-vpu/imx-vpu.mk +++ b/package/freescale-imx/imx-vpu/imx-vpu.mk @@ -10,14 +10,11 @@ IMX_VPU_SOURCE = imx-vpu-$(IMX_VPU_VERSION).bin IMX_VPU_INSTALL_STAGING = YES -# imx-vpu needs access to imx-specific kernel headers -IMX_VPU_DEPENDENCIES += linux IMX_VPU_MAKE_ENV = \ $(TARGET_MAKE_ENV) \ $(TARGET_CONFIGURE_OPTS) \ CROSS_COMPILE="$(CCACHE) $(TARGET_CROSS)" \ - PLATFORM=$(BR2_PACKAGE_FREESCALE_IMX_PLATFORM) \ - INCLUDE="-idirafter $(LINUX_DIR)/include" + PLATFORM=$(BR2_PACKAGE_FREESCALE_IMX_PLATFORM) IMX_VPU_LICENSE = Freescale Semiconductor Software License Agreement IMX_VPU_LICENSE_FILES = EULA vpu/EULA.txt