From owner-svn-src-all@FreeBSD.ORG Sat Feb 22 03:36:46 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9417CC75; Sat, 22 Feb 2014 03:36:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7C0A011BF; Sat, 22 Feb 2014 03:36:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1M3akFA020946; Sat, 22 Feb 2014 03:36:46 GMT (envelope-from ian@svn.freebsd.org) Received: (from ian@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1M3ak1n020945; Sat, 22 Feb 2014 03:36:46 GMT (envelope-from ian@svn.freebsd.org) Message-Id: <201402220336.s1M3ak1n020945@svn.freebsd.org> From: Ian Lepore Date: Sat, 22 Feb 2014 03:36:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r262327 - head/sys/boot/fdt X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Feb 2014 03:36:46 -0000 Author: ian Date: Sat Feb 22 03:36:45 2014 New Revision: 262327 URL: http://svnweb.freebsd.org/changeset/base/262327 Log: Look for both fdtaddr and fdt_addr env var names. Grepping the u-boot source shows that board vendors seem to be about evenly split on this. This commit is a trivial change to note that while the previous change was supposed to be whitespace only, this functional change also crept in. The added lines were: /* Board vendors use both fdtaddr and fdt_addr names. Grrrr. */ if (s == NULL) s = ub_env_get("fdt_addr"); Modified: head/sys/boot/fdt/fdt_loader_cmd.c Modified: head/sys/boot/fdt/fdt_loader_cmd.c ============================================================================== --- head/sys/boot/fdt/fdt_loader_cmd.c Sat Feb 22 03:29:53 2014 (r262326) +++ head/sys/boot/fdt/fdt_loader_cmd.c Sat Feb 22 03:36:45 2014 (r262327) @@ -267,7 +267,7 @@ fdt_setup_fdtp() return fdt_load_dtb_addr(fdt_to_load); } - /* Board vendors use both fdtaddr and fdt_addr. Grrrr. */ + /* Board vendors use both fdtaddr and fdt_addr names. Grrrr. */ s = ub_env_get("fdtaddr"); if (s == NULL) s = ub_env_get("fdt_addr");