From owner-cvs-src@FreeBSD.ORG Wed Sep 3 16:38:39 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E3EA10684E2; Wed, 3 Sep 2008 16:38:39 +0000 (UTC) (envelope-from raj@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8BE898FC15; Wed, 3 Sep 2008 16:38:39 +0000 (UTC) (envelope-from raj@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id m83GcdFJ002324; Wed, 3 Sep 2008 16:38:39 GMT (envelope-from raj@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id m83GcdGc002323; Wed, 3 Sep 2008 16:38:39 GMT (envelope-from raj@repoman.freebsd.org) Message-Id: <200809031638.m83GcdGc002323@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to raj@repoman.freebsd.org using -f From: Rafal Jaworowski Date: Wed, 3 Sep 2008 16:38:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/powerpc/uboot start.S X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Sep 2008 16:38:39 -0000 raj 2008-09-03 16:38:27 UTC FreeBSD src repository Modified files: sys/boot/powerpc/uboot start.S Log: SVN rev 182726 on 2008-09-03 16:38:27Z by raj Use current SP instead of global data ptr for the U-Boot API signature search hint. Global data (pointed by R2 on PowerPC) in principle is not guaranteed to be in proximity of U-Boot heap (where the API signature is placed) accross different architectures and platforms. Instead, use U-Boot stack pointer as a hint for the search instead of the global data; this method tends to be more uniform accross different platforms. Obtained from: Semihalf Revision Changes Path 1.4 +1 -1 src/sys/boot/powerpc/uboot/start.S