From patchwork Fri Sep 8 20:44:04 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 811819 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3xpq6W1MLdz9sBW for ; Sat, 9 Sep 2017 06:43:45 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 4E90AC21E42; Fri, 8 Sep 2017 20:43:37 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 643F7C21C46; Fri, 8 Sep 2017 20:43:35 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 6096BC21C46; Fri, 8 Sep 2017 20:43:34 +0000 (UTC) Received: from mail-yw0-f195.google.com (mail-yw0-f195.google.com [209.85.161.195]) by lists.denx.de (Postfix) with ESMTPS id D5B02C21C3C for ; Fri, 8 Sep 2017 20:43:33 +0000 (UTC) Received: by mail-yw0-f195.google.com with SMTP id s128so1862889yws.2 for ; Fri, 08 Sep 2017 13:43:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id; bh=LSt2GakGJm3b3YNmihA7pyfScQPFgcY/3W6WEa7exys=; b=cjJClP4yf8ipOeqjxS5VHQVk7Tl/WJ0WxQB6DuKtzt5ohLNmDuzID6Tv7ItzWvIIgd xTMKvZPlJGTb04t9VeW+E6bm9WQ29arufZJkrJL+U0ne9Api7RoGONY0PnOMwxnv0j+s 1A6PRKd88801plrDGIQXf+NWTA6QuPabGEvZoDnxzrL85Nom6muuElPsXJ7QLO+niabq 1dVQox3A1AJvj8JWn6PFrVYjalZYUHdvpCcr34MNTzAJUno2CkkKT2tng4AFo4yLyze4 XWYLvNRP+w/S3eG8PqpIl18ItTONDDJbdSrhoiKWOQmMr0TMeCwztoelFiLqBeMFu7Yw LQyQ== X-Gm-Message-State: AHPjjUhJnrgwuNxhStyLryC1KpzWX6b21e/gNN1YYnuZfuI5gFp8L/lB IU6IAL+gC+wrpkzh X-Google-Smtp-Source: ADKCNb5uF0ukb65w5Fc0ALXfT4h+lnkbKo1rmyNrJ5z3h6M7cYZg47aJBYivCj+HPIVkm1lylF2ZOA== X-Received: by 10.129.153.86 with SMTP id q83mr3581249ywg.92.1504903412398; Fri, 08 Sep 2017 13:43:32 -0700 (PDT) Received: from localhost.localdomain (cpe-71-77-251-1.ec.res.rr.com. [71.77.251.1]) by smtp.gmail.com with ESMTPSA id t64sm1002546ywf.91.2017.09.08.13.43.31 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 08 Sep 2017 13:43:31 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Date: Fri, 8 Sep 2017 16:44:04 -0400 Message-Id: <1504903444-6440-1-git-send-email-trini@konsulko.com> X-Mailer: git-send-email 1.9.1 Subject: [U-Boot] [PATCH] edison: Disable CONFIG_USB_HOST_ETHER X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This board does dwc3 gadget, not host, so we cannot have host support or we will fail to link. Signed-off-by: Tom Rini --- configs/edison_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/edison_defconfig b/configs/edison_defconfig index d099c0b0dcd0..d58700c204cb 100644 --- a/configs/edison_defconfig +++ b/configs/edison_defconfig @@ -36,5 +36,6 @@ CONFIG_USB_GADGET_DOWNLOAD=y CONFIG_G_DNL_MANUFACTURER="Intel" CONFIG_G_DNL_VENDOR_NUM=0x8087 CONFIG_G_DNL_PRODUCT_NUM=0x0a99 +# CONFIG_USB_HOST_ETHER is not set CONFIG_FAT_WRITE=y CONFIG_SHA1=y