From patchwork Wed Jun 27 18:47:55 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joe Holden X-Patchwork-Id: 935678 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=lists.openwrt.org (client-ip=2607:7c80:54:e::133; helo=bombadil.infradead.org; envelope-from=openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=corp.connectbit.io Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="FsFqCgdu"; dkim-atps=neutral Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 41GBkk4PRsz9s1B for ; Thu, 28 Jun 2018 04:48:30 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:MIME-Version:Cc:List-Subscribe: List-Help:List-Post:List-Archive:List-Unsubscribe:List-Id:Subject:Message-Id: Date:To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=BKcUjOHSqByGJdzQJKoVDK874/ubUIOY3Bu6NscFXVA=; b=FsFqCgduYqDLNa svEILG+8xQMeSljK9XBZ4ufofAswSJcu/B32MEkVgqS0U+TkNWVY54m6/pPXa0AuiNq/tznH9EGZu r44ukhBHBPpNR6HYANXBmXpDF77va+XL5ehIu3bgyzg4x5/wosSa10epdo4YTesacBY1n+p927eds zJ6uo34Bb2qY+YulTcUk9G+GKuHBQbYt7H4iRwT0hPJBBJ3Xm/Y2vh9WE3DW2EKhJxZPD308qdfAZ wAyTBCiPgOJ7fqXG+29gjGkOC/P4T28KbBXw0pKyWjxWRmjtvwKLCW8JwP8UECvbLLrvajEu1fEfA JjSw2YdWCOtd9rcIfddQ==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1fYFUR-0005ZW-JY; Wed, 27 Jun 2018 18:48:27 +0000 Received: from mail.corp.connectbit.io ([185.100.248.219]) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1fYFUI-0005Sc-5h for openwrt-devel@lists.openwrt.org; Wed, 27 Jun 2018 18:48:25 +0000 From: jwh@corp.connectbit.io To: openwrt-devel@lists.openwrt.org Date: Wed, 27 Jun 2018 19:47:55 +0100 Message-Id: <20180627184756.25465-1-jwh@corp.connectbit.io> X-Mailer: git-send-email 2.18.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20180627_114818_501449_35C10CCA X-CRM114-Status: UNSURE ( 5.30 ) X-CRM114-Notice: Please train this message. X-Spam-Score: 0.0 (/) X-Spam-Report: SpamAssassin version 3.4.1 on bombadil.infradead.org summary: Content analysis details: (0.0 points) pts rule name description ---- ---------------------- -------------------------------------------------- Subject: [OpenWrt-Devel] [PATCH 1/2] system-linux: add 2.5 and 10G interface speed definitions X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Joe Holden MIME-Version: 1.0 Sender: "openwrt-devel" Errors-To: openwrt-devel-bounces+incoming=patchwork.ozlabs.org@lists.openwrt.org From: Joe Holden --- system-linux.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system-linux.c b/system-linux.c index 0127b01..1330ea1 100644 --- a/system-linux.c +++ b/system-linux.c @@ -1688,6 +1688,8 @@ static const struct { { ADVERTISED_100baseT_Full, "100F" }, { ADVERTISED_1000baseT_Half, "1000H" }, { ADVERTISED_1000baseT_Full, "1000F" }, + { ADVERTISED_2500baseX_Full, "2500F" }, + { ADVERTISED_10000baseT_Full, "10000F" }, }; static void system_add_link_modes(struct blob_buf *b, __u32 mask)