From patchwork Wed Oct 28 12:55:28 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yousong Zhou X-Patchwork-Id: 537335 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 7DF0B1402C4 for ; Wed, 28 Oct 2015 23:59:30 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=lsjzP5ZR; dkim-atps=neutral Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 50DB728BEB6; Wed, 28 Oct 2015 13:55:14 +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, T_DKIM_INVALID autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 7E75E28BB53 for ; Wed, 28 Oct 2015 13:54:16 +0100 (CET) X-policyd-weight: using cached result; rate:hard: -8.5 Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Wed, 28 Oct 2015 13:54:11 +0100 (CET) Received: by pasz6 with SMTP id z6so6785885pas.2 for ; Wed, 28 Oct 2015 05:55:53 -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:in-reply-to:references; bh=8sgMWAQ5xLOvK/pSU2y6FjzaiH7XLsLEmplfNcn+h5A=; b=lsjzP5ZRNKmipCDGPk+brPOf4syZidyjzej1eqTx0XMItgmoiFiDsGp33qirKLA5G0 tY1dnuMy8wahbicpbaW7ZVPnTozazlAA8H7DqqcErMJ5BlPnmh9zFX1O70+rGC0ZmOOf GfraRx+LycRAiZoxXGkFVZ0+ejUnUAmaEpEeNbaweqyKaOoXgJoUFYJtpnJBWCQG/DP/ l8PDc9vNADHM9PUFodMz25Tn1YLHfsvQsX/M7j6exUVby28TB3LLxOzltcWB6pMEd9GD FA6RVAllMiEQoYCmpmdaiMMcgkNChX+cdfzuRasTR4bgj09/WYzo9ISRSeWdPvk+NtH2 NUFQ== X-Received: by 10.66.154.165 with SMTP id vp5mr34251734pab.90.1446036953216; Wed, 28 Oct 2015 05:55:53 -0700 (PDT) Received: from debian.corp.sankuai.com ([103.29.140.57]) by smtp.gmail.com with ESMTPSA id u10sm45409337pbs.63.2015.10.28.05.55.51 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 28 Oct 2015 05:55:52 -0700 (PDT) From: Yousong Zhou To: florian@openwrt.org Date: Wed, 28 Oct 2015 20:55:28 +0800 Message-Id: <1446036929-19163-5-git-send-email-yszhou4tech@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1446036929-19163-1-git-send-email-yszhou4tech@gmail.com> References: <1446036929-19163-1-git-send-email-yszhou4tech@gmail.com> Cc: openwrt-devel@lists.openwrt.org Subject: [OpenWrt-Devel] [PATCH 4/5] malta: convert to router type target. 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" There is currently no relevant definition for developerboard device type in include/target.mk, thus packages like iptables, firewall, dnsmasq etc. are missing in the default images, rendering it almost useless for regular testing or normal use. Signed-off-by: Yousong Zhou --- target/linux/malta/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/malta/Makefile b/target/linux/malta/Makefile index c9f1586..0cce15e 100644 --- a/target/linux/malta/Makefile +++ b/target/linux/malta/Makefile @@ -15,7 +15,7 @@ MAINTAINER:=Florian Fainelli KERNEL_PATCHVER:=3.18 -DEVICE_TYPE:=developerboard +DEVICE_TYPE:=router include $(INCLUDE_DIR)/target.mk