From patchwork Mon Sep 16 16:01:24 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olof Johansson X-Patchwork-Id: 2898261 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id A1B109F1E3 for ; Mon, 16 Sep 2013 16:01:36 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 97AC6201B8 for ; Mon, 16 Sep 2013 16:01:35 +0000 (UTC) Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id D88DA201B7 for ; Mon, 16 Sep 2013 16:01:30 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1VLbEt-0008VW-8D; Mon, 16 Sep 2013 16:01:27 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1VLbEq-0001Fm-Qx; Mon, 16 Sep 2013 16:01:24 +0000 Received: from mail-pa0-f50.google.com ([209.85.220.50]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1VLbEp-0001EJ-0g for linux-arm-kernel@lists.infradead.org; Mon, 16 Sep 2013 16:01:23 +0000 Received: by mail-pa0-f50.google.com with SMTP id fb10so5499611pad.23 for ; Mon, 16 Sep 2013 09:00:57 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=OSymHvJb0HQhyPlkecPnIFXOtygSQAs7W2v3sntnjzY=; b=OgVCi3vl2bKlIEnsd8V2zqt3EJFY8Tp5fLVk8WWdBMfs9VtTIR2JRKseQRUZqhEBvj Tdy3PuB/53wgoblqwhfG58835vLrDFk/b+BhJ3TfsMJ0IRGbCXyTEz7hm6XRtCy/H8lN QJLfRr7nKn6Yvp2M+Ax1OpSBhl36+1Y/xMloZ6Guts2+8zeXhLZlojcI13HlrxyUYU79 UrAzpdfpG2jClm+B84sa9K+A/BxfwATl6Ms0DdCKa5PJmj6ezpP3udmhEMaUxQXPGoyb QHel/iaJEJ51BVzNrOpVALOxiJa8GneMGAhJxAbiYyvBPrfnV0cPSV+hG25Q/vf/JB// v51A== X-Gm-Message-State: ALoCoQk6/Itb00r4ohRKVa7oBCQMsJcrqN/R3gLDlQ2gpCQBzYt4xPTAKjh8Ky4JVLCxFwEFdT/S X-Received: by 10.68.197.73 with SMTP id is9mr29583872pbc.75.1379347257738; Mon, 16 Sep 2013 09:00:57 -0700 (PDT) Received: from brutus.lixom.net (173-13-129-225-sfba.hfc.comcastbusiness.net. [173.13.129.225]) by mx.google.com with ESMTPSA id tz3sm32086795pbc.20.1969.12.31.16.00.00 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 16 Sep 2013 09:00:56 -0700 (PDT) From: Olof Johansson To: linux-arm-kernel@lists.infradead.org Subject: [PATCH] ARM: multi_v7_defconfig: enable ARM_ATAG_DTB_COMPAT Date: Mon, 16 Sep 2013 09:01:24 -0700 Message-Id: <1379347284-12422-1-git-send-email-olof@lixom.net> X-Mailer: git-send-email 1.7.10.4 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130916_120123_154048_1FBEB543 X-CRM114-Status: UNSURE ( 9.20 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -2.6 (--) Cc: Olof Johansson , linus.walleij@linaro.org, arm@kernel.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Without this, legacy platforms that can boot with a multiplatform kernel but that need the DTB to be appended, won't have a way to pass firmware-set bootargs to the kernel. This is needed to boot multi_v7_defconfig on snowball, for instance. Signed-off-by: Olof Johansson Acked-by: Linus Walleij --- arch/arm/configs/multi_v7_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig index 6e572c6..aba4ec7 100644 --- a/arch/arm/configs/multi_v7_defconfig +++ b/arch/arm/configs/multi_v7_defconfig @@ -46,6 +46,7 @@ CONFIG_ARCH_ZYNQ=y CONFIG_SMP=y CONFIG_HIGHPTE=y CONFIG_ARM_APPENDED_DTB=y +CONFIG_ARM_ATAG_DTB_COMPAT=y CONFIG_NET=y CONFIG_UNIX=y CONFIG_INET=y