From patchwork Tue Sep 22 09:25:14 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandru Ardelean X-Patchwork-Id: 520960 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 10B11140187 for ; Tue, 22 Sep 2015 19:25:49 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=txK5tjG8; dkim-atps=neutral Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 58FA328C02B; Tue, 22 Sep 2015 11:24:14 +0200 (CEST) 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, T_DKIM_INVALID, T_SUBJ_BRKN_WORDNUMS autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id CA6FE289E92 for ; Tue, 22 Sep 2015 11:24:09 +0200 (CEST) X-policyd-weight: using cached result; rate: -8.5 Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Tue, 22 Sep 2015 11:24:07 +0200 (CEST) Received: by wicgb1 with SMTP id gb1so150638981wic.1 for ; Tue, 22 Sep 2015 02:25:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=QP2Nuo5WqOtabqlPxXyUh9jyQIG8FLGOPf9adCMdiRA=; b=txK5tjG8E+s0wTyasczOoxIftjhwKZTInPRJldXEyhK0ToPskTB7ykhcTJnXoiRxYR SFg8ARRlt9rm5A9BDsqjafD5Xqw5iNMAjVYgMxaku/AuOveodNQY9LtHpWpcnNe8kmJL h20yQwnxA+xDkG+h9P496VJewP0G9TDBhbMmCm8gelPGm+IAwMZdR9Vuu9QW2loEgvbN Fy4fUSeWi55kU5dqq0zRPmXqqN45L6SfDoKl0TRyz4F50dTsvR4zbv1qR3DhpjYEAL88 vKLrOxh8lCwM4SOFv9rmQIwPIMxrwWgjX0gjMpMxYu6CJmhKhn19NExhwQtjdLR1NUH5 0Xug== X-Received: by 10.194.250.40 with SMTP id yz8mr32842097wjc.37.1442913922202; Tue, 22 Sep 2015 02:25:22 -0700 (PDT) Received: from orion.ocedo.cluj.local ([5.2.198.78]) by smtp.gmail.com with ESMTPSA id 12sm830036wjw.15.2015.09.22.02.25.21 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 22 Sep 2015 02:25:21 -0700 (PDT) From: Alexandru Ardelean To: openwrt-devel@lists.openwrt.org Date: Tue, 22 Sep 2015 12:25:14 +0300 Message-Id: <1442913914-30638-1-git-send-email-ardeleanalex@gmail.com> X-Mailer: git-send-email 2.1.4 Cc: Alexandru Ardelean Subject: [OpenWrt-Devel] [PATCH] target/mpc85xx: add cuImage.tl-wdr4900-v1 kernel image if CONFIG_TL_WDR4900_V1=y 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: , MIME-Version: 1.0 Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" From: Alexandru Ardelean Signed-off-by: Alexandru Ardelean --- target/linux/mpc85xx/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/target/linux/mpc85xx/Makefile b/target/linux/mpc85xx/Makefile index e43327a..bfc2c8d 100644 --- a/target/linux/mpc85xx/Makefile +++ b/target/linux/mpc85xx/Makefile @@ -16,7 +16,10 @@ SUBTARGETS=generic p1020 KERNEL_PATCHVER:=3.18 -KERNEL_IMAGES := zImage cuImage.tl-wdr4900-v1 +KERNEL_IMAGES := zImage +ifeq ($(CONFIG_TL_WDR4900_V1),y) +KERNEL_IMAGES += cuImage.tl-wdr4900-v1 +endif include $(INCLUDE_DIR)/target.mk