Date: Fri, 23 Aug 2013 18:52:37 +0000 (UTC) From: Jung-uk Kim <jkim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r254733 - head/sys/boot/i386/libi386 Message-ID: <201308231852.r7NIqbY6021827@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jkim Date: Fri Aug 23 18:52:36 2013 New Revision: 254733 URL: http://svnweb.freebsd.org/changeset/base/254733 Log: Set the hint for physical address of RSDP in hexadecimal as before r223262. Modified: head/sys/boot/i386/libi386/biosacpi.c Modified: head/sys/boot/i386/libi386/biosacpi.c ============================================================================== --- head/sys/boot/i386/libi386/biosacpi.c Fri Aug 23 18:50:47 2013 (r254732) +++ head/sys/boot/i386/libi386/biosacpi.c Fri Aug 23 18:52:36 2013 (r254733) @@ -61,7 +61,7 @@ biosacpi_detect(void) return; /* export values from the RSDP */ - sprintf(buf, "%u", VTOP(rsdp)); + sprintf(buf, "0x%08x", VTOP(rsdp)); setenv("hint.acpi.0.rsdp", buf, 1); revision = rsdp->Revision; if (revision == 0)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308231852.r7NIqbY6021827>