From patchwork Mon Jan 4 10:26:43 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: YounJaeRho X-Patchwork-Id: 562302 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (arrakis.dune.hu [78.24.191.176]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id CA57F1402F0 for ; Mon, 4 Jan 2016 21:27:08 +1100 (AEDT) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id ED40E28BFE1; Mon, 4 Jan 2016 11:26:29 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 8B8BE28C002 for ; Mon, 4 Jan 2016 11:26:20 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 CL_IP_EQ_HELO_IP=-2 (check from: .live. - helo: .blu004-omc3s14.hotmail. - helo-domain: .hotmail.) FROM/MX_MATCHES_HELO(DOMAIN)=-2; rate: -8.5 Received: from BLU004-OMC3S14.hotmail.com (blu004-omc3s14.hotmail.com [65.55.116.89]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Mon, 4 Jan 2016 11:26:19 +0100 (CET) Received: from BLU436-SMTP55 ([65.55.116.72]) by BLU004-OMC3S14.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008); Mon, 4 Jan 2016 02:26:47 -0800 X-TMN: [1xHRCcwk1SbfMrOxeX/tSbgWaNMBd3vw] X-Originating-Email: [luxflow@live.com] Message-ID: To: Felix Fietkau , openwrt-devel@lists.openwrt.org References: <56890332.1070507@openwrt.org> <56893296.7070602@openwrt.org> <568A4265.5080406@openwrt.org> From: YounJae Rho Date: Mon, 4 Jan 2016 19:26:43 +0900 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.5.0 MIME-Version: 1.0 In-Reply-To: <568A4265.5080406@openwrt.org> X-OriginalArrivalTime: 04 Jan 2016 10:26:46.0739 (UTC) FILETIME=[6A1A7A30:01D146DA] Subject: [OpenWrt-Devel] [PATCH v5] export KERNEL_INITRAMFS_IMAGE X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" `Build/ubnt-erx-factory-kernel` in `target\linux\ramips\image\Makefile` references `$(KERNEL_INITRAMFS_IMAGE)` which is not exported Signed-off-by: YounJae Rho --- tested with git am in trunk commit 57693a7c8 include/image.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/image.mk b/include/image.mk index 5ef8002..62ea0e7 100644 --- a/include/image.mk +++ b/include/image.mk @@ -454,7 +454,7 @@ define Device/ExportVar endef define Device/Export - $(foreach var,$(DEVICE_VARS) DEVICE_NAME KERNEL KERNEL_INITRAMFS,$(call Device/ExportVar,$(1),$(var))) + $(foreach var,$(DEVICE_VARS) DEVICE_NAME KERNEL KERNEL_INITRAMFS KERNEL_INITRAMFS_IMAGE,$(call Device/ExportVar,$(1),$(var))) $(1) : FILESYSTEM:=$(2) endef